OSDN Git Service

2009-11-30 Robert Dewar <dewar@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / sem_prag.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             S E M _ P R A G                              --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2009, 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 ------------------------------------------------------------------------------
25
26 --  This unit contains the semantic processing for all pragmas, both language
27 --  and implementation defined. For most pragmas, the parser only does the
28 --  most basic job of checking the syntax, so Sem_Prag also contains the code
29 --  to complete the syntax checks. Certain pragmas are handled partially or
30 --  completely by the parser (see Par.Prag for further details).
31
32 with Atree;    use Atree;
33 with Casing;   use Casing;
34 with Checks;   use Checks;
35 with Csets;    use Csets;
36 with Debug;    use Debug;
37 with Einfo;    use Einfo;
38 with Elists;   use Elists;
39 with Errout;   use Errout;
40 with Exp_Dist; use Exp_Dist;
41 with Lib;      use Lib;
42 with Lib.Writ; use Lib.Writ;
43 with Lib.Xref; use Lib.Xref;
44 with Namet.Sp; use Namet.Sp;
45 with Nlists;   use Nlists;
46 with Nmake;    use Nmake;
47 with Opt;      use Opt;
48 with Output;   use Output;
49 with Restrict; use Restrict;
50 with Rident;   use Rident;
51 with Rtsfind;  use Rtsfind;
52 with Sem;      use Sem;
53 with Sem_Aux;  use Sem_Aux;
54 with Sem_Ch3;  use Sem_Ch3;
55 with Sem_Ch6;  use Sem_Ch6;
56 with Sem_Ch8;  use Sem_Ch8;
57 with Sem_Ch12; use Sem_Ch12;
58 with Sem_Ch13; use Sem_Ch13;
59 with Sem_Dist; use Sem_Dist;
60 with Sem_Elim; use Sem_Elim;
61 with Sem_Eval; use Sem_Eval;
62 with Sem_Intr; use Sem_Intr;
63 with Sem_Mech; use Sem_Mech;
64 with Sem_Res;  use Sem_Res;
65 with Sem_Type; use Sem_Type;
66 with Sem_Util; use Sem_Util;
67 with Sem_VFpt; use Sem_VFpt;
68 with Sem_Warn; use Sem_Warn;
69 with Stand;    use Stand;
70 with Sinfo;    use Sinfo;
71 with Sinfo.CN; use Sinfo.CN;
72 with Sinput;   use Sinput;
73 with Snames;   use Snames;
74 with Stringt;  use Stringt;
75 with Stylesw;  use Stylesw;
76 with Table;
77 with Targparm; use Targparm;
78 with Tbuild;   use Tbuild;
79 with Ttypes;
80 with Uintp;    use Uintp;
81 with Uname;    use Uname;
82 with Urealp;   use Urealp;
83 with Validsw;  use Validsw;
84
85 package body Sem_Prag is
86
87    ----------------------------------------------
88    -- Common Handling of Import-Export Pragmas --
89    ----------------------------------------------
90
91    --  In the following section, a number of Import_xxx and Export_xxx
92    --  pragmas are defined by GNAT. These are compatible with the DEC
93    --  pragmas of the same name, and all have the following common
94    --  form and processing:
95
96    --  pragma Export_xxx
97    --        [Internal                 =>] LOCAL_NAME
98    --     [, [External                 =>] EXTERNAL_SYMBOL]
99    --     [, other optional parameters   ]);
100
101    --  pragma Import_xxx
102    --        [Internal                 =>] LOCAL_NAME
103    --     [, [External                 =>] EXTERNAL_SYMBOL]
104    --     [, other optional parameters   ]);
105
106    --   EXTERNAL_SYMBOL ::=
107    --     IDENTIFIER
108    --   | static_string_EXPRESSION
109
110    --  The internal LOCAL_NAME designates the entity that is imported or
111    --  exported, and must refer to an entity in the current declarative
112    --  part (as required by the rules for LOCAL_NAME).
113
114    --  The external linker name is designated by the External parameter if
115    --  given, or the Internal parameter if not (if there is no External
116    --  parameter, the External parameter is a copy of the Internal name).
117
118    --  If the External parameter is given as a string, then this string is
119    --  treated as an external name (exactly as though it had been given as an
120    --  External_Name parameter for a normal Import pragma).
121
122    --  If the External parameter is given as an identifier (or there is no
123    --  External parameter, so that the Internal identifier is used), then
124    --  the external name is the characters of the identifier, translated
125    --  to all upper case letters for OpenVMS versions of GNAT, and to all
126    --  lower case letters for all other versions
127
128    --  Note: the external name specified or implied by any of these special
129    --  Import_xxx or Export_xxx pragmas override an external or link name
130    --  specified in a previous Import or Export pragma.
131
132    --  Note: these and all other DEC-compatible GNAT pragmas allow full use of
133    --  named notation, following the standard rules for subprogram calls, i.e.
134    --  parameters can be given in any order if named notation is used, and
135    --  positional and named notation can be mixed, subject to the rule that all
136    --  positional parameters must appear first.
137
138    --  Note: All these pragmas are implemented exactly following the DEC design
139    --  and implementation and are intended to be fully compatible with the use
140    --  of these pragmas in the DEC Ada compiler.
141
142    --------------------------------------------
143    -- Checking for Duplicated External Names --
144    --------------------------------------------
145
146    --  It is suspicious if two separate Export pragmas use the same external
147    --  name. The following table is used to diagnose this situation so that
148    --  an appropriate warning can be issued.
149
150    --  The Node_Id stored is for the N_String_Literal node created to hold
151    --  the value of the external name. The Sloc of this node is used to
152    --  cross-reference the location of the duplication.
153
154    package Externals is new Table.Table (
155      Table_Component_Type => Node_Id,
156      Table_Index_Type     => Int,
157      Table_Low_Bound      => 0,
158      Table_Initial        => 100,
159      Table_Increment      => 100,
160      Table_Name           => "Name_Externals");
161
162    -------------------------------------
163    -- Local Subprograms and Variables --
164    -------------------------------------
165
166    function Adjust_External_Name_Case (N : Node_Id) return Node_Id;
167    --  This routine is used for possible casing adjustment of an explicit
168    --  external name supplied as a string literal (the node N), according to
169    --  the casing requirement of Opt.External_Name_Casing. If this is set to
170    --  As_Is, then the string literal is returned unchanged, but if it is set
171    --  to Uppercase or Lowercase, then a new string literal with appropriate
172    --  casing is constructed.
173
174    function Get_Base_Subprogram (Def_Id : Entity_Id) return Entity_Id;
175    --  If Def_Id refers to a renamed subprogram, then the base subprogram (the
176    --  original one, following the renaming chain) is returned. Otherwise the
177    --  entity is returned unchanged. Should be in Einfo???
178
179    function Get_Pragma_Arg (Arg : Node_Id) return Node_Id;
180    --  All the routines that check pragma arguments take either a pragma
181    --  argument association (in which case the expression of the argument
182    --  association is checked), or the expression directly. The function
183    --  Get_Pragma_Arg is a utility used to deal with these two cases. If Arg
184    --  is a pragma argument association node, then its expression is returned,
185    --  otherwise Arg is returned unchanged.
186
187    procedure rv;
188    --  This is a dummy function called by the processing for pragma Reviewable.
189    --  It is there for assisting front end debugging. By placing a Reviewable
190    --  pragma in the source program, a breakpoint on rv catches this place in
191    --  the source, allowing convenient stepping to the point of interest.
192
193    procedure Set_Unit_Name (N : Node_Id; With_Item : Node_Id);
194    --  Place semantic information on the argument of an Elaborate/Elaborate_All
195    --  pragma. Entity name for unit and its parents is taken from item in
196    --  previous with_clause that mentions the unit.
197
198    -------------------------------
199    -- Adjust_External_Name_Case --
200    -------------------------------
201
202    function Adjust_External_Name_Case (N : Node_Id) return Node_Id is
203       CC : Char_Code;
204
205    begin
206       --  Adjust case of literal if required
207
208       if Opt.External_Name_Exp_Casing = As_Is then
209          return N;
210
211       else
212          --  Copy existing string
213
214          Start_String;
215
216          --  Set proper casing
217
218          for J in 1 .. String_Length (Strval (N)) loop
219             CC := Get_String_Char (Strval (N), J);
220
221             if Opt.External_Name_Exp_Casing = Uppercase
222               and then CC >= Get_Char_Code ('a')
223               and then CC <= Get_Char_Code ('z')
224             then
225                Store_String_Char (CC - 32);
226
227             elsif Opt.External_Name_Exp_Casing = Lowercase
228               and then CC >= Get_Char_Code ('A')
229               and then CC <= Get_Char_Code ('Z')
230             then
231                Store_String_Char (CC + 32);
232
233             else
234                Store_String_Char (CC);
235             end if;
236          end loop;
237
238          return
239            Make_String_Literal (Sloc (N),
240              Strval => End_String);
241       end if;
242    end Adjust_External_Name_Case;
243
244    ------------------------------
245    -- Analyze_PPC_In_Decl_Part --
246    ------------------------------
247
248    procedure Analyze_PPC_In_Decl_Part (N : Node_Id; S : Entity_Id) is
249       Arg1 : constant Node_Id :=
250                First (Pragma_Argument_Associations (N));
251       Arg2 : constant Node_Id := Next (Arg1);
252
253    begin
254       --  Install formals and push subprogram spec onto scope stack so that we
255       --  can see the formals from the pragma.
256
257       Install_Formals (S);
258       Push_Scope (S);
259
260       --  Preanalyze the boolean expression, we treat this as a spec expression
261       --  (i.e. similar to a default expression).
262
263       Preanalyze_Spec_Expression
264         (Get_Pragma_Arg (Arg1), Standard_Boolean);
265
266       --  If there is a message argument, analyze it the same way
267
268       if Present (Arg2) then
269          Preanalyze_Spec_Expression
270            (Get_Pragma_Arg (Arg2), Standard_String);
271       end if;
272
273       --  Remove the subprogram from the scope stack now that the pre-analysis
274       --  of the precondition/postcondition is done.
275
276       End_Scope;
277    end Analyze_PPC_In_Decl_Part;
278
279    --------------------
280    -- Analyze_Pragma --
281    --------------------
282
283    procedure Analyze_Pragma (N : Node_Id) is
284       Loc     : constant Source_Ptr := Sloc (N);
285       Pname   : constant Name_Id    := Pragma_Name (N);
286       Prag_Id : Pragma_Id;
287
288       Pragma_Exit : exception;
289       --  This exception is used to exit pragma processing completely. It is
290       --  used when an error is detected, and no further processing is
291       --  required. It is also used if an earlier error has left the tree in
292       --  a state where the pragma should not be processed.
293
294       Arg_Count : Nat;
295       --  Number of pragma argument associations
296
297       Arg1 : Node_Id;
298       Arg2 : Node_Id;
299       Arg3 : Node_Id;
300       Arg4 : Node_Id;
301       --  First four pragma arguments (pragma argument association nodes, or
302       --  Empty if the corresponding argument does not exist).
303
304       type Name_List is array (Natural range <>) of Name_Id;
305       type Args_List is array (Natural range <>) of Node_Id;
306       --  Types used for arguments to Check_Arg_Order and Gather_Associations
307
308       procedure Ada_2005_Pragma;
309       --  Called for pragmas defined in Ada 2005, that are not in Ada 95. In
310       --  Ada 95 mode, these are implementation defined pragmas, so should be
311       --  caught by the No_Implementation_Pragmas restriction
312
313       procedure Check_Ada_83_Warning;
314       --  Issues a warning message for the current pragma if operating in Ada
315       --  83 mode (used for language pragmas that are not a standard part of
316       --  Ada 83). This procedure does not raise Error_Pragma. Also notes use
317       --  of 95 pragma.
318
319       procedure Check_Arg_Count (Required : Nat);
320       --  Check argument count for pragma is equal to given parameter. If not,
321       --  then issue an error message and raise Pragma_Exit.
322
323       --  Note: all routines whose name is Check_Arg_Is_xxx take an argument
324       --  Arg which can either be a pragma argument association, in which case
325       --  the check is applied to the expression of the association or an
326       --  expression directly.
327
328       procedure Check_Arg_Is_External_Name (Arg : Node_Id);
329       --  Check that an argument has the right form for an EXTERNAL_NAME
330       --  parameter of an extended import/export pragma. The rule is that the
331       --  name must be an identifier or string literal (in Ada 83 mode) or a
332       --  static string expression (in Ada 95 mode).
333
334       procedure Check_Arg_Is_Identifier (Arg : Node_Id);
335       --  Check the specified argument Arg to make sure that it is an
336       --  identifier. If not give error and raise Pragma_Exit.
337
338       procedure Check_Arg_Is_Integer_Literal (Arg : Node_Id);
339       --  Check the specified argument Arg to make sure that it is an integer
340       --  literal. If not give error and raise Pragma_Exit.
341
342       procedure Check_Arg_Is_Library_Level_Local_Name (Arg : Node_Id);
343       --  Check the specified argument Arg to make sure that it has the proper
344       --  syntactic form for a local name and meets the semantic requirements
345       --  for a local name. The local name is analyzed as part of the
346       --  processing for this call. In addition, the local name is required
347       --  to represent an entity at the library level.
348
349       procedure Check_Arg_Is_Local_Name (Arg : Node_Id);
350       --  Check the specified argument Arg to make sure that it has the proper
351       --  syntactic form for a local name and meets the semantic requirements
352       --  for a local name. The local name is analyzed as part of the
353       --  processing for this call.
354
355       procedure Check_Arg_Is_Locking_Policy (Arg : Node_Id);
356       --  Check the specified argument Arg to make sure that it is a valid
357       --  locking policy name. If not give error and raise Pragma_Exit.
358
359       procedure Check_Arg_Is_One_Of (Arg : Node_Id; N1, N2 : Name_Id);
360       procedure Check_Arg_Is_One_Of (Arg : Node_Id; N1, N2, N3 : Name_Id);
361       procedure Check_Arg_Is_One_Of (Arg : Node_Id; N1, N2, N3, N4 : Name_Id);
362       --  Check the specified argument Arg to make sure that it is an
363       --  identifier whose name matches either N1 or N2 (or N3 if present).
364       --  If not then give error and raise Pragma_Exit.
365
366       procedure Check_Arg_Is_Queuing_Policy (Arg : Node_Id);
367       --  Check the specified argument Arg to make sure that it is a valid
368       --  queuing policy name. If not give error and raise Pragma_Exit.
369
370       procedure Check_Arg_Is_Static_Expression
371         (Arg : Node_Id;
372          Typ : Entity_Id := Empty);
373       --  Check the specified argument Arg to make sure that it is a static
374       --  expression of the given type (i.e. it will be analyzed and resolved
375       --  using this type, which can be any valid argument to Resolve, e.g.
376       --  Any_Integer is OK). If not, given error and raise Pragma_Exit. If
377       --  Typ is left Empty, then any static expression is allowed.
378
379       procedure Check_Arg_Is_String_Literal (Arg : Node_Id);
380       --  Check the specified argument Arg to make sure that it is a string
381       --  literal. If not give error and raise Pragma_Exit
382
383       procedure Check_Arg_Is_Task_Dispatching_Policy (Arg : Node_Id);
384       --  Check the specified argument Arg to make sure that it is a valid task
385       --  dispatching policy name. If not give error and raise Pragma_Exit.
386
387       procedure Check_Arg_Order (Names : Name_List);
388       --  Checks for an instance of two arguments with identifiers for the
389       --  current pragma which are not in the sequence indicated by Names,
390       --  and if so, generates a fatal message about bad order of arguments.
391
392       procedure Check_At_Least_N_Arguments (N : Nat);
393       --  Check there are at least N arguments present
394
395       procedure Check_At_Most_N_Arguments (N : Nat);
396       --  Check there are no more than N arguments present
397
398       procedure Check_Component (Comp : Node_Id);
399       --  Examine Unchecked_Union component for correct use of per-object
400       --  constrained subtypes, and for restrictions on finalizable components.
401
402       procedure Check_Duplicated_Export_Name (Nam : Node_Id);
403       --  Nam is an N_String_Literal node containing the external name set by
404       --  an Import or Export pragma (or extended Import or Export pragma).
405       --  This procedure checks for possible duplications if this is the export
406       --  case, and if found, issues an appropriate error message.
407
408       procedure Check_First_Subtype (Arg : Node_Id);
409       --  Checks that Arg, whose expression is an entity name referencing a
410       --  subtype, does not reference a type that is not a first subtype.
411
412       procedure Check_In_Main_Program;
413       --  Common checks for pragmas that appear within a main program
414       --  (Priority, Main_Storage, Time_Slice, Relative_Deadline).
415
416       procedure Check_Interrupt_Or_Attach_Handler;
417       --  Common processing for first argument of pragma Interrupt_Handler or
418       --  pragma Attach_Handler.
419
420       procedure Check_Is_In_Decl_Part_Or_Package_Spec;
421       --  Check that pragma appears in a declarative part, or in a package
422       --  specification, i.e. that it does not occur in a statement sequence
423       --  in a body.
424
425       procedure Check_No_Identifier (Arg : Node_Id);
426       --  Checks that the given argument does not have an identifier. If
427       --  an identifier is present, then an error message is issued, and
428       --  Pragma_Exit is raised.
429
430       procedure Check_No_Identifiers;
431       --  Checks that none of the arguments to the pragma has an identifier.
432       --  If any argument has an identifier, then an error message is issued,
433       --  and Pragma_Exit is raised.
434
435       procedure Check_Optional_Identifier (Arg : Node_Id; Id : Name_Id);
436       --  Checks if the given argument has an identifier, and if so, requires
437       --  it to match the given identifier name. If there is a non-matching
438       --  identifier, then an error message is given and Error_Pragmas raised.
439
440       procedure Check_Optional_Identifier (Arg : Node_Id; Id : String);
441       --  Checks if the given argument has an identifier, and if so, requires
442       --  it to match the given identifier name. If there is a non-matching
443       --  identifier, then an error message is given and Error_Pragmas raised.
444       --  In this version of the procedure, the identifier name is given as
445       --  a string with lower case letters.
446
447       procedure Check_Precondition_Postcondition (In_Body : out Boolean);
448       --  Called to process a precondition or postcondition pragma. There are
449       --  three cases:
450       --
451       --    The pragma appears after a subprogram spec
452       --
453       --      If the corresponding check is not enabled, the pragma is analyzed
454       --      but otherwise ignored and control returns with In_Body set False.
455       --
456       --      If the check is enabled, then the first step is to analyze the
457       --      pragma, but this is skipped if the subprogram spec appears within
458       --      a package specification (because this is the case where we delay
459       --      analysis till the end of the spec). Then (whether or not it was
460       --      analyzed), the pragma is chained to the subprogram in question
461       --      (using Spec_PPC_List and Next_Pragma) and control returns to the
462       --      caller with In_Body set False.
463       --
464       --    The pragma appears at the start of subprogram body declarations
465       --
466       --      In this case an immediate return to the caller is made with
467       --      In_Body set True, and the pragma is NOT analyzed.
468       --
469       --    In all other cases, an error message for bad placement is given
470
471       procedure Check_Static_Constraint (Constr : Node_Id);
472       --  Constr is a constraint from an N_Subtype_Indication node from a
473       --  component constraint in an Unchecked_Union type. This routine checks
474       --  that the constraint is static as required by the restrictions for
475       --  Unchecked_Union.
476
477       procedure Check_Valid_Configuration_Pragma;
478       --  Legality checks for placement of a configuration pragma
479
480       procedure Check_Valid_Library_Unit_Pragma;
481       --  Legality checks for library unit pragmas. A special case arises for
482       --  pragmas in generic instances that come from copies of the original
483       --  library unit pragmas in the generic templates. In the case of other
484       --  than library level instantiations these can appear in contexts which
485       --  would normally be invalid (they only apply to the original template
486       --  and to library level instantiations), and they are simply ignored,
487       --  which is implemented by rewriting them as null statements.
488
489       procedure Check_Variant (Variant : Node_Id);
490       --  Check Unchecked_Union variant for lack of nested variants and
491       --  presence of at least one component.
492
493       procedure Error_Pragma (Msg : String);
494       pragma No_Return (Error_Pragma);
495       --  Outputs error message for current pragma. The message contains a %
496       --  that will be replaced with the pragma name, and the flag is placed
497       --  on the pragma itself. Pragma_Exit is then raised.
498
499       procedure Error_Pragma_Arg (Msg : String; Arg : Node_Id);
500       pragma No_Return (Error_Pragma_Arg);
501       --  Outputs error message for current pragma. The message may contain
502       --  a % that will be replaced with the pragma name. The parameter Arg
503       --  may either be a pragma argument association, in which case the flag
504       --  is placed on the expression of this association, or an expression,
505       --  in which case the flag is placed directly on the expression. The
506       --  message is placed using Error_Msg_N, so the message may also contain
507       --  an & insertion character which will reference the given Arg value.
508       --  After placing the message, Pragma_Exit is raised.
509
510       procedure Error_Pragma_Arg (Msg1, Msg2 : String; Arg : Node_Id);
511       pragma No_Return (Error_Pragma_Arg);
512       --  Similar to above form of Error_Pragma_Arg except that two messages
513       --  are provided, the second is a continuation comment starting with \.
514
515       procedure Error_Pragma_Arg_Ident (Msg : String; Arg : Node_Id);
516       pragma No_Return (Error_Pragma_Arg_Ident);
517       --  Outputs error message for current pragma. The message may contain
518       --  a % that will be replaced with the pragma name. The parameter Arg
519       --  must be a pragma argument association with a non-empty identifier
520       --  (i.e. its Chars field must be set), and the error message is placed
521       --  on the identifier. The message is placed using Error_Msg_N so
522       --  the message may also contain an & insertion character which will
523       --  reference the identifier. After placing the message, Pragma_Exit
524       --  is raised.
525
526       procedure Error_Pragma_Ref (Msg : String; Ref : Entity_Id);
527       pragma No_Return (Error_Pragma_Ref);
528       --  Outputs error message for current pragma. The message may contain
529       --  a % that will be replaced with the pragma name. The parameter Ref
530       --  must be an entity whose name can be referenced by & and sloc by #.
531       --  After placing the message, Pragma_Exit is raised.
532
533       function Find_Lib_Unit_Name return Entity_Id;
534       --  Used for a library unit pragma to find the entity to which the
535       --  library unit pragma applies, returns the entity found.
536
537       procedure Find_Program_Unit_Name (Id : Node_Id);
538       --  If the pragma is a compilation unit pragma, the id must denote the
539       --  compilation unit in the same compilation, and the pragma must appear
540       --  in the list of preceding or trailing pragmas. If it is a program
541       --  unit pragma that is not a compilation unit pragma, then the
542       --  identifier must be visible.
543
544       function Find_Unique_Parameterless_Procedure
545         (Name : Entity_Id;
546          Arg  : Node_Id) return Entity_Id;
547       --  Used for a procedure pragma to find the unique parameterless
548       --  procedure identified by Name, returns it if it exists, otherwise
549       --  errors out and uses Arg as the pragma argument for the message.
550
551       procedure Gather_Associations
552         (Names : Name_List;
553          Args  : out Args_List);
554       --  This procedure is used to gather the arguments for a pragma that
555       --  permits arbitrary ordering of parameters using the normal rules
556       --  for named and positional parameters. The Names argument is a list
557       --  of Name_Id values that corresponds to the allowed pragma argument
558       --  association identifiers in order. The result returned in Args is
559       --  a list of corresponding expressions that are the pragma arguments.
560       --  Note that this is a list of expressions, not of pragma argument
561       --  associations (Gather_Associations has completely checked all the
562       --  optional identifiers when it returns). An entry in Args is Empty
563       --  on return if the corresponding argument is not present.
564
565       procedure GNAT_Pragma;
566       --  Called for all GNAT defined pragmas to check the relevant restriction
567       --  (No_Implementation_Pragmas).
568
569       function Is_Before_First_Decl
570         (Pragma_Node : Node_Id;
571          Decls       : List_Id) return Boolean;
572       --  Return True if Pragma_Node is before the first declarative item in
573       --  Decls where Decls is the list of declarative items.
574
575       function Is_Configuration_Pragma return Boolean;
576       --  Determines if the placement of the current pragma is appropriate
577       --  for a configuration pragma.
578
579       function Is_In_Context_Clause return Boolean;
580       --  Returns True if pragma appears within the context clause of a unit,
581       --  and False for any other placement (does not generate any messages).
582
583       function Is_Static_String_Expression (Arg : Node_Id) return Boolean;
584       --  Analyzes the argument, and determines if it is a static string
585       --  expression, returns True if so, False if non-static or not String.
586
587       procedure Pragma_Misplaced;
588       pragma No_Return (Pragma_Misplaced);
589       --  Issue fatal error message for misplaced pragma
590
591       procedure Process_Atomic_Shared_Volatile;
592       --  Common processing for pragmas Atomic, Shared, Volatile. Note that
593       --  Shared is an obsolete Ada 83 pragma, treated as being identical
594       --  in effect to pragma Atomic.
595
596       procedure Process_Compile_Time_Warning_Or_Error;
597       --  Common processing for Compile_Time_Error and Compile_Time_Warning
598
599       procedure Process_Convention (C : out Convention_Id; E : out Entity_Id);
600       --  Common processing for Convention, Interface, Import and Export.
601       --  Checks first two arguments of pragma, and sets the appropriate
602       --  convention value in the specified entity or entities. On return
603       --  C is the convention, E is the referenced entity.
604
605       procedure Process_Extended_Import_Export_Exception_Pragma
606         (Arg_Internal : Node_Id;
607          Arg_External : Node_Id;
608          Arg_Form     : Node_Id;
609          Arg_Code     : Node_Id);
610       --  Common processing for the pragmas Import/Export_Exception. The three
611       --  arguments correspond to the three named parameters of the pragma. An
612       --  argument is empty if the corresponding parameter is not present in
613       --  the pragma.
614
615       procedure Process_Extended_Import_Export_Object_Pragma
616         (Arg_Internal : Node_Id;
617          Arg_External : Node_Id;
618          Arg_Size     : Node_Id);
619       --  Common processing for the pragmas Import/Export_Object. The three
620       --  arguments correspond to the three named parameters of the pragmas. An
621       --  argument is empty if the corresponding parameter is not present in
622       --  the pragma.
623
624       procedure Process_Extended_Import_Export_Internal_Arg
625         (Arg_Internal : Node_Id := Empty);
626       --  Common processing for all extended Import and Export pragmas. The
627       --  argument is the pragma parameter for the Internal argument. If
628       --  Arg_Internal is empty or inappropriate, an error message is posted.
629       --  Otherwise, on normal return, the Entity_Field of Arg_Internal is
630       --  set to identify the referenced entity.
631
632       procedure Process_Extended_Import_Export_Subprogram_Pragma
633         (Arg_Internal                 : Node_Id;
634          Arg_External                 : Node_Id;
635          Arg_Parameter_Types          : Node_Id;
636          Arg_Result_Type              : Node_Id := Empty;
637          Arg_Mechanism                : Node_Id;
638          Arg_Result_Mechanism         : Node_Id := Empty;
639          Arg_First_Optional_Parameter : Node_Id := Empty);
640       --  Common processing for all extended Import and Export pragmas applying
641       --  to subprograms. The caller omits any arguments that do not apply to
642       --  the pragma in question (for example, Arg_Result_Type can be non-Empty
643       --  only in the Import_Function and Export_Function cases). The argument
644       --  names correspond to the allowed pragma association identifiers.
645
646       procedure Process_Generic_List;
647       --  Common processing for Share_Generic and Inline_Generic
648
649       procedure Process_Import_Or_Interface;
650       --  Common processing for Import of Interface
651
652       procedure Process_Inline (Active : Boolean);
653       --  Common processing for Inline and Inline_Always. The parameter
654       --  indicates if the inline pragma is active, i.e. if it should actually
655       --  cause inlining to occur.
656
657       procedure Process_Interface_Name
658         (Subprogram_Def : Entity_Id;
659          Ext_Arg        : Node_Id;
660          Link_Arg       : Node_Id);
661       --  Given the last two arguments of pragma Import, pragma Export, or
662       --  pragma Interface_Name, performs validity checks and sets the
663       --  Interface_Name field of the given subprogram entity to the
664       --  appropriate external or link name, depending on the arguments given.
665       --  Ext_Arg is always present, but Link_Arg may be missing. Note that
666       --  Ext_Arg may represent the Link_Name if Link_Arg is missing, and
667       --  appropriate named notation is used for Ext_Arg. If neither Ext_Arg
668       --  nor Link_Arg is present, the interface name is set to the default
669       --  from the subprogram name.
670
671       procedure Process_Interrupt_Or_Attach_Handler;
672       --  Common processing for Interrupt and Attach_Handler pragmas
673
674       procedure Process_Restrictions_Or_Restriction_Warnings (Warn : Boolean);
675       --  Common processing for Restrictions and Restriction_Warnings pragmas.
676       --  Warn is True for Restriction_Warnings, or for Restrictions if the
677       --  flag Treat_Restrictions_As_Warnings is set, and False if this flag
678       --  is not set in the Restrictions case.
679
680       procedure Process_Suppress_Unsuppress (Suppress_Case : Boolean);
681       --  Common processing for Suppress and Unsuppress. The boolean parameter
682       --  Suppress_Case is True for the Suppress case, and False for the
683       --  Unsuppress case.
684
685       procedure Set_Exported (E : Entity_Id; Arg : Node_Id);
686       --  This procedure sets the Is_Exported flag for the given entity,
687       --  checking that the entity was not previously imported. Arg is
688       --  the argument that specified the entity. A check is also made
689       --  for exporting inappropriate entities.
690
691       procedure Set_Extended_Import_Export_External_Name
692         (Internal_Ent : Entity_Id;
693          Arg_External : Node_Id);
694       --  Common processing for all extended import export pragmas. The first
695       --  argument, Internal_Ent, is the internal entity, which has already
696       --  been checked for validity by the caller. Arg_External is from the
697       --  Import or Export pragma, and may be null if no External parameter
698       --  was present. If Arg_External is present and is a non-null string
699       --  (a null string is treated as the default), then the Interface_Name
700       --  field of Internal_Ent is set appropriately.
701
702       procedure Set_Imported (E : Entity_Id);
703       --  This procedure sets the Is_Imported flag for the given entity,
704       --  checking that it is not previously exported or imported.
705
706       procedure Set_Mechanism_Value (Ent : Entity_Id; Mech_Name : Node_Id);
707       --  Mech is a parameter passing mechanism (see Import_Function syntax
708       --  for MECHANISM_NAME). This routine checks that the mechanism argument
709       --  has the right form, and if not issues an error message. If the
710       --  argument has the right form then the Mechanism field of Ent is
711       --  set appropriately.
712
713       procedure Set_Ravenscar_Profile (N : Node_Id);
714       --  Activate the set of configuration pragmas and restrictions that make
715       --  up the Ravenscar Profile. N is the corresponding pragma node, which
716       --  is used for error messages on any constructs that violate the
717       --  profile.
718
719       ---------------------
720       -- Ada_2005_Pragma --
721       ---------------------
722
723       procedure Ada_2005_Pragma is
724       begin
725          if Ada_Version <= Ada_95 then
726             Check_Restriction (No_Implementation_Pragmas, N);
727          end if;
728       end Ada_2005_Pragma;
729
730       --------------------------
731       -- Check_Ada_83_Warning --
732       --------------------------
733
734       procedure Check_Ada_83_Warning is
735       begin
736          if Ada_Version = Ada_83 and then Comes_From_Source (N) then
737             Error_Msg_N ("(Ada 83) pragma& is non-standard?", N);
738          end if;
739       end Check_Ada_83_Warning;
740
741       ---------------------
742       -- Check_Arg_Count --
743       ---------------------
744
745       procedure Check_Arg_Count (Required : Nat) is
746       begin
747          if Arg_Count /= Required then
748             Error_Pragma ("wrong number of arguments for pragma%");
749          end if;
750       end Check_Arg_Count;
751
752       --------------------------------
753       -- Check_Arg_Is_External_Name --
754       --------------------------------
755
756       procedure Check_Arg_Is_External_Name (Arg : Node_Id) is
757          Argx : constant Node_Id := Get_Pragma_Arg (Arg);
758
759       begin
760          if Nkind (Argx) = N_Identifier then
761             return;
762
763          else
764             Analyze_And_Resolve (Argx, Standard_String);
765
766             if Is_OK_Static_Expression (Argx) then
767                return;
768
769             elsif Etype (Argx) = Any_Type then
770                raise Pragma_Exit;
771
772             --  An interesting special case, if we have a string literal and
773             --  we are in Ada 83 mode, then we allow it even though it will
774             --  not be flagged as static. This allows expected Ada 83 mode
775             --  use of external names which are string literals, even though
776             --  technically these are not static in Ada 83.
777
778             elsif Ada_Version = Ada_83
779               and then Nkind (Argx) = N_String_Literal
780             then
781                return;
782
783             --  Static expression that raises Constraint_Error. This has
784             --  already been flagged, so just exit from pragma processing.
785
786             elsif Is_Static_Expression (Argx) then
787                raise Pragma_Exit;
788
789             --  Here we have a real error (non-static expression)
790
791             else
792                Error_Msg_Name_1 := Pname;
793                Flag_Non_Static_Expr
794                  ("argument for pragma% must be a identifier or " &
795                   "static string expression!", Argx);
796                raise Pragma_Exit;
797             end if;
798          end if;
799       end Check_Arg_Is_External_Name;
800
801       -----------------------------
802       -- Check_Arg_Is_Identifier --
803       -----------------------------
804
805       procedure Check_Arg_Is_Identifier (Arg : Node_Id) is
806          Argx : constant Node_Id := Get_Pragma_Arg (Arg);
807       begin
808          if Nkind (Argx) /= N_Identifier then
809             Error_Pragma_Arg
810               ("argument for pragma% must be identifier", Argx);
811          end if;
812       end Check_Arg_Is_Identifier;
813
814       ----------------------------------
815       -- Check_Arg_Is_Integer_Literal --
816       ----------------------------------
817
818       procedure Check_Arg_Is_Integer_Literal (Arg : Node_Id) is
819          Argx : constant Node_Id := Get_Pragma_Arg (Arg);
820       begin
821          if Nkind (Argx) /= N_Integer_Literal then
822             Error_Pragma_Arg
823               ("argument for pragma% must be integer literal", Argx);
824          end if;
825       end Check_Arg_Is_Integer_Literal;
826
827       -------------------------------------------
828       -- Check_Arg_Is_Library_Level_Local_Name --
829       -------------------------------------------
830
831       --  LOCAL_NAME ::=
832       --    DIRECT_NAME
833       --  | DIRECT_NAME'ATTRIBUTE_DESIGNATOR
834       --  | library_unit_NAME
835
836       procedure Check_Arg_Is_Library_Level_Local_Name (Arg : Node_Id) is
837       begin
838          Check_Arg_Is_Local_Name (Arg);
839
840          if not Is_Library_Level_Entity (Entity (Expression (Arg)))
841            and then Comes_From_Source (N)
842          then
843             Error_Pragma_Arg
844               ("argument for pragma% must be library level entity", Arg);
845          end if;
846       end Check_Arg_Is_Library_Level_Local_Name;
847
848       -----------------------------
849       -- Check_Arg_Is_Local_Name --
850       -----------------------------
851
852       --  LOCAL_NAME ::=
853       --    DIRECT_NAME
854       --  | DIRECT_NAME'ATTRIBUTE_DESIGNATOR
855       --  | library_unit_NAME
856
857       procedure Check_Arg_Is_Local_Name (Arg : Node_Id) is
858          Argx : constant Node_Id := Get_Pragma_Arg (Arg);
859
860       begin
861          Analyze (Argx);
862
863          if Nkind (Argx) not in N_Direct_Name
864            and then (Nkind (Argx) /= N_Attribute_Reference
865                       or else Present (Expressions (Argx))
866                       or else Nkind (Prefix (Argx)) /= N_Identifier)
867            and then (not Is_Entity_Name (Argx)
868                       or else not Is_Compilation_Unit (Entity (Argx)))
869          then
870             Error_Pragma_Arg ("argument for pragma% must be local name", Argx);
871          end if;
872
873          if Is_Entity_Name (Argx)
874            and then Scope (Entity (Argx)) /= Current_Scope
875          then
876             Error_Pragma_Arg
877               ("pragma% argument must be in same declarative part", Arg);
878          end if;
879       end Check_Arg_Is_Local_Name;
880
881       ---------------------------------
882       -- Check_Arg_Is_Locking_Policy --
883       ---------------------------------
884
885       procedure Check_Arg_Is_Locking_Policy (Arg : Node_Id) is
886          Argx : constant Node_Id := Get_Pragma_Arg (Arg);
887
888       begin
889          Check_Arg_Is_Identifier (Argx);
890
891          if not Is_Locking_Policy_Name (Chars (Argx)) then
892             Error_Pragma_Arg
893               ("& is not a valid locking policy name", Argx);
894          end if;
895       end Check_Arg_Is_Locking_Policy;
896
897       -------------------------
898       -- Check_Arg_Is_One_Of --
899       -------------------------
900
901       procedure Check_Arg_Is_One_Of (Arg : Node_Id; N1, N2 : Name_Id) is
902          Argx : constant Node_Id := Get_Pragma_Arg (Arg);
903
904       begin
905          Check_Arg_Is_Identifier (Argx);
906
907          if Chars (Argx) /= N1 and then Chars (Argx) /= N2 then
908             Error_Msg_Name_2 := N1;
909             Error_Msg_Name_3 := N2;
910             Error_Pragma_Arg ("argument for pragma% must be% or%", Argx);
911          end if;
912       end Check_Arg_Is_One_Of;
913
914       procedure Check_Arg_Is_One_Of
915         (Arg        : Node_Id;
916          N1, N2, N3 : Name_Id)
917       is
918          Argx : constant Node_Id := Get_Pragma_Arg (Arg);
919
920       begin
921          Check_Arg_Is_Identifier (Argx);
922
923          if Chars (Argx) /= N1
924            and then Chars (Argx) /= N2
925            and then Chars (Argx) /= N3
926          then
927             Error_Pragma_Arg ("invalid argument for pragma%", Argx);
928          end if;
929       end Check_Arg_Is_One_Of;
930
931       procedure Check_Arg_Is_One_Of
932         (Arg            : Node_Id;
933          N1, N2, N3, N4 : Name_Id)
934       is
935          Argx : constant Node_Id := Get_Pragma_Arg (Arg);
936
937       begin
938          Check_Arg_Is_Identifier (Argx);
939
940          if Chars (Argx) /= N1
941            and then Chars (Argx) /= N2
942            and then Chars (Argx) /= N3
943            and then Chars (Argx) /= N4
944          then
945             Error_Pragma_Arg ("invalid argument for pragma%", Argx);
946          end if;
947       end Check_Arg_Is_One_Of;
948
949       ---------------------------------
950       -- Check_Arg_Is_Queuing_Policy --
951       ---------------------------------
952
953       procedure Check_Arg_Is_Queuing_Policy (Arg : Node_Id) is
954          Argx : constant Node_Id := Get_Pragma_Arg (Arg);
955
956       begin
957          Check_Arg_Is_Identifier (Argx);
958
959          if not Is_Queuing_Policy_Name (Chars (Argx)) then
960             Error_Pragma_Arg
961               ("& is not a valid queuing policy name", Argx);
962          end if;
963       end Check_Arg_Is_Queuing_Policy;
964
965       ------------------------------------
966       -- Check_Arg_Is_Static_Expression --
967       ------------------------------------
968
969       procedure Check_Arg_Is_Static_Expression
970         (Arg : Node_Id;
971          Typ : Entity_Id := Empty)
972       is
973          Argx : constant Node_Id := Get_Pragma_Arg (Arg);
974
975       begin
976          if Present (Typ) then
977             Analyze_And_Resolve (Argx, Typ);
978          else
979             Analyze_And_Resolve (Argx);
980          end if;
981
982          if Is_OK_Static_Expression (Argx) then
983             return;
984
985          elsif Etype (Argx) = Any_Type then
986             raise Pragma_Exit;
987
988          --  An interesting special case, if we have a string literal and we
989          --  are in Ada 83 mode, then we allow it even though it will not be
990          --  flagged as static. This allows the use of Ada 95 pragmas like
991          --  Import in Ada 83 mode. They will of course be flagged with
992          --  warnings as usual, but will not cause errors.
993
994          elsif Ada_Version = Ada_83
995            and then Nkind (Argx) = N_String_Literal
996          then
997             return;
998
999          --  Static expression that raises Constraint_Error. This has already
1000          --  been flagged, so just exit from pragma processing.
1001
1002          elsif Is_Static_Expression (Argx) then
1003             raise Pragma_Exit;
1004
1005          --  Finally, we have a real error
1006
1007          else
1008             Error_Msg_Name_1 := Pname;
1009             Flag_Non_Static_Expr
1010               ("argument for pragma% must be a static expression!", Argx);
1011             raise Pragma_Exit;
1012          end if;
1013       end Check_Arg_Is_Static_Expression;
1014
1015       ---------------------------------
1016       -- Check_Arg_Is_String_Literal --
1017       ---------------------------------
1018
1019       procedure Check_Arg_Is_String_Literal (Arg : Node_Id) is
1020          Argx : constant Node_Id := Get_Pragma_Arg (Arg);
1021       begin
1022          if Nkind (Argx) /= N_String_Literal then
1023             Error_Pragma_Arg
1024               ("argument for pragma% must be string literal", Argx);
1025          end if;
1026       end Check_Arg_Is_String_Literal;
1027
1028       ------------------------------------------
1029       -- Check_Arg_Is_Task_Dispatching_Policy --
1030       ------------------------------------------
1031
1032       procedure Check_Arg_Is_Task_Dispatching_Policy (Arg : Node_Id) is
1033          Argx : constant Node_Id := Get_Pragma_Arg (Arg);
1034
1035       begin
1036          Check_Arg_Is_Identifier (Argx);
1037
1038          if not Is_Task_Dispatching_Policy_Name (Chars (Argx)) then
1039             Error_Pragma_Arg
1040               ("& is not a valid task dispatching policy name", Argx);
1041          end if;
1042       end Check_Arg_Is_Task_Dispatching_Policy;
1043
1044       ---------------------
1045       -- Check_Arg_Order --
1046       ---------------------
1047
1048       procedure Check_Arg_Order (Names : Name_List) is
1049          Arg : Node_Id;
1050
1051          Highest_So_Far : Natural := 0;
1052          --  Highest index in Names seen do far
1053
1054       begin
1055          Arg := Arg1;
1056          for J in 1 .. Arg_Count loop
1057             if Chars (Arg) /= No_Name then
1058                for K in Names'Range loop
1059                   if Chars (Arg) = Names (K) then
1060                      if K < Highest_So_Far then
1061                         Error_Msg_Name_1 := Pname;
1062                         Error_Msg_N
1063                           ("parameters out of order for pragma%", Arg);
1064                         Error_Msg_Name_1 := Names (K);
1065                         Error_Msg_Name_2 := Names (Highest_So_Far);
1066                         Error_Msg_N ("\% must appear before %", Arg);
1067                         raise Pragma_Exit;
1068
1069                      else
1070                         Highest_So_Far := K;
1071                      end if;
1072                   end if;
1073                end loop;
1074             end if;
1075
1076             Arg := Next (Arg);
1077          end loop;
1078       end Check_Arg_Order;
1079
1080       --------------------------------
1081       -- Check_At_Least_N_Arguments --
1082       --------------------------------
1083
1084       procedure Check_At_Least_N_Arguments (N : Nat) is
1085       begin
1086          if Arg_Count < N then
1087             Error_Pragma ("too few arguments for pragma%");
1088          end if;
1089       end Check_At_Least_N_Arguments;
1090
1091       -------------------------------
1092       -- Check_At_Most_N_Arguments --
1093       -------------------------------
1094
1095       procedure Check_At_Most_N_Arguments (N : Nat) is
1096          Arg : Node_Id;
1097       begin
1098          if Arg_Count > N then
1099             Arg := Arg1;
1100             for J in 1 .. N loop
1101                Next (Arg);
1102                Error_Pragma_Arg ("too many arguments for pragma%", Arg);
1103             end loop;
1104          end if;
1105       end Check_At_Most_N_Arguments;
1106
1107       ---------------------
1108       -- Check_Component --
1109       ---------------------
1110
1111       procedure Check_Component (Comp : Node_Id) is
1112       begin
1113          if Nkind (Comp) = N_Component_Declaration then
1114             declare
1115                Sindic : constant Node_Id :=
1116                           Subtype_Indication (Component_Definition (Comp));
1117                Typ    : constant Entity_Id :=
1118                           Etype (Defining_Identifier (Comp));
1119             begin
1120                if Nkind (Sindic) = N_Subtype_Indication then
1121
1122                   --  Ada 2005 (AI-216): If a component subtype is subject to
1123                   --  a per-object constraint, then the component type shall
1124                   --  be an Unchecked_Union.
1125
1126                   if Has_Per_Object_Constraint (Defining_Identifier (Comp))
1127                     and then
1128                       not Is_Unchecked_Union (Etype (Subtype_Mark (Sindic)))
1129                   then
1130                      Error_Msg_N ("component subtype subject to per-object" &
1131                        " constraint must be an Unchecked_Union", Comp);
1132                   end if;
1133                end if;
1134
1135                if Is_Controlled (Typ) then
1136                   Error_Msg_N
1137                    ("component of unchecked union cannot be controlled", Comp);
1138
1139                elsif Has_Task (Typ) then
1140                   Error_Msg_N
1141                    ("component of unchecked union cannot have tasks", Comp);
1142                end if;
1143             end;
1144          end if;
1145       end Check_Component;
1146
1147       ----------------------------------
1148       -- Check_Duplicated_Export_Name --
1149       ----------------------------------
1150
1151       procedure Check_Duplicated_Export_Name (Nam : Node_Id) is
1152          String_Val : constant String_Id := Strval (Nam);
1153
1154       begin
1155          --  We are only interested in the export case, and in the case of
1156          --  generics, it is the instance, not the template, that is the
1157          --  problem (the template will generate a warning in any case).
1158
1159          if not Inside_A_Generic
1160            and then (Prag_Id = Pragma_Export
1161                        or else
1162                      Prag_Id = Pragma_Export_Procedure
1163                        or else
1164                      Prag_Id = Pragma_Export_Valued_Procedure
1165                        or else
1166                      Prag_Id = Pragma_Export_Function)
1167          then
1168             for J in Externals.First .. Externals.Last loop
1169                if String_Equal (String_Val, Strval (Externals.Table (J))) then
1170                   Error_Msg_Sloc := Sloc (Externals.Table (J));
1171                   Error_Msg_N ("external name duplicates name given#", Nam);
1172                   exit;
1173                end if;
1174             end loop;
1175
1176             Externals.Append (Nam);
1177          end if;
1178       end Check_Duplicated_Export_Name;
1179
1180       -------------------------
1181       -- Check_First_Subtype --
1182       -------------------------
1183
1184       procedure Check_First_Subtype (Arg : Node_Id) is
1185          Argx : constant Node_Id := Get_Pragma_Arg (Arg);
1186       begin
1187          if not Is_First_Subtype (Entity (Argx)) then
1188             Error_Pragma_Arg
1189               ("pragma% cannot apply to subtype", Argx);
1190          end if;
1191       end Check_First_Subtype;
1192
1193       ---------------------------
1194       -- Check_In_Main_Program --
1195       ---------------------------
1196
1197       procedure Check_In_Main_Program is
1198          P : constant Node_Id := Parent (N);
1199
1200       begin
1201          --  Must be at in subprogram body
1202
1203          if Nkind (P) /= N_Subprogram_Body then
1204             Error_Pragma ("% pragma allowed only in subprogram");
1205
1206          --  Otherwise warn if obviously not main program
1207
1208          elsif Present (Parameter_Specifications (Specification (P)))
1209            or else not Is_Compilation_Unit (Defining_Entity (P))
1210          then
1211             Error_Msg_Name_1 := Pname;
1212             Error_Msg_N
1213               ("?pragma% is only effective in main program", N);
1214          end if;
1215       end Check_In_Main_Program;
1216
1217       ---------------------------------------
1218       -- Check_Interrupt_Or_Attach_Handler --
1219       ---------------------------------------
1220
1221       procedure Check_Interrupt_Or_Attach_Handler is
1222          Arg1_X : constant Node_Id := Expression (Arg1);
1223          Handler_Proc, Proc_Scope : Entity_Id;
1224
1225       begin
1226          Analyze (Arg1_X);
1227
1228          if Prag_Id = Pragma_Interrupt_Handler then
1229             Check_Restriction (No_Dynamic_Attachment, N);
1230          end if;
1231
1232          Handler_Proc := Find_Unique_Parameterless_Procedure (Arg1_X, Arg1);
1233          Proc_Scope := Scope (Handler_Proc);
1234
1235          --  On AAMP only, a pragma Interrupt_Handler is supported for
1236          --  nonprotected parameterless procedures.
1237
1238          if not AAMP_On_Target
1239            or else Prag_Id = Pragma_Attach_Handler
1240          then
1241             if Ekind (Proc_Scope) /= E_Protected_Type then
1242                Error_Pragma_Arg
1243                  ("argument of pragma% must be protected procedure", Arg1);
1244             end if;
1245
1246             if Parent (N) /= Protected_Definition (Parent (Proc_Scope)) then
1247                Error_Pragma ("pragma% must be in protected definition");
1248             end if;
1249          end if;
1250
1251          if not Is_Library_Level_Entity (Proc_Scope)
1252            or else (AAMP_On_Target
1253                      and then not Is_Library_Level_Entity (Handler_Proc))
1254          then
1255             Error_Pragma_Arg
1256               ("argument for pragma% must be library level entity", Arg1);
1257          end if;
1258       end Check_Interrupt_Or_Attach_Handler;
1259
1260       -------------------------------------------
1261       -- Check_Is_In_Decl_Part_Or_Package_Spec --
1262       -------------------------------------------
1263
1264       procedure Check_Is_In_Decl_Part_Or_Package_Spec is
1265          P : Node_Id;
1266
1267       begin
1268          P := Parent (N);
1269          loop
1270             if No (P) then
1271                exit;
1272
1273             elsif Nkind (P) = N_Handled_Sequence_Of_Statements then
1274                exit;
1275
1276             elsif Nkind_In (P, N_Package_Specification,
1277                                N_Block_Statement)
1278             then
1279                return;
1280
1281             --  Note: the following tests seem a little peculiar, because
1282             --  they test for bodies, but if we were in the statement part
1283             --  of the body, we would already have hit the handled statement
1284             --  sequence, so the only way we get here is by being in the
1285             --  declarative part of the body.
1286
1287             elsif Nkind_In (P, N_Subprogram_Body,
1288                                N_Package_Body,
1289                                N_Task_Body,
1290                                N_Entry_Body)
1291             then
1292                return;
1293             end if;
1294
1295             P := Parent (P);
1296          end loop;
1297
1298          Error_Pragma ("pragma% is not in declarative part or package spec");
1299       end Check_Is_In_Decl_Part_Or_Package_Spec;
1300
1301       -------------------------
1302       -- Check_No_Identifier --
1303       -------------------------
1304
1305       procedure Check_No_Identifier (Arg : Node_Id) is
1306       begin
1307          if Chars (Arg) /= No_Name then
1308             Error_Pragma_Arg_Ident
1309               ("pragma% does not permit identifier& here", Arg);
1310          end if;
1311       end Check_No_Identifier;
1312
1313       --------------------------
1314       -- Check_No_Identifiers --
1315       --------------------------
1316
1317       procedure Check_No_Identifiers is
1318          Arg_Node : Node_Id;
1319       begin
1320          if Arg_Count > 0 then
1321             Arg_Node := Arg1;
1322             while Present (Arg_Node) loop
1323                Check_No_Identifier (Arg_Node);
1324                Next (Arg_Node);
1325             end loop;
1326          end if;
1327       end Check_No_Identifiers;
1328
1329       -------------------------------
1330       -- Check_Optional_Identifier --
1331       -------------------------------
1332
1333       procedure Check_Optional_Identifier (Arg : Node_Id; Id : Name_Id) is
1334       begin
1335          if Present (Arg) and then Chars (Arg) /= No_Name then
1336             if Chars (Arg) /= Id then
1337                Error_Msg_Name_1 := Pname;
1338                Error_Msg_Name_2 := Id;
1339                Error_Msg_N ("pragma% argument expects identifier%", Arg);
1340                raise Pragma_Exit;
1341             end if;
1342          end if;
1343       end Check_Optional_Identifier;
1344
1345       procedure Check_Optional_Identifier (Arg : Node_Id; Id : String) is
1346       begin
1347          Name_Buffer (1 .. Id'Length) := Id;
1348          Name_Len := Id'Length;
1349          Check_Optional_Identifier (Arg, Name_Find);
1350       end Check_Optional_Identifier;
1351
1352       --------------------------------------
1353       -- Check_Precondition_Postcondition --
1354       --------------------------------------
1355
1356       procedure Check_Precondition_Postcondition (In_Body : out Boolean) is
1357          P  : Node_Id;
1358          PO : Node_Id;
1359
1360          procedure Chain_PPC (PO : Node_Id);
1361          --  If PO is a subprogram declaration node (or a generic subprogram
1362          --  declaration node), then the precondition/postcondition applies
1363          --  to this subprogram and the processing for the pragma is completed.
1364          --  Otherwise the pragma is misplaced.
1365
1366          ---------------
1367          -- Chain_PPC --
1368          ---------------
1369
1370          procedure Chain_PPC (PO : Node_Id) is
1371             S : Node_Id;
1372
1373          begin
1374             if not Nkind_In (PO, N_Subprogram_Declaration,
1375                                  N_Generic_Subprogram_Declaration)
1376             then
1377                Pragma_Misplaced;
1378             end if;
1379
1380             --  Here if we have subprogram or generic subprogram declaration
1381
1382             S := Defining_Unit_Name (Specification (PO));
1383
1384             --  Analyze the pragma unless it appears within a package spec,
1385             --  which is the case where we delay the analysis of the PPC until
1386             --  the end of the package declarations (for details, see
1387             --  Analyze_Package_Specification.Analyze_PPCs).
1388
1389             if not Is_Package_Or_Generic_Package (Scope (S)) then
1390                Analyze_PPC_In_Decl_Part (N, S);
1391             end if;
1392
1393             --  Chain spec PPC pragma to list for subprogram
1394
1395             Set_Next_Pragma (N, Spec_PPC_List (S));
1396             Set_Spec_PPC_List (S, N);
1397
1398             --  Return indicating spec case
1399
1400             In_Body := False;
1401             return;
1402          end Chain_PPC;
1403
1404          --  Start of processing for Check_Precondition_Postcondition
1405
1406       begin
1407          if not Is_List_Member (N) then
1408             Pragma_Misplaced;
1409          end if;
1410
1411          --  Record whether pragma is enabled
1412
1413          Set_PPC_Enabled (N, Check_Enabled (Pname));
1414
1415          --  If we are within an inlined body, the legality of the pragma
1416          --  has been checked already.
1417
1418          if In_Inlined_Body then
1419             In_Body := True;
1420             return;
1421          end if;
1422
1423          --  Search prior declarations
1424
1425          P := N;
1426          while Present (Prev (P)) loop
1427             P := Prev (P);
1428
1429             --  If the previous node is a generic subprogram, do not go to to
1430             --  the original node, which is the unanalyzed tree: we need to
1431             --  attach the pre/postconditions to the analyzed version at this
1432             --  point. They get propagated to the original tree when analyzing
1433             --  the corresponding body.
1434
1435             if Nkind (P) not in N_Generic_Declaration then
1436                PO := Original_Node (P);
1437             else
1438                PO := P;
1439             end if;
1440
1441             --  Skip past prior pragma
1442
1443             if Nkind (PO) = N_Pragma then
1444                null;
1445
1446             --  Skip stuff not coming from source
1447
1448             elsif not Comes_From_Source (PO) then
1449                null;
1450
1451             --  Only remaining possibility is subprogram declaration
1452
1453             else
1454                Chain_PPC (PO);
1455                return;
1456             end if;
1457          end loop;
1458
1459          --  If we fall through loop, pragma is at start of list, so see if it
1460          --  is at the start of declarations of a subprogram body.
1461
1462          if Nkind (Parent (N)) = N_Subprogram_Body
1463            and then List_Containing (N) = Declarations (Parent (N))
1464          then
1465             if Operating_Mode /= Generate_Code
1466               or else Inside_A_Generic
1467             then
1468
1469                --  Analyze expression in pragma, for correctness
1470                --  and for ASIS use.
1471
1472                Preanalyze_Spec_Expression
1473                  (Get_Pragma_Arg (Arg1), Standard_Boolean);
1474             end if;
1475
1476             In_Body := True;
1477             return;
1478
1479          --  See if it is in the pragmas after a library level subprogram
1480
1481          elsif Nkind (Parent (N)) = N_Compilation_Unit_Aux then
1482             Chain_PPC (Unit (Parent (Parent (N))));
1483             return;
1484          end if;
1485
1486          --  If we fall through, pragma was misplaced
1487
1488          Pragma_Misplaced;
1489       end Check_Precondition_Postcondition;
1490
1491       -----------------------------
1492       -- Check_Static_Constraint --
1493       -----------------------------
1494
1495       --  Note: for convenience in writing this procedure, in addition to
1496       --  the officially (i.e. by spec) allowed argument which is always a
1497       --  constraint, it also allows ranges and discriminant associations.
1498       --  Above is not clear ???
1499
1500       procedure Check_Static_Constraint (Constr : Node_Id) is
1501
1502          procedure Require_Static (E : Node_Id);
1503          --  Require given expression to be static expression
1504
1505          --------------------
1506          -- Require_Static --
1507          --------------------
1508
1509          procedure Require_Static (E : Node_Id) is
1510          begin
1511             if not Is_OK_Static_Expression (E) then
1512                Flag_Non_Static_Expr
1513                  ("non-static constraint not allowed in Unchecked_Union!", E);
1514                raise Pragma_Exit;
1515             end if;
1516          end Require_Static;
1517
1518       --  Start of processing for Check_Static_Constraint
1519
1520       begin
1521          case Nkind (Constr) is
1522             when N_Discriminant_Association =>
1523                Require_Static (Expression (Constr));
1524
1525             when N_Range =>
1526                Require_Static (Low_Bound (Constr));
1527                Require_Static (High_Bound (Constr));
1528
1529             when N_Attribute_Reference =>
1530                Require_Static (Type_Low_Bound  (Etype (Prefix (Constr))));
1531                Require_Static (Type_High_Bound (Etype (Prefix (Constr))));
1532
1533             when N_Range_Constraint =>
1534                Check_Static_Constraint (Range_Expression (Constr));
1535
1536             when N_Index_Or_Discriminant_Constraint =>
1537                declare
1538                   IDC : Entity_Id;
1539                begin
1540                   IDC := First (Constraints (Constr));
1541                   while Present (IDC) loop
1542                      Check_Static_Constraint (IDC);
1543                      Next (IDC);
1544                   end loop;
1545                end;
1546
1547             when others =>
1548                null;
1549          end case;
1550       end Check_Static_Constraint;
1551
1552       --------------------------------------
1553       -- Check_Valid_Configuration_Pragma --
1554       --------------------------------------
1555
1556       --  A configuration pragma must appear in the context clause of a
1557       --  compilation unit, and only other pragmas may precede it. Note that
1558       --  the test also allows use in a configuration pragma file.
1559
1560       procedure Check_Valid_Configuration_Pragma is
1561       begin
1562          if not Is_Configuration_Pragma then
1563             Error_Pragma ("incorrect placement for configuration pragma%");
1564          end if;
1565       end Check_Valid_Configuration_Pragma;
1566
1567       -------------------------------------
1568       -- Check_Valid_Library_Unit_Pragma --
1569       -------------------------------------
1570
1571       procedure Check_Valid_Library_Unit_Pragma is
1572          Plist       : List_Id;
1573          Parent_Node : Node_Id;
1574          Unit_Name   : Entity_Id;
1575          Unit_Kind   : Node_Kind;
1576          Unit_Node   : Node_Id;
1577          Sindex      : Source_File_Index;
1578
1579       begin
1580          if not Is_List_Member (N) then
1581             Pragma_Misplaced;
1582
1583          else
1584             Plist := List_Containing (N);
1585             Parent_Node := Parent (Plist);
1586
1587             if Parent_Node = Empty then
1588                Pragma_Misplaced;
1589
1590             --  Case of pragma appearing after a compilation unit. In this case
1591             --  it must have an argument with the corresponding name and must
1592             --  be part of the following pragmas of its parent.
1593
1594             elsif Nkind (Parent_Node) = N_Compilation_Unit_Aux then
1595                if Plist /= Pragmas_After (Parent_Node) then
1596                   Pragma_Misplaced;
1597
1598                elsif Arg_Count = 0 then
1599                   Error_Pragma
1600                     ("argument required if outside compilation unit");
1601
1602                else
1603                   Check_No_Identifiers;
1604                   Check_Arg_Count (1);
1605                   Unit_Node := Unit (Parent (Parent_Node));
1606                   Unit_Kind := Nkind (Unit_Node);
1607
1608                   Analyze (Expression (Arg1));
1609
1610                   if Unit_Kind = N_Generic_Subprogram_Declaration
1611                     or else Unit_Kind = N_Subprogram_Declaration
1612                   then
1613                      Unit_Name := Defining_Entity (Unit_Node);
1614
1615                   elsif Unit_Kind in N_Generic_Instantiation then
1616                      Unit_Name := Defining_Entity (Unit_Node);
1617
1618                   else
1619                      Unit_Name := Cunit_Entity (Current_Sem_Unit);
1620                   end if;
1621
1622                   if Chars (Unit_Name) /=
1623                      Chars (Entity (Expression (Arg1)))
1624                   then
1625                      Error_Pragma_Arg
1626                        ("pragma% argument is not current unit name", Arg1);
1627                   end if;
1628
1629                   if Ekind (Unit_Name) = E_Package
1630                     and then Present (Renamed_Entity (Unit_Name))
1631                   then
1632                      Error_Pragma ("pragma% not allowed for renamed package");
1633                   end if;
1634                end if;
1635
1636             --  Pragma appears other than after a compilation unit
1637
1638             else
1639                --  Here we check for the generic instantiation case and also
1640                --  for the case of processing a generic formal package. We
1641                --  detect these cases by noting that the Sloc on the node
1642                --  does not belong to the current compilation unit.
1643
1644                Sindex := Source_Index (Current_Sem_Unit);
1645
1646                if Loc not in Source_First (Sindex) .. Source_Last (Sindex) then
1647                   Rewrite (N, Make_Null_Statement (Loc));
1648                   return;
1649
1650                --  If before first declaration, the pragma applies to the
1651                --  enclosing unit, and the name if present must be this name.
1652
1653                elsif Is_Before_First_Decl (N, Plist) then
1654                   Unit_Node := Unit_Declaration_Node (Current_Scope);
1655                   Unit_Kind := Nkind (Unit_Node);
1656
1657                   if Nkind (Parent (Unit_Node)) /= N_Compilation_Unit then
1658                      Pragma_Misplaced;
1659
1660                   elsif Unit_Kind = N_Subprogram_Body
1661                     and then not Acts_As_Spec (Unit_Node)
1662                   then
1663                      Pragma_Misplaced;
1664
1665                   elsif Nkind (Parent_Node) = N_Package_Body then
1666                      Pragma_Misplaced;
1667
1668                   elsif Nkind (Parent_Node) = N_Package_Specification
1669                     and then Plist = Private_Declarations (Parent_Node)
1670                   then
1671                      Pragma_Misplaced;
1672
1673                   elsif (Nkind (Parent_Node) = N_Generic_Package_Declaration
1674                            or else Nkind (Parent_Node) =
1675                                              N_Generic_Subprogram_Declaration)
1676                     and then Plist = Generic_Formal_Declarations (Parent_Node)
1677                   then
1678                      Pragma_Misplaced;
1679
1680                   elsif Arg_Count > 0 then
1681                      Analyze (Expression (Arg1));
1682
1683                      if Entity (Expression (Arg1)) /= Current_Scope then
1684                         Error_Pragma_Arg
1685                           ("name in pragma% must be enclosing unit", Arg1);
1686                      end if;
1687
1688                   --  It is legal to have no argument in this context
1689
1690                   else
1691                      return;
1692                   end if;
1693
1694                --  Error if not before first declaration. This is because a
1695                --  library unit pragma argument must be the name of a library
1696                --  unit (RM 10.1.5(7)), but the only names permitted in this
1697                --  context are (RM 10.1.5(6)) names of subprogram declarations,
1698                --  generic subprogram declarations or generic instantiations.
1699
1700                else
1701                   Error_Pragma
1702                     ("pragma% misplaced, must be before first declaration");
1703                end if;
1704             end if;
1705          end if;
1706       end Check_Valid_Library_Unit_Pragma;
1707
1708       -------------------
1709       -- Check_Variant --
1710       -------------------
1711
1712       procedure Check_Variant (Variant : Node_Id) is
1713          Clist : constant Node_Id := Component_List (Variant);
1714          Comp  : Node_Id;
1715
1716       begin
1717          if not Is_Non_Empty_List (Component_Items (Clist)) then
1718             Error_Msg_N
1719               ("Unchecked_Union may not have empty component list",
1720                Variant);
1721             return;
1722          end if;
1723
1724          Comp := First (Component_Items (Clist));
1725          while Present (Comp) loop
1726             Check_Component (Comp);
1727             Next (Comp);
1728          end loop;
1729       end Check_Variant;
1730
1731       ------------------
1732       -- Error_Pragma --
1733       ------------------
1734
1735       procedure Error_Pragma (Msg : String) is
1736       begin
1737          Error_Msg_Name_1 := Pname;
1738          Error_Msg_N (Msg, N);
1739          raise Pragma_Exit;
1740       end Error_Pragma;
1741
1742       ----------------------
1743       -- Error_Pragma_Arg --
1744       ----------------------
1745
1746       procedure Error_Pragma_Arg (Msg : String; Arg : Node_Id) is
1747       begin
1748          Error_Msg_Name_1 := Pname;
1749          Error_Msg_N (Msg, Get_Pragma_Arg (Arg));
1750          raise Pragma_Exit;
1751       end Error_Pragma_Arg;
1752
1753       procedure Error_Pragma_Arg (Msg1, Msg2 : String; Arg : Node_Id) is
1754       begin
1755          Error_Msg_Name_1 := Pname;
1756          Error_Msg_N (Msg1, Get_Pragma_Arg (Arg));
1757          Error_Pragma_Arg (Msg2, Arg);
1758       end Error_Pragma_Arg;
1759
1760       ----------------------------
1761       -- Error_Pragma_Arg_Ident --
1762       ----------------------------
1763
1764       procedure Error_Pragma_Arg_Ident (Msg : String; Arg : Node_Id) is
1765       begin
1766          Error_Msg_Name_1 := Pname;
1767          Error_Msg_N (Msg, Arg);
1768          raise Pragma_Exit;
1769       end Error_Pragma_Arg_Ident;
1770
1771       ----------------------
1772       -- Error_Pragma_Ref --
1773       ----------------------
1774
1775       procedure Error_Pragma_Ref (Msg : String; Ref : Entity_Id) is
1776       begin
1777          Error_Msg_Name_1 := Pname;
1778          Error_Msg_Sloc   := Sloc (Ref);
1779          Error_Msg_NE (Msg, N, Ref);
1780          raise Pragma_Exit;
1781       end Error_Pragma_Ref;
1782
1783       ------------------------
1784       -- Find_Lib_Unit_Name --
1785       ------------------------
1786
1787       function Find_Lib_Unit_Name return Entity_Id is
1788       begin
1789          --  Return inner compilation unit entity, for case of nested
1790          --  categorization pragmas. This happens in generic unit.
1791
1792          if Nkind (Parent (N)) = N_Package_Specification
1793            and then Defining_Entity (Parent (N)) /= Current_Scope
1794          then
1795             return Defining_Entity (Parent (N));
1796          else
1797             return Current_Scope;
1798          end if;
1799       end Find_Lib_Unit_Name;
1800
1801       ----------------------------
1802       -- Find_Program_Unit_Name --
1803       ----------------------------
1804
1805       procedure Find_Program_Unit_Name (Id : Node_Id) is
1806          Unit_Name : Entity_Id;
1807          Unit_Kind : Node_Kind;
1808          P         : constant Node_Id := Parent (N);
1809
1810       begin
1811          if Nkind (P) = N_Compilation_Unit then
1812             Unit_Kind := Nkind (Unit (P));
1813
1814             if Unit_Kind = N_Subprogram_Declaration
1815               or else Unit_Kind = N_Package_Declaration
1816               or else Unit_Kind in N_Generic_Declaration
1817             then
1818                Unit_Name := Defining_Entity (Unit (P));
1819
1820                if Chars (Id) = Chars (Unit_Name) then
1821                   Set_Entity (Id, Unit_Name);
1822                   Set_Etype (Id, Etype (Unit_Name));
1823                else
1824                   Set_Etype (Id, Any_Type);
1825                   Error_Pragma
1826                     ("cannot find program unit referenced by pragma%");
1827                end if;
1828
1829             else
1830                Set_Etype (Id, Any_Type);
1831                Error_Pragma ("pragma% inapplicable to this unit");
1832             end if;
1833
1834          else
1835             Analyze (Id);
1836          end if;
1837       end Find_Program_Unit_Name;
1838
1839       -----------------------------------------
1840       -- Find_Unique_Parameterless_Procedure --
1841       -----------------------------------------
1842
1843       function Find_Unique_Parameterless_Procedure
1844         (Name : Entity_Id;
1845          Arg  : Node_Id) return Entity_Id
1846       is
1847          Proc : Entity_Id := Empty;
1848
1849       begin
1850          --  The body of this procedure needs some comments ???
1851
1852          if not Is_Entity_Name (Name) then
1853             Error_Pragma_Arg
1854               ("argument of pragma% must be entity name", Arg);
1855
1856          elsif not Is_Overloaded (Name) then
1857             Proc := Entity (Name);
1858
1859             if Ekind (Proc) /= E_Procedure
1860                  or else Present (First_Formal (Proc)) then
1861                Error_Pragma_Arg
1862                  ("argument of pragma% must be parameterless procedure", Arg);
1863             end if;
1864
1865          else
1866             declare
1867                Found : Boolean := False;
1868                It    : Interp;
1869                Index : Interp_Index;
1870
1871             begin
1872                Get_First_Interp (Name, Index, It);
1873                while Present (It.Nam) loop
1874                   Proc := It.Nam;
1875
1876                   if Ekind (Proc) = E_Procedure
1877                     and then No (First_Formal (Proc))
1878                   then
1879                      if not Found then
1880                         Found := True;
1881                         Set_Entity (Name, Proc);
1882                         Set_Is_Overloaded (Name, False);
1883                      else
1884                         Error_Pragma_Arg
1885                           ("ambiguous handler name for pragma% ", Arg);
1886                      end if;
1887                   end if;
1888
1889                   Get_Next_Interp (Index, It);
1890                end loop;
1891
1892                if not Found then
1893                   Error_Pragma_Arg
1894                     ("argument of pragma% must be parameterless procedure",
1895                      Arg);
1896                else
1897                   Proc := Entity (Name);
1898                end if;
1899             end;
1900          end if;
1901
1902          return Proc;
1903       end Find_Unique_Parameterless_Procedure;
1904
1905       -------------------------
1906       -- Gather_Associations --
1907       -------------------------
1908
1909       procedure Gather_Associations
1910         (Names : Name_List;
1911          Args  : out Args_List)
1912       is
1913          Arg : Node_Id;
1914
1915       begin
1916          --  Initialize all parameters to Empty
1917
1918          for J in Args'Range loop
1919             Args (J) := Empty;
1920          end loop;
1921
1922          --  That's all we have to do if there are no argument associations
1923
1924          if No (Pragma_Argument_Associations (N)) then
1925             return;
1926          end if;
1927
1928          --  Otherwise first deal with any positional parameters present
1929
1930          Arg := First (Pragma_Argument_Associations (N));
1931          for Index in Args'Range loop
1932             exit when No (Arg) or else Chars (Arg) /= No_Name;
1933             Args (Index) := Expression (Arg);
1934             Next (Arg);
1935          end loop;
1936
1937          --  Positional parameters all processed, if any left, then we
1938          --  have too many positional parameters.
1939
1940          if Present (Arg) and then Chars (Arg) = No_Name then
1941             Error_Pragma_Arg
1942               ("too many positional associations for pragma%", Arg);
1943          end if;
1944
1945          --  Process named parameters if any are present
1946
1947          while Present (Arg) loop
1948             if Chars (Arg) = No_Name then
1949                Error_Pragma_Arg
1950                  ("positional association cannot follow named association",
1951                   Arg);
1952
1953             else
1954                for Index in Names'Range loop
1955                   if Names (Index) = Chars (Arg) then
1956                      if Present (Args (Index)) then
1957                         Error_Pragma_Arg
1958                           ("duplicate argument association for pragma%", Arg);
1959                      else
1960                         Args (Index) := Expression (Arg);
1961                         exit;
1962                      end if;
1963                   end if;
1964
1965                   if Index = Names'Last then
1966                      Error_Msg_Name_1 := Pname;
1967                      Error_Msg_N ("pragma% does not allow & argument", Arg);
1968
1969                      --  Check for possible misspelling
1970
1971                      for Index1 in Names'Range loop
1972                         if Is_Bad_Spelling_Of
1973                              (Chars (Arg), Names (Index1))
1974                         then
1975                            Error_Msg_Name_1 := Names (Index1);
1976                            Error_Msg_N -- CODEFIX
1977                              ("\possible misspelling of%", Arg);
1978                            exit;
1979                         end if;
1980                      end loop;
1981
1982                      raise Pragma_Exit;
1983                   end if;
1984                end loop;
1985             end if;
1986
1987             Next (Arg);
1988          end loop;
1989       end Gather_Associations;
1990
1991       -----------------
1992       -- GNAT_Pragma --
1993       -----------------
1994
1995       procedure GNAT_Pragma is
1996       begin
1997          Check_Restriction (No_Implementation_Pragmas, N);
1998       end GNAT_Pragma;
1999
2000       --------------------------
2001       -- Is_Before_First_Decl --
2002       --------------------------
2003
2004       function Is_Before_First_Decl
2005         (Pragma_Node : Node_Id;
2006          Decls       : List_Id) return Boolean
2007       is
2008          Item : Node_Id := First (Decls);
2009
2010       begin
2011          --  Only other pragmas can come before this pragma
2012
2013          loop
2014             if No (Item) or else Nkind (Item) /= N_Pragma then
2015                return False;
2016
2017             elsif Item = Pragma_Node then
2018                return True;
2019             end if;
2020
2021             Next (Item);
2022          end loop;
2023       end Is_Before_First_Decl;
2024
2025       -----------------------------
2026       -- Is_Configuration_Pragma --
2027       -----------------------------
2028
2029       --  A configuration pragma must appear in the context clause of a
2030       --  compilation unit, and only other pragmas may precede it. Note that
2031       --  the test below also permits use in a configuration pragma file.
2032
2033       function Is_Configuration_Pragma return Boolean is
2034          Lis : constant List_Id := List_Containing (N);
2035          Par : constant Node_Id := Parent (N);
2036          Prg : Node_Id;
2037
2038       begin
2039          --  If no parent, then we are in the configuration pragma file,
2040          --  so the placement is definitely appropriate.
2041
2042          if No (Par) then
2043             return True;
2044
2045          --  Otherwise we must be in the context clause of a compilation unit
2046          --  and the only thing allowed before us in the context list is more
2047          --  configuration pragmas.
2048
2049          elsif Nkind (Par) = N_Compilation_Unit
2050            and then Context_Items (Par) = Lis
2051          then
2052             Prg := First (Lis);
2053
2054             loop
2055                if Prg = N then
2056                   return True;
2057                elsif Nkind (Prg) /= N_Pragma then
2058                   return False;
2059                end if;
2060
2061                Next (Prg);
2062             end loop;
2063
2064          else
2065             return False;
2066          end if;
2067       end Is_Configuration_Pragma;
2068
2069       --------------------------
2070       -- Is_In_Context_Clause --
2071       --------------------------
2072
2073       function Is_In_Context_Clause return Boolean is
2074          Plist       : List_Id;
2075          Parent_Node : Node_Id;
2076
2077       begin
2078          if not Is_List_Member (N) then
2079             return False;
2080
2081          else
2082             Plist := List_Containing (N);
2083             Parent_Node := Parent (Plist);
2084
2085             if Parent_Node = Empty
2086               or else Nkind (Parent_Node) /= N_Compilation_Unit
2087               or else Context_Items (Parent_Node) /= Plist
2088             then
2089                return False;
2090             end if;
2091          end if;
2092
2093          return True;
2094       end Is_In_Context_Clause;
2095
2096       ---------------------------------
2097       -- Is_Static_String_Expression --
2098       ---------------------------------
2099
2100       function Is_Static_String_Expression (Arg : Node_Id) return Boolean is
2101          Argx : constant Node_Id := Get_Pragma_Arg (Arg);
2102
2103       begin
2104          Analyze_And_Resolve (Argx);
2105          return Is_OK_Static_Expression (Argx)
2106            and then Nkind (Argx) = N_String_Literal;
2107       end Is_Static_String_Expression;
2108
2109       ----------------------
2110       -- Pragma_Misplaced --
2111       ----------------------
2112
2113       procedure Pragma_Misplaced is
2114       begin
2115          Error_Pragma ("incorrect placement of pragma%");
2116       end Pragma_Misplaced;
2117
2118       ------------------------------------
2119       -- Process Atomic_Shared_Volatile --
2120       ------------------------------------
2121
2122       procedure Process_Atomic_Shared_Volatile is
2123          E_Id : Node_Id;
2124          E    : Entity_Id;
2125          D    : Node_Id;
2126          K    : Node_Kind;
2127          Utyp : Entity_Id;
2128
2129          procedure Set_Atomic (E : Entity_Id);
2130          --  Set given type as atomic, and if no explicit alignment was given,
2131          --  set alignment to unknown, since back end knows what the alignment
2132          --  requirements are for atomic arrays. Note: this step is necessary
2133          --  for derived types.
2134
2135          ----------------
2136          -- Set_Atomic --
2137          ----------------
2138
2139          procedure Set_Atomic (E : Entity_Id) is
2140          begin
2141             Set_Is_Atomic (E);
2142
2143             if not Has_Alignment_Clause (E) then
2144                Set_Alignment (E, Uint_0);
2145             end if;
2146          end Set_Atomic;
2147
2148       --  Start of processing for Process_Atomic_Shared_Volatile
2149
2150       begin
2151          Check_Ada_83_Warning;
2152          Check_No_Identifiers;
2153          Check_Arg_Count (1);
2154          Check_Arg_Is_Local_Name (Arg1);
2155          E_Id := Expression (Arg1);
2156
2157          if Etype (E_Id) = Any_Type then
2158             return;
2159          end if;
2160
2161          E := Entity (E_Id);
2162          D := Declaration_Node (E);
2163          K := Nkind (D);
2164
2165          if Is_Type (E) then
2166             if Rep_Item_Too_Early (E, N)
2167                  or else
2168                Rep_Item_Too_Late (E, N)
2169             then
2170                return;
2171             else
2172                Check_First_Subtype (Arg1);
2173             end if;
2174
2175             if Prag_Id /= Pragma_Volatile then
2176                Set_Atomic (E);
2177                Set_Atomic (Underlying_Type (E));
2178                Set_Atomic (Base_Type (E));
2179             end if;
2180
2181             --  Attribute belongs on the base type. If the view of the type is
2182             --  currently private, it also belongs on the underlying type.
2183
2184             Set_Is_Volatile (Base_Type (E));
2185             Set_Is_Volatile (Underlying_Type (E));
2186
2187             Set_Treat_As_Volatile (E);
2188             Set_Treat_As_Volatile (Underlying_Type (E));
2189
2190          elsif K = N_Object_Declaration
2191            or else (K = N_Component_Declaration
2192                      and then Original_Record_Component (E) = E)
2193          then
2194             if Rep_Item_Too_Late (E, N) then
2195                return;
2196             end if;
2197
2198             if Prag_Id /= Pragma_Volatile then
2199                Set_Is_Atomic (E);
2200
2201                --  If the object declaration has an explicit initialization, a
2202                --  temporary may have to be created to hold the expression, to
2203                --  ensure that access to the object remain atomic.
2204
2205                if Nkind (Parent (E)) = N_Object_Declaration
2206                  and then Present (Expression (Parent (E)))
2207                then
2208                   Set_Has_Delayed_Freeze (E);
2209                end if;
2210
2211                --  An interesting improvement here. If an object of type X is
2212                --  declared atomic, and the type X is not atomic, that's a
2213                --  pity, since it may not have appropriate alignment etc. We
2214                --  can rescue this in the special case where the object and
2215                --  type are in the same unit by just setting the type as
2216                --  atomic, so that the back end will process it as atomic.
2217
2218                Utyp := Underlying_Type (Etype (E));
2219
2220                if Present (Utyp)
2221                  and then Sloc (E) > No_Location
2222                  and then Sloc (Utyp) > No_Location
2223                  and then
2224                    Get_Source_File_Index (Sloc (E)) =
2225                    Get_Source_File_Index (Sloc (Underlying_Type (Etype (E))))
2226                then
2227                   Set_Is_Atomic (Underlying_Type (Etype (E)));
2228                end if;
2229             end if;
2230
2231             Set_Is_Volatile (E);
2232             Set_Treat_As_Volatile (E);
2233
2234          else
2235             Error_Pragma_Arg
2236               ("inappropriate entity for pragma%", Arg1);
2237          end if;
2238       end Process_Atomic_Shared_Volatile;
2239
2240       -------------------------------------------
2241       -- Process_Compile_Time_Warning_Or_Error --
2242       -------------------------------------------
2243
2244       procedure Process_Compile_Time_Warning_Or_Error is
2245          Arg1x : constant Node_Id := Get_Pragma_Arg (Arg1);
2246
2247       begin
2248          Check_Arg_Count (2);
2249          Check_No_Identifiers;
2250          Check_Arg_Is_Static_Expression (Arg2, Standard_String);
2251          Analyze_And_Resolve (Arg1x, Standard_Boolean);
2252
2253          if Compile_Time_Known_Value (Arg1x) then
2254             if Is_True (Expr_Value (Get_Pragma_Arg (Arg1))) then
2255                declare
2256                   Str   : constant String_Id :=
2257                             Strval (Get_Pragma_Arg (Arg2));
2258                   Len   : constant Int := String_Length (Str);
2259                   Cont  : Boolean;
2260                   Ptr   : Nat;
2261                   CC    : Char_Code;
2262                   C     : Character;
2263                   Cent  : constant Entity_Id :=
2264                             Cunit_Entity (Current_Sem_Unit);
2265
2266                   Force : constant Boolean :=
2267                             Prag_Id = Pragma_Compile_Time_Warning
2268                               and then
2269                                 Is_Spec_Name (Unit_Name (Current_Sem_Unit))
2270                               and then (Ekind (Cent) /= E_Package
2271                                           or else not In_Private_Part (Cent));
2272                   --  Set True if this is the warning case, and we are in the
2273                   --  visible part of a package spec, or in a subprogram spec,
2274                   --  in which case we want to force the client to see the
2275                   --  warning, even though it is not in the main unit.
2276
2277                begin
2278                   --  Loop through segments of message separated by line feeds.
2279                   --  We output these segments as separate messages with
2280                   --  continuation marks for all but the first.
2281
2282                   Cont := False;
2283                   Ptr := 1;
2284                   loop
2285                      Error_Msg_Strlen := 0;
2286
2287                      --  Loop to copy characters from argument to error message
2288                      --  string buffer.
2289
2290                      loop
2291                         exit when Ptr > Len;
2292                         CC := Get_String_Char (Str, Ptr);
2293                         Ptr := Ptr + 1;
2294
2295                         --  Ignore wide chars ??? else store character
2296
2297                         if In_Character_Range (CC) then
2298                            C := Get_Character (CC);
2299                            exit when C = ASCII.LF;
2300                            Error_Msg_Strlen := Error_Msg_Strlen + 1;
2301                            Error_Msg_String (Error_Msg_Strlen) := C;
2302                         end if;
2303                      end loop;
2304
2305                      --  Here with one line ready to go
2306
2307                      Error_Msg_Warn := Prag_Id = Pragma_Compile_Time_Warning;
2308
2309                      --  If this is a warning in a spec, then we want clients
2310                      --  to see the warning, so mark the message with the
2311                      --  special sequence !! to force the warning. In the case
2312                      --  of a package spec, we do not force this if we are in
2313                      --  the private part of the spec.
2314
2315                      if Force then
2316                         if Cont = False then
2317                            Error_Msg_N ("<~!!", Arg1);
2318                            Cont := True;
2319                         else
2320                            Error_Msg_N ("\<~!!", Arg1);
2321                         end if;
2322
2323                      --  Error, rather than warning, or in a body, so we do not
2324                      --  need to force visibility for client (error will be
2325                      --  output in any case, and this is the situation in which
2326                      --  we do not want a client to get a warning, since the
2327                      --  warning is in the body or the spec private part.
2328
2329                      else
2330                         if Cont = False then
2331                            Error_Msg_N ("<~", Arg1);
2332                            Cont := True;
2333                         else
2334                            Error_Msg_N ("\<~", Arg1);
2335                         end if;
2336                      end if;
2337
2338                      exit when Ptr > Len;
2339                   end loop;
2340                end;
2341             end if;
2342          end if;
2343       end Process_Compile_Time_Warning_Or_Error;
2344
2345       ------------------------
2346       -- Process_Convention --
2347       ------------------------
2348
2349       procedure Process_Convention
2350         (C : out Convention_Id;
2351          E : out Entity_Id)
2352       is
2353          Id        : Node_Id;
2354          E1        : Entity_Id;
2355          Cname     : Name_Id;
2356          Comp_Unit : Unit_Number_Type;
2357
2358          procedure Set_Convention_From_Pragma (E : Entity_Id);
2359          --  Set convention in entity E, and also flag that the entity has a
2360          --  convention pragma. If entity is for a private or incomplete type,
2361          --  also set convention and flag on underlying type. This procedure
2362          --  also deals with the special case of C_Pass_By_Copy convention.
2363
2364          --------------------------------
2365          -- Set_Convention_From_Pragma --
2366          --------------------------------
2367
2368          procedure Set_Convention_From_Pragma (E : Entity_Id) is
2369          begin
2370             --  Ada 2005 (AI-430): Check invalid attempt to change convention
2371             --  for an overridden dispatching operation. Technically this is
2372             --  an amendment and should only be done in Ada 2005 mode. However,
2373             --  this is clearly a mistake, since the problem that is addressed
2374             --  by this AI is that there is a clear gap in the RM!
2375
2376             if Is_Dispatching_Operation (E)
2377               and then Present (Overridden_Operation (E))
2378               and then C /= Convention (Overridden_Operation (E))
2379             then
2380                Error_Pragma_Arg
2381                  ("cannot change convention for " &
2382                   "overridden dispatching operation",
2383                   Arg1);
2384             end if;
2385
2386             --  Set the convention
2387
2388             Set_Convention (E, C);
2389             Set_Has_Convention_Pragma (E);
2390
2391             if Is_Incomplete_Or_Private_Type (E) then
2392                Set_Convention            (Underlying_Type (E), C);
2393                Set_Has_Convention_Pragma (Underlying_Type (E), True);
2394             end if;
2395
2396             --  A class-wide type should inherit the convention of the specific
2397             --  root type (although this isn't specified clearly by the RM).
2398
2399             if Is_Type (E) and then Present (Class_Wide_Type (E)) then
2400                Set_Convention (Class_Wide_Type (E), C);
2401             end if;
2402
2403             --  If the entity is a record type, then check for special case of
2404             --  C_Pass_By_Copy, which is treated the same as C except that the
2405             --  special record flag is set. This convention is only permitted
2406             --  on record types (see AI95-00131).
2407
2408             if Cname = Name_C_Pass_By_Copy then
2409                if Is_Record_Type (E) then
2410                   Set_C_Pass_By_Copy (Base_Type (E));
2411                elsif Is_Incomplete_Or_Private_Type (E)
2412                  and then Is_Record_Type (Underlying_Type (E))
2413                then
2414                   Set_C_Pass_By_Copy (Base_Type (Underlying_Type (E)));
2415                else
2416                   Error_Pragma_Arg
2417                     ("C_Pass_By_Copy convention allowed only for record type",
2418                      Arg2);
2419                end if;
2420             end if;
2421
2422             --  If the entity is a derived boolean type, check for the special
2423             --  case of convention C, C++, or Fortran, where we consider any
2424             --  nonzero value to represent true.
2425
2426             if Is_Discrete_Type (E)
2427               and then Root_Type (Etype (E)) = Standard_Boolean
2428               and then
2429                 (C = Convention_C
2430                    or else
2431                  C = Convention_CPP
2432                    or else
2433                  C = Convention_Fortran)
2434             then
2435                Set_Nonzero_Is_True (Base_Type (E));
2436             end if;
2437          end Set_Convention_From_Pragma;
2438
2439       --  Start of processing for Process_Convention
2440
2441       begin
2442          Check_At_Least_N_Arguments (2);
2443          Check_Optional_Identifier (Arg1, Name_Convention);
2444          Check_Arg_Is_Identifier (Arg1);
2445          Cname := Chars (Expression (Arg1));
2446
2447          --  C_Pass_By_Copy is treated as a synonym for convention C (this is
2448          --  tested again below to set the critical flag).
2449          if Cname = Name_C_Pass_By_Copy then
2450             C := Convention_C;
2451
2452          --  Otherwise we must have something in the standard convention list
2453
2454          elsif Is_Convention_Name (Cname) then
2455             C := Get_Convention_Id (Chars (Expression (Arg1)));
2456
2457          --  In DEC VMS, it seems that there is an undocumented feature that
2458          --  any unrecognized convention is treated as the default, which for
2459          --  us is convention C. It does not seem so terrible to do this
2460          --  unconditionally, silently in the VMS case, and with a warning
2461          --  in the non-VMS case.
2462
2463          else
2464             if Warn_On_Export_Import and not OpenVMS_On_Target then
2465                Error_Msg_N
2466                  ("?unrecognized convention name, C assumed",
2467                   Expression (Arg1));
2468             end if;
2469
2470             C := Convention_C;
2471          end if;
2472
2473          Check_Optional_Identifier (Arg2, Name_Entity);
2474          Check_Arg_Is_Local_Name (Arg2);
2475
2476          Id := Expression (Arg2);
2477          Analyze (Id);
2478
2479          if not Is_Entity_Name (Id) then
2480             Error_Pragma_Arg ("entity name required", Arg2);
2481          end if;
2482
2483          E := Entity (Id);
2484
2485          --  Go to renamed subprogram if present, since convention applies to
2486          --  the actual renamed entity, not to the renaming entity. If the
2487          --  subprogram is inherited, go to parent subprogram.
2488
2489          if Is_Subprogram (E)
2490            and then Present (Alias (E))
2491          then
2492             if Nkind (Parent (Declaration_Node (E))) =
2493                                        N_Subprogram_Renaming_Declaration
2494             then
2495                if Scope (E) /= Scope (Alias (E)) then
2496                   Error_Pragma_Ref
2497                     ("cannot apply pragma% to non-local entity&#", E);
2498                end if;
2499
2500                E := Alias (E);
2501
2502             elsif Nkind_In (Parent (E), N_Full_Type_Declaration,
2503                                         N_Private_Extension_Declaration)
2504               and then Scope (E) = Scope (Alias (E))
2505             then
2506                E := Alias (E);
2507             end if;
2508          end if;
2509
2510          --  Check that we are not applying this to a specless body
2511
2512          if Is_Subprogram (E)
2513            and then Nkind (Parent (Declaration_Node (E))) = N_Subprogram_Body
2514          then
2515             Error_Pragma
2516               ("pragma% requires separate spec and must come before body");
2517          end if;
2518
2519          --  Check that we are not applying this to a named constant
2520
2521          if Ekind (E) = E_Named_Integer
2522               or else
2523             Ekind (E) = E_Named_Real
2524          then
2525             Error_Msg_Name_1 := Pname;
2526             Error_Msg_N
2527               ("cannot apply pragma% to named constant!",
2528                Get_Pragma_Arg (Arg2));
2529             Error_Pragma_Arg
2530               ("\supply appropriate type for&!", Arg2);
2531          end if;
2532
2533          if Ekind (E) = E_Enumeration_Literal then
2534             Error_Pragma ("enumeration literal not allowed for pragma%");
2535          end if;
2536
2537          --  Check for rep item appearing too early or too late
2538
2539          if Etype (E) = Any_Type
2540            or else Rep_Item_Too_Early (E, N)
2541          then
2542             raise Pragma_Exit;
2543          else
2544             E := Underlying_Type (E);
2545          end if;
2546
2547          if Rep_Item_Too_Late (E, N) then
2548             raise Pragma_Exit;
2549          end if;
2550
2551          if Has_Convention_Pragma (E) then
2552             Error_Pragma_Arg
2553               ("at most one Convention/Export/Import pragma is allowed", Arg2);
2554
2555          elsif Convention (E) = Convention_Protected
2556            or else Ekind (Scope (E)) = E_Protected_Type
2557          then
2558             Error_Pragma_Arg
2559               ("a protected operation cannot be given a different convention",
2560                 Arg2);
2561          end if;
2562
2563          --  For Intrinsic, a subprogram is required
2564
2565          if C = Convention_Intrinsic
2566            and then not Is_Subprogram (E)
2567            and then not Is_Generic_Subprogram (E)
2568          then
2569             Error_Pragma_Arg
2570               ("second argument of pragma% must be a subprogram", Arg2);
2571          end if;
2572
2573          --  For Stdcall, a subprogram, variable or subprogram type is required
2574
2575          if C = Convention_Stdcall
2576            and then not Is_Subprogram (E)
2577            and then not Is_Generic_Subprogram (E)
2578            and then Ekind (E) /= E_Variable
2579            and then not
2580              (Is_Access_Type (E)
2581                 and then Ekind (Designated_Type (E)) = E_Subprogram_Type)
2582          then
2583             Error_Pragma_Arg
2584               ("second argument of pragma% must be subprogram (type)",
2585                Arg2);
2586          end if;
2587
2588          if not Is_Subprogram (E)
2589            and then not Is_Generic_Subprogram (E)
2590          then
2591             Set_Convention_From_Pragma (E);
2592
2593             if Is_Type (E) then
2594
2595                Check_First_Subtype (Arg2);
2596                Set_Convention_From_Pragma (Base_Type (E));
2597
2598                --  For subprograms, we must set the convention on the
2599                --  internally generated directly designated type as well.
2600
2601                if Ekind (E) = E_Access_Subprogram_Type then
2602                   Set_Convention_From_Pragma (Directly_Designated_Type (E));
2603                end if;
2604             end if;
2605
2606          --  For the subprogram case, set proper convention for all homonyms
2607          --  in same scope and the same declarative part, i.e. the same
2608          --  compilation unit.
2609
2610          else
2611             Comp_Unit := Get_Source_Unit (E);
2612             Set_Convention_From_Pragma (E);
2613
2614             --  Treat a pragma Import as an implicit body, for GPS use
2615
2616             if Prag_Id = Pragma_Import then
2617                Generate_Reference (E, Id, 'b');
2618             end if;
2619
2620             E1 := E;
2621             loop
2622                E1 := Homonym (E1);
2623                exit when No (E1) or else Scope (E1) /= Current_Scope;
2624
2625                --  Do not set the pragma on inherited operations or on formal
2626                --  subprograms.
2627
2628                if Comes_From_Source (E1)
2629                  and then Comp_Unit = Get_Source_Unit (E1)
2630                  and then not Is_Formal_Subprogram (E1)
2631                  and then Nkind (Original_Node (Parent (E1))) /=
2632                                                     N_Full_Type_Declaration
2633                then
2634                   if Present (Alias (E1))
2635                     and then Scope (E1) /= Scope (Alias (E1))
2636                   then
2637                      Error_Pragma_Ref
2638                        ("cannot apply pragma% to non-local entity& declared#",
2639                         E1);
2640                   end if;
2641
2642                   Set_Convention_From_Pragma (E1);
2643
2644                   if Prag_Id = Pragma_Import then
2645                      Generate_Reference (E, Id, 'b');
2646                   end if;
2647                end if;
2648             end loop;
2649          end if;
2650       end Process_Convention;
2651
2652       -----------------------------------------------------
2653       -- Process_Extended_Import_Export_Exception_Pragma --
2654       -----------------------------------------------------
2655
2656       procedure Process_Extended_Import_Export_Exception_Pragma
2657         (Arg_Internal : Node_Id;
2658          Arg_External : Node_Id;
2659          Arg_Form     : Node_Id;
2660          Arg_Code     : Node_Id)
2661       is
2662          Def_Id   : Entity_Id;
2663          Code_Val : Uint;
2664
2665       begin
2666          if not OpenVMS_On_Target then
2667             Error_Pragma
2668               ("?pragma% ignored (applies only to Open'V'M'S)");
2669          end if;
2670
2671          Process_Extended_Import_Export_Internal_Arg (Arg_Internal);
2672          Def_Id := Entity (Arg_Internal);
2673
2674          if Ekind (Def_Id) /= E_Exception then
2675             Error_Pragma_Arg
2676               ("pragma% must refer to declared exception", Arg_Internal);
2677          end if;
2678
2679          Set_Extended_Import_Export_External_Name (Def_Id, Arg_External);
2680
2681          if Present (Arg_Form) then
2682             Check_Arg_Is_One_Of (Arg_Form, Name_Ada, Name_VMS);
2683          end if;
2684
2685          if Present (Arg_Form)
2686            and then Chars (Arg_Form) = Name_Ada
2687          then
2688             null;
2689          else
2690             Set_Is_VMS_Exception (Def_Id);
2691             Set_Exception_Code (Def_Id, No_Uint);
2692          end if;
2693
2694          if Present (Arg_Code) then
2695             if not Is_VMS_Exception (Def_Id) then
2696                Error_Pragma_Arg
2697                  ("Code option for pragma% not allowed for Ada case",
2698                   Arg_Code);
2699             end if;
2700
2701             Check_Arg_Is_Static_Expression (Arg_Code, Any_Integer);
2702             Code_Val := Expr_Value (Arg_Code);
2703
2704             if not UI_Is_In_Int_Range (Code_Val) then
2705                Error_Pragma_Arg
2706                  ("Code option for pragma% must be in 32-bit range",
2707                   Arg_Code);
2708
2709             else
2710                Set_Exception_Code (Def_Id, Code_Val);
2711             end if;
2712          end if;
2713       end Process_Extended_Import_Export_Exception_Pragma;
2714
2715       -------------------------------------------------
2716       -- Process_Extended_Import_Export_Internal_Arg --
2717       -------------------------------------------------
2718
2719       procedure Process_Extended_Import_Export_Internal_Arg
2720         (Arg_Internal : Node_Id := Empty)
2721       is
2722       begin
2723          if No (Arg_Internal) then
2724             Error_Pragma ("Internal parameter required for pragma%");
2725          end if;
2726
2727          if Nkind (Arg_Internal) = N_Identifier then
2728             null;
2729
2730          elsif Nkind (Arg_Internal) = N_Operator_Symbol
2731            and then (Prag_Id = Pragma_Import_Function
2732                        or else
2733                      Prag_Id = Pragma_Export_Function)
2734          then
2735             null;
2736
2737          else
2738             Error_Pragma_Arg
2739               ("wrong form for Internal parameter for pragma%", Arg_Internal);
2740          end if;
2741
2742          Check_Arg_Is_Local_Name (Arg_Internal);
2743       end Process_Extended_Import_Export_Internal_Arg;
2744
2745       --------------------------------------------------
2746       -- Process_Extended_Import_Export_Object_Pragma --
2747       --------------------------------------------------
2748
2749       procedure Process_Extended_Import_Export_Object_Pragma
2750         (Arg_Internal : Node_Id;
2751          Arg_External : Node_Id;
2752          Arg_Size     : Node_Id)
2753       is
2754          Def_Id : Entity_Id;
2755
2756       begin
2757          Process_Extended_Import_Export_Internal_Arg (Arg_Internal);
2758          Def_Id := Entity (Arg_Internal);
2759
2760          if Ekind (Def_Id) /= E_Constant
2761            and then Ekind (Def_Id) /= E_Variable
2762          then
2763             Error_Pragma_Arg
2764               ("pragma% must designate an object", Arg_Internal);
2765          end if;
2766
2767          if Has_Rep_Pragma (Def_Id, Name_Common_Object)
2768               or else
2769             Has_Rep_Pragma (Def_Id, Name_Psect_Object)
2770          then
2771             Error_Pragma_Arg
2772               ("previous Common/Psect_Object applies, pragma % not permitted",
2773                Arg_Internal);
2774          end if;
2775
2776          if Rep_Item_Too_Late (Def_Id, N) then
2777             raise Pragma_Exit;
2778          end if;
2779
2780          Set_Extended_Import_Export_External_Name (Def_Id, Arg_External);
2781
2782          if Present (Arg_Size) then
2783             Check_Arg_Is_External_Name (Arg_Size);
2784          end if;
2785
2786          --  Export_Object case
2787
2788          if Prag_Id = Pragma_Export_Object then
2789             if not Is_Library_Level_Entity (Def_Id) then
2790                Error_Pragma_Arg
2791                  ("argument for pragma% must be library level entity",
2792                   Arg_Internal);
2793             end if;
2794
2795             if Ekind (Current_Scope) = E_Generic_Package then
2796                Error_Pragma ("pragma& cannot appear in a generic unit");
2797             end if;
2798
2799             if not Size_Known_At_Compile_Time (Etype (Def_Id)) then
2800                Error_Pragma_Arg
2801                  ("exported object must have compile time known size",
2802                   Arg_Internal);
2803             end if;
2804
2805             if Warn_On_Export_Import and then Is_Exported (Def_Id) then
2806                Error_Msg_N ("?duplicate Export_Object pragma", N);
2807             else
2808                Set_Exported (Def_Id, Arg_Internal);
2809             end if;
2810
2811          --  Import_Object case
2812
2813          else
2814             if Is_Concurrent_Type (Etype (Def_Id)) then
2815                Error_Pragma_Arg
2816                  ("cannot use pragma% for task/protected object",
2817                   Arg_Internal);
2818             end if;
2819
2820             if Ekind (Def_Id) = E_Constant then
2821                Error_Pragma_Arg
2822                  ("cannot import a constant", Arg_Internal);
2823             end if;
2824
2825             if Warn_On_Export_Import
2826               and then Has_Discriminants (Etype (Def_Id))
2827             then
2828                Error_Msg_N
2829                  ("imported value must be initialized?", Arg_Internal);
2830             end if;
2831
2832             if Warn_On_Export_Import
2833               and then Is_Access_Type (Etype (Def_Id))
2834             then
2835                Error_Pragma_Arg
2836                  ("cannot import object of an access type?", Arg_Internal);
2837             end if;
2838
2839             if Warn_On_Export_Import
2840               and then Is_Imported (Def_Id)
2841             then
2842                Error_Msg_N
2843                  ("?duplicate Import_Object pragma", N);
2844
2845             --  Check for explicit initialization present. Note that an
2846             --  initialization generated by the code generator, e.g. for an
2847             --  access type, does not count here.
2848
2849             elsif Present (Expression (Parent (Def_Id)))
2850                and then
2851                  Comes_From_Source
2852                    (Original_Node (Expression (Parent (Def_Id))))
2853             then
2854                Error_Msg_Sloc := Sloc (Def_Id);
2855                Error_Pragma_Arg
2856                  ("imported entities cannot be initialized (RM B.1(24))",
2857                   "\no initialization allowed for & declared#", Arg1);
2858             else
2859                Set_Imported (Def_Id);
2860                Note_Possible_Modification (Arg_Internal, Sure => False);
2861             end if;
2862          end if;
2863       end Process_Extended_Import_Export_Object_Pragma;
2864
2865       ------------------------------------------------------
2866       -- Process_Extended_Import_Export_Subprogram_Pragma --
2867       ------------------------------------------------------
2868
2869       procedure Process_Extended_Import_Export_Subprogram_Pragma
2870         (Arg_Internal                 : Node_Id;
2871          Arg_External                 : Node_Id;
2872          Arg_Parameter_Types          : Node_Id;
2873          Arg_Result_Type              : Node_Id := Empty;
2874          Arg_Mechanism                : Node_Id;
2875          Arg_Result_Mechanism         : Node_Id := Empty;
2876          Arg_First_Optional_Parameter : Node_Id := Empty)
2877       is
2878          Ent       : Entity_Id;
2879          Def_Id    : Entity_Id;
2880          Hom_Id    : Entity_Id;
2881          Formal    : Entity_Id;
2882          Ambiguous : Boolean;
2883          Match     : Boolean;
2884          Dval      : Node_Id;
2885
2886          function Same_Base_Type
2887           (Ptype  : Node_Id;
2888            Formal : Entity_Id) return Boolean;
2889          --  Determines if Ptype references the type of Formal. Note that only
2890          --  the base types need to match according to the spec. Ptype here is
2891          --  the argument from the pragma, which is either a type name, or an
2892          --  access attribute.
2893
2894          --------------------
2895          -- Same_Base_Type --
2896          --------------------
2897
2898          function Same_Base_Type
2899            (Ptype  : Node_Id;
2900             Formal : Entity_Id) return Boolean
2901          is
2902             Ftyp : constant Entity_Id := Base_Type (Etype (Formal));
2903             Pref : Node_Id;
2904
2905          begin
2906             --  Case where pragma argument is typ'Access
2907
2908             if Nkind (Ptype) = N_Attribute_Reference
2909               and then Attribute_Name (Ptype) = Name_Access
2910             then
2911                Pref := Prefix (Ptype);
2912                Find_Type (Pref);
2913
2914                if not Is_Entity_Name (Pref)
2915                  or else Entity (Pref) = Any_Type
2916                then
2917                   raise Pragma_Exit;
2918                end if;
2919
2920                --  We have a match if the corresponding argument is of an
2921                --  anonymous access type, and its designated type matches the
2922                --  type of the prefix of the access attribute
2923
2924                return Ekind (Ftyp) = E_Anonymous_Access_Type
2925                  and then Base_Type (Entity (Pref)) =
2926                             Base_Type (Etype (Designated_Type (Ftyp)));
2927
2928             --  Case where pragma argument is a type name
2929
2930             else
2931                Find_Type (Ptype);
2932
2933                if not Is_Entity_Name (Ptype)
2934                  or else Entity (Ptype) = Any_Type
2935                then
2936                   raise Pragma_Exit;
2937                end if;
2938
2939                --  We have a match if the corresponding argument is of the type
2940                --  given in the pragma (comparing base types)
2941
2942                return Base_Type (Entity (Ptype)) = Ftyp;
2943             end if;
2944          end Same_Base_Type;
2945
2946       --  Start of processing for
2947       --  Process_Extended_Import_Export_Subprogram_Pragma
2948
2949       begin
2950          Process_Extended_Import_Export_Internal_Arg (Arg_Internal);
2951          Ent := Empty;
2952          Ambiguous := False;
2953
2954          --  Loop through homonyms (overloadings) of the entity
2955
2956          Hom_Id := Entity (Arg_Internal);
2957          while Present (Hom_Id) loop
2958             Def_Id := Get_Base_Subprogram (Hom_Id);
2959
2960             --  We need a subprogram in the current scope
2961
2962             if not Is_Subprogram (Def_Id)
2963               or else Scope (Def_Id) /= Current_Scope
2964             then
2965                null;
2966
2967             else
2968                Match := True;
2969
2970                --  Pragma cannot apply to subprogram body
2971
2972                if Is_Subprogram (Def_Id)
2973                  and then Nkind (Parent (Declaration_Node (Def_Id))) =
2974                                                              N_Subprogram_Body
2975                then
2976                   Error_Pragma
2977                     ("pragma% requires separate spec"
2978                       & " and must come before body");
2979                end if;
2980
2981                --  Test result type if given, note that the result type
2982                --  parameter can only be present for the function cases.
2983
2984                if Present (Arg_Result_Type)
2985                  and then not Same_Base_Type (Arg_Result_Type, Def_Id)
2986                then
2987                   Match := False;
2988
2989                elsif Etype (Def_Id) /= Standard_Void_Type
2990                  and then
2991                    (Pname = Name_Export_Procedure
2992                       or else
2993                     Pname = Name_Import_Procedure)
2994                then
2995                   Match := False;
2996
2997                --  Test parameter types if given. Note that this parameter
2998                --  has not been analyzed (and must not be, since it is
2999                --  semantic nonsense), so we get it as the parser left it.
3000
3001                elsif Present (Arg_Parameter_Types) then
3002                   Check_Matching_Types : declare
3003                      Formal : Entity_Id;
3004                      Ptype  : Node_Id;
3005
3006                   begin
3007                      Formal := First_Formal (Def_Id);
3008
3009                      if Nkind (Arg_Parameter_Types) = N_Null then
3010                         if Present (Formal) then
3011                            Match := False;
3012                         end if;
3013
3014                      --  A list of one type, e.g. (List) is parsed as
3015                      --  a parenthesized expression.
3016
3017                      elsif Nkind (Arg_Parameter_Types) /= N_Aggregate
3018                        and then Paren_Count (Arg_Parameter_Types) = 1
3019                      then
3020                         if No (Formal)
3021                           or else Present (Next_Formal (Formal))
3022                         then
3023                            Match := False;
3024                         else
3025                            Match :=
3026                              Same_Base_Type (Arg_Parameter_Types, Formal);
3027                         end if;
3028
3029                      --  A list of more than one type is parsed as a aggregate
3030
3031                      elsif Nkind (Arg_Parameter_Types) = N_Aggregate
3032                        and then Paren_Count (Arg_Parameter_Types) = 0
3033                      then
3034                         Ptype := First (Expressions (Arg_Parameter_Types));
3035                         while Present (Ptype) or else Present (Formal) loop
3036                            if No (Ptype)
3037                              or else No (Formal)
3038                              or else not Same_Base_Type (Ptype, Formal)
3039                            then
3040                               Match := False;
3041                               exit;
3042                            else
3043                               Next_Formal (Formal);
3044                               Next (Ptype);
3045                            end if;
3046                         end loop;
3047
3048                      --  Anything else is of the wrong form
3049
3050                      else
3051                         Error_Pragma_Arg
3052                           ("wrong form for Parameter_Types parameter",
3053                            Arg_Parameter_Types);
3054                      end if;
3055                   end Check_Matching_Types;
3056                end if;
3057
3058                --  Match is now False if the entry we found did not match
3059                --  either a supplied Parameter_Types or Result_Types argument
3060
3061                if Match then
3062                   if No (Ent) then
3063                      Ent := Def_Id;
3064
3065                   --  Ambiguous case, the flag Ambiguous shows if we already
3066                   --  detected this and output the initial messages.
3067
3068                   else
3069                      if not Ambiguous then
3070                         Ambiguous := True;
3071                         Error_Msg_Name_1 := Pname;
3072                         Error_Msg_N
3073                           ("pragma% does not uniquely identify subprogram!",
3074                            N);
3075                         Error_Msg_Sloc := Sloc (Ent);
3076                         Error_Msg_N ("matching subprogram #!", N);
3077                         Ent := Empty;
3078                      end if;
3079
3080                      Error_Msg_Sloc := Sloc (Def_Id);
3081                      Error_Msg_N ("matching subprogram #!", N);
3082                   end if;
3083                end if;
3084             end if;
3085
3086             Hom_Id := Homonym (Hom_Id);
3087          end loop;
3088
3089          --  See if we found an entry
3090
3091          if No (Ent) then
3092             if not Ambiguous then
3093                if Is_Generic_Subprogram (Entity (Arg_Internal)) then
3094                   Error_Pragma
3095                     ("pragma% cannot be given for generic subprogram");
3096                else
3097                   Error_Pragma
3098                     ("pragma% does not identify local subprogram");
3099                end if;
3100             end if;
3101
3102             return;
3103          end if;
3104
3105          --  Import pragmas must be for imported entities
3106
3107          if Prag_Id = Pragma_Import_Function
3108               or else
3109             Prag_Id = Pragma_Import_Procedure
3110               or else
3111             Prag_Id = Pragma_Import_Valued_Procedure
3112          then
3113             if not Is_Imported (Ent) then
3114                Error_Pragma -- CODEFIX???
3115                  ("pragma Import or Interface must precede pragma%");
3116             end if;
3117
3118          --  Here we have the Export case which can set the entity as exported
3119
3120          --  But does not do so if the specified external name is null, since
3121          --  that is taken as a signal in DEC Ada 83 (with which we want to be
3122          --  compatible) to request no external name.
3123
3124          elsif Nkind (Arg_External) = N_String_Literal
3125            and then String_Length (Strval (Arg_External)) = 0
3126          then
3127             null;
3128
3129          --  In all other cases, set entity as exported
3130
3131          else
3132             Set_Exported (Ent, Arg_Internal);
3133          end if;
3134
3135          --  Special processing for Valued_Procedure cases
3136
3137          if Prag_Id = Pragma_Import_Valued_Procedure
3138            or else
3139             Prag_Id = Pragma_Export_Valued_Procedure
3140          then
3141             Formal := First_Formal (Ent);
3142
3143             if No (Formal) then
3144                Error_Pragma ("at least one parameter required for pragma%");
3145
3146             elsif Ekind (Formal) /= E_Out_Parameter then
3147                Error_Pragma ("first parameter must have mode out for pragma%");
3148
3149             else
3150                Set_Is_Valued_Procedure (Ent);
3151             end if;
3152          end if;
3153
3154          Set_Extended_Import_Export_External_Name (Ent, Arg_External);
3155
3156          --  Process Result_Mechanism argument if present. We have already
3157          --  checked that this is only allowed for the function case.
3158
3159          if Present (Arg_Result_Mechanism) then
3160             Set_Mechanism_Value (Ent, Arg_Result_Mechanism);
3161          end if;
3162
3163          --  Process Mechanism parameter if present. Note that this parameter
3164          --  is not analyzed, and must not be analyzed since it is semantic
3165          --  nonsense, so we get it in exactly as the parser left it.
3166
3167          if Present (Arg_Mechanism) then
3168             declare
3169                Formal : Entity_Id;
3170                Massoc : Node_Id;
3171                Mname  : Node_Id;
3172                Choice : Node_Id;
3173
3174             begin
3175                --  A single mechanism association without a formal parameter
3176                --  name is parsed as a parenthesized expression. All other
3177                --  cases are parsed as aggregates, so we rewrite the single
3178                --  parameter case as an aggregate for consistency.
3179
3180                if Nkind (Arg_Mechanism) /= N_Aggregate
3181                  and then Paren_Count (Arg_Mechanism) = 1
3182                then
3183                   Rewrite (Arg_Mechanism,
3184                     Make_Aggregate (Sloc (Arg_Mechanism),
3185                       Expressions => New_List (
3186                         Relocate_Node (Arg_Mechanism))));
3187                end if;
3188
3189                --  Case of only mechanism name given, applies to all formals
3190
3191                if Nkind (Arg_Mechanism) /= N_Aggregate then
3192                   Formal := First_Formal (Ent);
3193                   while Present (Formal) loop
3194                      Set_Mechanism_Value (Formal, Arg_Mechanism);
3195                      Next_Formal (Formal);
3196                   end loop;
3197
3198                --  Case of list of mechanism associations given
3199
3200                else
3201                   if Null_Record_Present (Arg_Mechanism) then
3202                      Error_Pragma_Arg
3203                        ("inappropriate form for Mechanism parameter",
3204                         Arg_Mechanism);
3205                   end if;
3206
3207                   --  Deal with positional ones first
3208
3209                   Formal := First_Formal (Ent);
3210
3211                   if Present (Expressions (Arg_Mechanism)) then
3212                      Mname := First (Expressions (Arg_Mechanism));
3213                      while Present (Mname) loop
3214                         if No (Formal) then
3215                            Error_Pragma_Arg
3216                              ("too many mechanism associations", Mname);
3217                         end if;
3218
3219                         Set_Mechanism_Value (Formal, Mname);
3220                         Next_Formal (Formal);
3221                         Next (Mname);
3222                      end loop;
3223                   end if;
3224
3225                   --  Deal with named entries
3226
3227                   if Present (Component_Associations (Arg_Mechanism)) then
3228                      Massoc := First (Component_Associations (Arg_Mechanism));
3229                      while Present (Massoc) loop
3230                         Choice := First (Choices (Massoc));
3231
3232                         if Nkind (Choice) /= N_Identifier
3233                           or else Present (Next (Choice))
3234                         then
3235                            Error_Pragma_Arg
3236                              ("incorrect form for mechanism association",
3237                               Massoc);
3238                         end if;
3239
3240                         Formal := First_Formal (Ent);
3241                         loop
3242                            if No (Formal) then
3243                               Error_Pragma_Arg
3244                                 ("parameter name & not present", Choice);
3245                            end if;
3246
3247                            if Chars (Choice) = Chars (Formal) then
3248                               Set_Mechanism_Value
3249                                 (Formal, Expression (Massoc));
3250
3251                               --  Set entity on identifier for ASIS
3252
3253                               Set_Entity (Choice, Formal);
3254
3255                               exit;
3256                            end if;
3257
3258                            Next_Formal (Formal);
3259                         end loop;
3260
3261                         Next (Massoc);
3262                      end loop;
3263                   end if;
3264                end if;
3265             end;
3266          end if;
3267
3268          --  Process First_Optional_Parameter argument if present. We have
3269          --  already checked that this is only allowed for the Import case.
3270
3271          if Present (Arg_First_Optional_Parameter) then
3272             if Nkind (Arg_First_Optional_Parameter) /= N_Identifier then
3273                Error_Pragma_Arg
3274                  ("first optional parameter must be formal parameter name",
3275                   Arg_First_Optional_Parameter);
3276             end if;
3277
3278             Formal := First_Formal (Ent);
3279             loop
3280                if No (Formal) then
3281                   Error_Pragma_Arg
3282                     ("specified formal parameter& not found",
3283                      Arg_First_Optional_Parameter);
3284                end if;
3285
3286                exit when Chars (Formal) =
3287                          Chars (Arg_First_Optional_Parameter);
3288
3289                Next_Formal (Formal);
3290             end loop;
3291
3292             Set_First_Optional_Parameter (Ent, Formal);
3293
3294             --  Check specified and all remaining formals have right form
3295
3296             while Present (Formal) loop
3297                if Ekind (Formal) /= E_In_Parameter then
3298                   Error_Msg_NE
3299                     ("optional formal& is not of mode in!",
3300                      Arg_First_Optional_Parameter, Formal);
3301
3302                else
3303                   Dval := Default_Value (Formal);
3304
3305                   if No (Dval) then
3306                      Error_Msg_NE
3307                        ("optional formal& does not have default value!",
3308                         Arg_First_Optional_Parameter, Formal);
3309
3310                   elsif Compile_Time_Known_Value_Or_Aggr (Dval) then
3311                      null;
3312
3313                   else
3314                      Error_Msg_FE
3315                        ("default value for optional formal& is non-static!",
3316                         Arg_First_Optional_Parameter, Formal);
3317                   end if;
3318                end if;
3319
3320                Set_Is_Optional_Parameter (Formal);
3321                Next_Formal (Formal);
3322             end loop;
3323          end if;
3324       end Process_Extended_Import_Export_Subprogram_Pragma;
3325
3326       --------------------------
3327       -- Process_Generic_List --
3328       --------------------------
3329
3330       procedure Process_Generic_List is
3331          Arg : Node_Id;
3332          Exp : Node_Id;
3333
3334       begin
3335          Check_No_Identifiers;
3336          Check_At_Least_N_Arguments (1);
3337
3338          Arg := Arg1;
3339          while Present (Arg) loop
3340             Exp := Expression (Arg);
3341             Analyze (Exp);
3342
3343             if not Is_Entity_Name (Exp)
3344               or else
3345                 (not Is_Generic_Instance (Entity (Exp))
3346                   and then
3347                  not Is_Generic_Unit (Entity (Exp)))
3348             then
3349                Error_Pragma_Arg
3350                  ("pragma% argument must be name of generic unit/instance",
3351                   Arg);
3352             end if;
3353
3354             Next (Arg);
3355          end loop;
3356       end Process_Generic_List;
3357
3358       ---------------------------------
3359       -- Process_Import_Or_Interface --
3360       ---------------------------------
3361
3362       procedure Process_Import_Or_Interface is
3363          C      : Convention_Id;
3364          Def_Id : Entity_Id;
3365          Hom_Id : Entity_Id;
3366
3367       begin
3368          Process_Convention (C, Def_Id);
3369          Kill_Size_Check_Code (Def_Id);
3370          Note_Possible_Modification (Expression (Arg2), Sure => False);
3371
3372          if Ekind (Def_Id) = E_Variable
3373               or else
3374             Ekind (Def_Id) = E_Constant
3375          then
3376             --  We do not permit Import to apply to a renaming declaration
3377
3378             if Present (Renamed_Object (Def_Id)) then
3379                Error_Pragma_Arg
3380                  ("pragma% not allowed for object renaming", Arg2);
3381
3382             --  User initialization is not allowed for imported object, but
3383             --  the object declaration may contain a default initialization,
3384             --  that will be discarded. Note that an explicit initialization
3385             --  only counts if it comes from source, otherwise it is simply
3386             --  the code generator making an implicit initialization explicit.
3387
3388             elsif Present (Expression (Parent (Def_Id)))
3389               and then Comes_From_Source (Expression (Parent (Def_Id)))
3390             then
3391                Error_Msg_Sloc := Sloc (Def_Id);
3392                Error_Pragma_Arg
3393                  ("no initialization allowed for declaration of& #",
3394                   "\imported entities cannot be initialized (RM B.1(24))",
3395                   Arg2);
3396
3397             else
3398                Set_Imported (Def_Id);
3399                Process_Interface_Name (Def_Id, Arg3, Arg4);
3400
3401                --  Note that we do not set Is_Public here. That's because we
3402                --  only want to set it if there is no address clause, and we
3403                --  don't know that yet, so we delay that processing till
3404                --  freeze time.
3405
3406                --  pragma Import completes deferred constants
3407
3408                if Ekind (Def_Id) = E_Constant then
3409                   Set_Has_Completion (Def_Id);
3410                end if;
3411
3412                --  It is not possible to import a constant of an unconstrained
3413                --  array type (e.g. string) because there is no simple way to
3414                --  write a meaningful subtype for it.
3415
3416                if Is_Array_Type (Etype (Def_Id))
3417                  and then not Is_Constrained (Etype (Def_Id))
3418                then
3419                   Error_Msg_NE
3420                     ("imported constant& must have a constrained subtype",
3421                       N, Def_Id);
3422                end if;
3423             end if;
3424
3425          elsif Is_Subprogram (Def_Id)
3426            or else Is_Generic_Subprogram (Def_Id)
3427          then
3428             --  If the name is overloaded, pragma applies to all of the
3429             --  denoted entities in the same declarative part.
3430
3431             Hom_Id := Def_Id;
3432             while Present (Hom_Id) loop
3433                Def_Id := Get_Base_Subprogram (Hom_Id);
3434
3435                --  Ignore inherited subprograms because the pragma will
3436                --  apply to the parent operation, which is the one called.
3437
3438                if Is_Overloadable (Def_Id)
3439                  and then Present (Alias (Def_Id))
3440                then
3441                   null;
3442
3443                --  If it is not a subprogram, it must be in an outer scope and
3444                --  pragma does not apply.
3445
3446                elsif not Is_Subprogram (Def_Id)
3447                  and then not Is_Generic_Subprogram (Def_Id)
3448                then
3449                   null;
3450
3451                --  Verify that the homonym is in the same declarative part (not
3452                --  just the same scope).
3453
3454                elsif Parent (Unit_Declaration_Node (Def_Id)) /= Parent (N)
3455                  and then Nkind (Parent (N)) /= N_Compilation_Unit_Aux
3456                then
3457                   exit;
3458
3459                else
3460                   Set_Imported (Def_Id);
3461
3462                   if Is_Subprogram (Def_Id)
3463                     and then Is_Abstract_Subprogram (Def_Id)
3464                   then
3465                      Error_Msg_Sloc := Sloc (Def_Id);
3466                      Error_Msg_NE
3467                        ("cannot import abstract subprogram& declared#",
3468                         Arg2, Def_Id);
3469                   end if;
3470
3471                   --  Special processing for Convention_Intrinsic
3472
3473                   if C = Convention_Intrinsic then
3474
3475                      --  Link_Name argument not allowed for intrinsic
3476
3477                      if Present (Arg3)
3478                        and then Chars (Arg3) = Name_Link_Name
3479                      then
3480                         Arg4 := Arg3;
3481                      end if;
3482
3483                      if Present (Arg4) then
3484                         Error_Pragma_Arg
3485                           ("Link_Name argument not allowed for " &
3486                            "Import Intrinsic",
3487                            Arg4);
3488                      end if;
3489
3490                      Set_Is_Intrinsic_Subprogram (Def_Id);
3491
3492                      --  If no external name is present, then check that this
3493                      --  is a valid intrinsic subprogram. If an external name
3494                      --  is present, then this is handled by the back end.
3495
3496                      if No (Arg3) then
3497                         Check_Intrinsic_Subprogram (Def_Id, Expression (Arg2));
3498                      end if;
3499                   end if;
3500
3501                   --  All interfaced procedures need an external symbol created
3502                   --  for them since they are always referenced from another
3503                   --  object file.
3504
3505                   Set_Is_Public (Def_Id);
3506
3507                   --  Verify that the subprogram does not have a completion
3508                   --  through a renaming declaration. For other completions the
3509                   --  pragma appears as a too late representation.
3510
3511                   declare
3512                      Decl : constant Node_Id := Unit_Declaration_Node (Def_Id);
3513
3514                   begin
3515                      if Present (Decl)
3516                        and then Nkind (Decl) = N_Subprogram_Declaration
3517                        and then Present (Corresponding_Body (Decl))
3518                        and then Nkind (Unit_Declaration_Node
3519                                         (Corresponding_Body (Decl))) =
3520                                              N_Subprogram_Renaming_Declaration
3521                      then
3522                         Error_Msg_Sloc := Sloc (Def_Id);
3523                         Error_Msg_NE
3524                           ("cannot import&, renaming already provided for " &
3525                            "declaration #", N, Def_Id);
3526                      end if;
3527                   end;
3528
3529                   Set_Has_Completion (Def_Id);
3530                   Process_Interface_Name (Def_Id, Arg3, Arg4);
3531                end if;
3532
3533                if Is_Compilation_Unit (Hom_Id) then
3534
3535                   --  Its possible homonyms are not affected by the pragma.
3536                   --  Such homonyms might be present in the context of other
3537                   --  units being compiled.
3538
3539                   exit;
3540
3541                else
3542                   Hom_Id := Homonym (Hom_Id);
3543                end if;
3544             end loop;
3545
3546          --  When the convention is Java or CIL, we also allow Import to be
3547          --  given for packages, generic packages, exceptions, record
3548          --  components, and access to subprograms.
3549
3550          elsif (C = Convention_Java or else C = Convention_CIL)
3551            and then
3552              (Is_Package_Or_Generic_Package (Def_Id)
3553                or else Ekind (Def_Id) = E_Exception
3554                or else Ekind (Def_Id) = E_Access_Subprogram_Type
3555                or else Nkind (Parent (Def_Id)) = N_Component_Declaration)
3556          then
3557             Set_Imported (Def_Id);
3558             Set_Is_Public (Def_Id);
3559             Process_Interface_Name (Def_Id, Arg3, Arg4);
3560
3561          --  Import a CPP class
3562
3563          elsif Is_Record_Type (Def_Id)
3564            and then C = Convention_CPP
3565          then
3566             --  Types treated as CPP classes are treated as limited, but we
3567             --  don't require them to be declared this way. A warning is
3568             --  issued to encourage the user to declare them as limited.
3569             --  This is not an error, for compatibility reasons, because
3570             --  these types have been supported this way for some time.
3571
3572             if not Is_Limited_Type (Def_Id) then
3573                Error_Msg_N
3574                  ("imported 'C'P'P type should be " &
3575                     "explicitly declared limited?",
3576                   Get_Pragma_Arg (Arg2));
3577                Error_Msg_N
3578                  ("\type will be considered limited",
3579                   Get_Pragma_Arg (Arg2));
3580             end if;
3581
3582             Set_Is_CPP_Class (Def_Id);
3583             Set_Is_Limited_Record (Def_Id);
3584
3585             --  Imported CPP types must not have discriminants (because C++
3586             --  classes do not have discriminants).
3587
3588             if Has_Discriminants (Def_Id) then
3589                Error_Msg_N
3590                  ("imported 'C'P'P type cannot have discriminants",
3591                   First (Discriminant_Specifications
3592                           (Declaration_Node (Def_Id))));
3593             end if;
3594
3595             --  Components of imported CPP types must not have default
3596             --  expressions because the constructor (if any) is on the
3597             --  C++ side.
3598
3599             declare
3600                Tdef  : constant Node_Id :=
3601                          Type_Definition (Declaration_Node (Def_Id));
3602                Clist : Node_Id;
3603                Comp  : Node_Id;
3604
3605             begin
3606                if Nkind (Tdef) = N_Record_Definition then
3607                   Clist := Component_List (Tdef);
3608
3609                else
3610                   pragma Assert (Nkind (Tdef) = N_Derived_Type_Definition);
3611                   Clist := Component_List (Record_Extension_Part (Tdef));
3612                end if;
3613
3614                if Present (Clist) then
3615                   Comp := First (Component_Items (Clist));
3616                   while Present (Comp) loop
3617                      if Present (Expression (Comp)) then
3618                         Error_Msg_N
3619                           ("component of imported 'C'P'P type cannot have" &
3620                            " default expression", Expression (Comp));
3621                      end if;
3622
3623                      Next (Comp);
3624                   end loop;
3625                end if;
3626             end;
3627
3628          else
3629             Error_Pragma_Arg
3630               ("second argument of pragma% must be object or subprogram",
3631                Arg2);
3632          end if;
3633
3634          --  If this pragma applies to a compilation unit, then the unit, which
3635          --  is a subprogram, does not require (or allow) a body. We also do
3636          --  not need to elaborate imported procedures.
3637
3638          if Nkind (Parent (N)) = N_Compilation_Unit_Aux then
3639             declare
3640                Cunit : constant Node_Id := Parent (Parent (N));
3641             begin
3642                Set_Body_Required (Cunit, False);
3643             end;
3644          end if;
3645       end Process_Import_Or_Interface;
3646
3647       --------------------
3648       -- Process_Inline --
3649       --------------------
3650
3651       procedure Process_Inline (Active : Boolean) is
3652          Assoc     : Node_Id;
3653          Decl      : Node_Id;
3654          Subp_Id   : Node_Id;
3655          Subp      : Entity_Id;
3656          Applies   : Boolean;
3657          Effective : Boolean := False;
3658
3659          procedure Make_Inline (Subp : Entity_Id);
3660          --  Subp is the defining unit name of the subprogram declaration. Set
3661          --  the flag, as well as the flag in the corresponding body, if there
3662          --  is one present.
3663
3664          procedure Set_Inline_Flags (Subp : Entity_Id);
3665          --  Sets Is_Inlined and Has_Pragma_Inline flags for Subp and also
3666          --  Has_Pragma_Inline_Always for the Inline_Always case.
3667
3668          function Inlining_Not_Possible (Subp : Entity_Id) return Boolean;
3669          --  Returns True if it can be determined at this stage that inlining
3670          --  is not possible, for example if the body is available and contains
3671          --  exception handlers, we prevent inlining, since otherwise we can
3672          --  get undefined symbols at link time. This function also emits a
3673          --  warning if front-end inlining is enabled and the pragma appears
3674          --  too late.
3675          --
3676          --  ??? is business with link symbols still valid, or does it relate
3677          --  to front end ZCX which is being phased out ???
3678
3679          ---------------------------
3680          -- Inlining_Not_Possible --
3681          ---------------------------
3682
3683          function Inlining_Not_Possible (Subp : Entity_Id) return Boolean is
3684             Decl  : constant Node_Id := Unit_Declaration_Node (Subp);
3685             Stats : Node_Id;
3686
3687          begin
3688             if Nkind (Decl) = N_Subprogram_Body then
3689                Stats := Handled_Statement_Sequence (Decl);
3690                return Present (Exception_Handlers (Stats))
3691                  or else Present (At_End_Proc (Stats));
3692
3693             elsif Nkind (Decl) = N_Subprogram_Declaration
3694               and then Present (Corresponding_Body (Decl))
3695             then
3696                if Front_End_Inlining
3697                  and then Analyzed (Corresponding_Body (Decl))
3698                then
3699                   Error_Msg_N ("pragma appears too late, ignored?", N);
3700                   return True;
3701
3702                --  If the subprogram is a renaming as body, the body is just a
3703                --  call to the renamed subprogram, and inlining is trivially
3704                --  possible.
3705
3706                elsif
3707                  Nkind (Unit_Declaration_Node (Corresponding_Body (Decl))) =
3708                                              N_Subprogram_Renaming_Declaration
3709                then
3710                   return False;
3711
3712                else
3713                   Stats :=
3714                     Handled_Statement_Sequence
3715                         (Unit_Declaration_Node (Corresponding_Body (Decl)));
3716
3717                   return
3718                     Present (Exception_Handlers (Stats))
3719                       or else Present (At_End_Proc (Stats));
3720                end if;
3721
3722             else
3723                --  If body is not available, assume the best, the check is
3724                --  performed again when compiling enclosing package bodies.
3725
3726                return False;
3727             end if;
3728          end Inlining_Not_Possible;
3729
3730          -----------------
3731          -- Make_Inline --
3732          -----------------
3733
3734          procedure Make_Inline (Subp : Entity_Id) is
3735             Kind       : constant Entity_Kind := Ekind (Subp);
3736             Inner_Subp : Entity_Id   := Subp;
3737
3738          begin
3739             --  Ignore if bad type, avoid cascaded error
3740
3741             if Etype (Subp) = Any_Type then
3742                Applies := True;
3743                return;
3744
3745             --  Ignore if all inlining is suppressed
3746
3747             elsif Suppress_All_Inlining then
3748                Applies := True;
3749                return;
3750
3751             --  If inlining is not possible, for now do not treat as an error
3752
3753             elsif Inlining_Not_Possible (Subp) then
3754                Applies := True;
3755                return;
3756
3757             --  Here we have a candidate for inlining, but we must exclude
3758             --  derived operations. Otherwise we would end up trying to inline
3759             --  a phantom declaration, and the result would be to drag in a
3760             --  body which has no direct inlining associated with it. That
3761             --  would not only be inefficient but would also result in the
3762             --  backend doing cross-unit inlining in cases where it was
3763             --  definitely inappropriate to do so.
3764
3765             --  However, a simple Comes_From_Source test is insufficient, since
3766             --  we do want to allow inlining of generic instances which also do
3767             --  not come from source. We also need to recognize specs generated
3768             --  by the front-end for bodies that carry the pragma. Finally,
3769             --  predefined operators do not come from source but are not
3770             --  inlineable either.
3771
3772             elsif Is_Generic_Instance (Subp)
3773               or else Nkind (Parent (Parent (Subp))) = N_Subprogram_Declaration
3774             then
3775                null;
3776
3777             elsif not Comes_From_Source (Subp)
3778               and then Scope (Subp) /= Standard_Standard
3779             then
3780                Applies := True;
3781                return;
3782             end if;
3783
3784             --  The referenced entity must either be the enclosing entity, or
3785             --  an entity declared within the current open scope.
3786
3787             if Present (Scope (Subp))
3788               and then Scope (Subp) /= Current_Scope
3789               and then Subp /= Current_Scope
3790             then
3791                Error_Pragma_Arg
3792                  ("argument of% must be entity in current scope", Assoc);
3793                return;
3794             end if;
3795
3796             --  Processing for procedure, operator or function. If subprogram
3797             --  is aliased (as for an instance) indicate that the renamed
3798             --  entity (if declared in the same unit) is inlined.
3799
3800             if Is_Subprogram (Subp) then
3801                while Present (Alias (Inner_Subp)) loop
3802                   Inner_Subp := Alias (Inner_Subp);
3803                end loop;
3804
3805                if In_Same_Source_Unit (Subp, Inner_Subp) then
3806                   Set_Inline_Flags (Inner_Subp);
3807
3808                   Decl := Parent (Parent (Inner_Subp));
3809
3810                   if Nkind (Decl) = N_Subprogram_Declaration
3811                     and then Present (Corresponding_Body (Decl))
3812                   then
3813                      Set_Inline_Flags (Corresponding_Body (Decl));
3814
3815                   elsif Is_Generic_Instance (Subp) then
3816
3817                      --  Indicate that the body needs to be created for
3818                      --  inlining subsequent calls. The instantiation node
3819                      --  follows the declaration of the wrapper package
3820                      --  created for it.
3821
3822                      if Scope (Subp) /= Standard_Standard
3823                        and then
3824                          Need_Subprogram_Instance_Body
3825                           (Next (Unit_Declaration_Node (Scope (Alias (Subp)))),
3826                               Subp)
3827                      then
3828                         null;
3829                      end if;
3830                   end if;
3831                end if;
3832
3833                Applies := True;
3834
3835             --  For a generic subprogram set flag as well, for use at the point
3836             --  of instantiation, to determine whether the body should be
3837             --  generated.
3838
3839             elsif Is_Generic_Subprogram (Subp) then
3840                Set_Inline_Flags (Subp);
3841                Applies := True;
3842
3843             --  Literals are by definition inlined
3844
3845             elsif Kind = E_Enumeration_Literal then
3846                null;
3847
3848             --  Anything else is an error
3849
3850             else
3851                Error_Pragma_Arg
3852                  ("expect subprogram name for pragma%", Assoc);
3853             end if;
3854          end Make_Inline;
3855
3856          ----------------------
3857          -- Set_Inline_Flags --
3858          ----------------------
3859
3860          procedure Set_Inline_Flags (Subp : Entity_Id) is
3861          begin
3862             if Active then
3863                Set_Is_Inlined (Subp, True);
3864             end if;
3865
3866             if not Has_Pragma_Inline (Subp) then
3867                Set_Has_Pragma_Inline (Subp);
3868                Effective := True;
3869             end if;
3870
3871             if Prag_Id = Pragma_Inline_Always then
3872                Set_Has_Pragma_Inline_Always (Subp);
3873             end if;
3874          end Set_Inline_Flags;
3875
3876       --  Start of processing for Process_Inline
3877
3878       begin
3879          Check_No_Identifiers;
3880          Check_At_Least_N_Arguments (1);
3881
3882          if Active then
3883             Inline_Processing_Required := True;
3884          end if;
3885
3886          Assoc := Arg1;
3887          while Present (Assoc) loop
3888             Subp_Id := Expression (Assoc);
3889             Analyze (Subp_Id);
3890             Applies := False;
3891
3892             if Is_Entity_Name (Subp_Id) then
3893                Subp := Entity (Subp_Id);
3894
3895                if Subp = Any_Id then
3896
3897                   --  If previous error, avoid cascaded errors
3898
3899                   Applies := True;
3900                   Effective := True;
3901
3902                else
3903                   Make_Inline (Subp);
3904
3905                   while Present (Homonym (Subp))
3906                     and then Scope (Homonym (Subp)) = Current_Scope
3907                   loop
3908                      Make_Inline (Homonym (Subp));
3909                      Subp := Homonym (Subp);
3910                   end loop;
3911                end if;
3912             end if;
3913
3914             if not Applies then
3915                Error_Pragma_Arg
3916                  ("inappropriate argument for pragma%", Assoc);
3917
3918             elsif not Effective
3919               and then Warn_On_Redundant_Constructs
3920               and then not Suppress_All_Inlining
3921             then
3922                if Inlining_Not_Possible (Subp) then
3923                   Error_Msg_NE
3924                     ("pragma Inline for& is ignored?", N, Entity (Subp_Id));
3925                else
3926                   Error_Msg_NE
3927                     ("pragma Inline for& is redundant?", N, Entity (Subp_Id));
3928                end if;
3929             end if;
3930
3931             Next (Assoc);
3932          end loop;
3933       end Process_Inline;
3934
3935       ----------------------------
3936       -- Process_Interface_Name --
3937       ----------------------------
3938
3939       procedure Process_Interface_Name
3940         (Subprogram_Def : Entity_Id;
3941          Ext_Arg        : Node_Id;
3942          Link_Arg       : Node_Id)
3943       is
3944          Ext_Nam    : Node_Id;
3945          Link_Nam   : Node_Id;
3946          String_Val : String_Id;
3947
3948          procedure Check_Form_Of_Interface_Name
3949            (SN            : Node_Id;
3950             Ext_Name_Case : Boolean);
3951          --  SN is a string literal node for an interface name. This routine
3952          --  performs some minimal checks that the name is reasonable. In
3953          --  particular that no spaces or other obviously incorrect characters
3954          --  appear. This is only a warning, since any characters are allowed.
3955          --  Ext_Name_Case is True for an External_Name, False for a Link_Name.
3956
3957          ----------------------------------
3958          -- Check_Form_Of_Interface_Name --
3959          ----------------------------------
3960
3961          procedure Check_Form_Of_Interface_Name
3962            (SN            : Node_Id;
3963             Ext_Name_Case : Boolean)
3964          is
3965             S  : constant String_Id := Strval (Expr_Value_S (SN));
3966             SL : constant Nat       := String_Length (S);
3967             C  : Char_Code;
3968
3969          begin
3970             if SL = 0 then
3971                Error_Msg_N ("interface name cannot be null string", SN);
3972             end if;
3973
3974             for J in 1 .. SL loop
3975                C := Get_String_Char (S, J);
3976
3977                --  Look for dubious character and issue unconditional warning.
3978                --  Definitely dubious if not in character range.
3979
3980                if not In_Character_Range (C)
3981
3982                   --  For all cases except CLI target,
3983                   --  commas, spaces and slashes are dubious (in CLI, we use
3984                   --  commas and backslashes in external names to specify
3985                   --  assembly version and public key, while slashes and spaces
3986                   --  can be used in names to mark nested classes and
3987                   --  valuetypes).
3988
3989                   or else ((not Ext_Name_Case or else VM_Target /= CLI_Target)
3990                              and then (Get_Character (C) = ','
3991                                          or else
3992                                        Get_Character (C) = '\'))
3993                  or else (VM_Target /= CLI_Target
3994                             and then (Get_Character (C) = ' '
3995                                         or else
3996                                       Get_Character (C) = '/'))
3997                then
3998                   Error_Msg
3999                     ("?interface name contains illegal character",
4000                      Sloc (SN) + Source_Ptr (J));
4001                end if;
4002             end loop;
4003          end Check_Form_Of_Interface_Name;
4004
4005       --  Start of processing for Process_Interface_Name
4006
4007       begin
4008          if No (Link_Arg) then
4009             if No (Ext_Arg) then
4010                if VM_Target = CLI_Target
4011                  and then Ekind (Subprogram_Def) = E_Package
4012                  and then Nkind (Parent (Subprogram_Def)) =
4013                                                  N_Package_Specification
4014                  and then Present (Generic_Parent (Parent (Subprogram_Def)))
4015                then
4016                   Set_Interface_Name
4017                      (Subprogram_Def,
4018                       Interface_Name
4019                         (Generic_Parent (Parent (Subprogram_Def))));
4020                end if;
4021
4022                return;
4023
4024             elsif Chars (Ext_Arg) = Name_Link_Name then
4025                Ext_Nam  := Empty;
4026                Link_Nam := Expression (Ext_Arg);
4027
4028             else
4029                Check_Optional_Identifier (Ext_Arg, Name_External_Name);
4030                Ext_Nam  := Expression (Ext_Arg);
4031                Link_Nam := Empty;
4032             end if;
4033
4034          else
4035             Check_Optional_Identifier (Ext_Arg,  Name_External_Name);
4036             Check_Optional_Identifier (Link_Arg, Name_Link_Name);
4037             Ext_Nam  := Expression (Ext_Arg);
4038             Link_Nam := Expression (Link_Arg);
4039          end if;
4040
4041          --  Check expressions for external name and link name are static
4042
4043          if Present (Ext_Nam) then
4044             Check_Arg_Is_Static_Expression (Ext_Nam, Standard_String);
4045             Check_Form_Of_Interface_Name (Ext_Nam, Ext_Name_Case => True);
4046
4047             --  Verify that external name is not the name of a local entity,
4048             --  which would hide the imported one and could lead to run-time
4049             --  surprises. The problem can only arise for entities declared in
4050             --  a package body (otherwise the external name is fully qualified
4051             --  and will not conflict).
4052
4053             declare
4054                Nam : Name_Id;
4055                E   : Entity_Id;
4056                Par : Node_Id;
4057
4058             begin
4059                if Prag_Id = Pragma_Import then
4060                   String_To_Name_Buffer (Strval (Expr_Value_S (Ext_Nam)));
4061                   Nam := Name_Find;
4062                   E   := Entity_Id (Get_Name_Table_Info (Nam));
4063
4064                   if Nam /= Chars (Subprogram_Def)
4065                     and then Present (E)
4066                     and then not Is_Overloadable (E)
4067                     and then Is_Immediately_Visible (E)
4068                     and then not Is_Imported (E)
4069                     and then Ekind (Scope (E)) = E_Package
4070                   then
4071                      Par := Parent (E);
4072                      while Present (Par) loop
4073                         if Nkind (Par) = N_Package_Body then
4074                            Error_Msg_Sloc := Sloc (E);
4075                            Error_Msg_NE
4076                              ("imported entity is hidden by & declared#",
4077                               Ext_Arg, E);
4078                            exit;
4079                         end if;
4080
4081                         Par := Parent (Par);
4082                      end loop;
4083                   end if;
4084                end if;
4085             end;
4086          end if;
4087
4088          if Present (Link_Nam) then
4089             Check_Arg_Is_Static_Expression (Link_Nam, Standard_String);
4090             Check_Form_Of_Interface_Name (Link_Nam, Ext_Name_Case => False);
4091          end if;
4092
4093          --  If there is no link name, just set the external name
4094
4095          if No (Link_Nam) then
4096             Link_Nam := Adjust_External_Name_Case (Expr_Value_S (Ext_Nam));
4097
4098          --  For the Link_Name case, the given literal is preceded by an
4099          --  asterisk, which indicates to GCC that the given name should be
4100          --  taken literally, and in particular that no prepending of
4101          --  underlines should occur, even in systems where this is the
4102          --  normal default.
4103
4104          else
4105             Start_String;
4106
4107             if VM_Target = No_VM then
4108                Store_String_Char (Get_Char_Code ('*'));
4109             end if;
4110
4111             String_Val := Strval (Expr_Value_S (Link_Nam));
4112             Store_String_Chars (String_Val);
4113             Link_Nam :=
4114               Make_String_Literal (Sloc (Link_Nam),
4115                 Strval => End_String);
4116          end if;
4117
4118          Set_Encoded_Interface_Name
4119            (Get_Base_Subprogram (Subprogram_Def), Link_Nam);
4120          Check_Duplicated_Export_Name (Link_Nam);
4121       end Process_Interface_Name;
4122
4123       -----------------------------------------
4124       -- Process_Interrupt_Or_Attach_Handler --
4125       -----------------------------------------
4126
4127       procedure Process_Interrupt_Or_Attach_Handler is
4128          Arg1_X       : constant Node_Id   := Expression (Arg1);
4129          Handler_Proc : constant Entity_Id := Entity (Arg1_X);
4130          Proc_Scope   : constant Entity_Id := Scope (Handler_Proc);
4131
4132       begin
4133          Set_Is_Interrupt_Handler (Handler_Proc);
4134
4135          --  If the pragma is not associated with a handler procedure within a
4136          --  protected type, then it must be for a nonprotected procedure for
4137          --  the AAMP target, in which case we don't associate a representation
4138          --  item with the procedure's scope.
4139
4140          if Ekind (Proc_Scope) = E_Protected_Type then
4141             if Prag_Id = Pragma_Interrupt_Handler
4142                  or else
4143                Prag_Id = Pragma_Attach_Handler
4144             then
4145                Record_Rep_Item (Proc_Scope, N);
4146             end if;
4147          end if;
4148       end Process_Interrupt_Or_Attach_Handler;
4149
4150       --------------------------------------------------
4151       -- Process_Restrictions_Or_Restriction_Warnings --
4152       --------------------------------------------------
4153
4154       --  Note: some of the simple identifier cases were handled in par-prag,
4155       --  but it is harmless (and more straightforward) to simply handle all
4156       --  cases here, even if it means we repeat a bit of work in some cases.
4157
4158       procedure Process_Restrictions_Or_Restriction_Warnings
4159         (Warn : Boolean)
4160       is
4161          Arg   : Node_Id;
4162          R_Id  : Restriction_Id;
4163          Id    : Name_Id;
4164          Expr  : Node_Id;
4165          Val   : Uint;
4166
4167          procedure Check_Unit_Name (N : Node_Id);
4168          --  Checks unit name parameter for No_Dependence. Returns if it has
4169          --  an appropriate form, otherwise raises pragma argument error.
4170
4171          ---------------------
4172          -- Check_Unit_Name --
4173          ---------------------
4174
4175          procedure Check_Unit_Name (N : Node_Id) is
4176          begin
4177             if Nkind (N) = N_Selected_Component then
4178                Check_Unit_Name (Prefix (N));
4179                Check_Unit_Name (Selector_Name (N));
4180
4181             elsif Nkind (N) = N_Identifier then
4182                return;
4183
4184             else
4185                Error_Pragma_Arg
4186                  ("wrong form for unit name for No_Dependence", N);
4187             end if;
4188          end Check_Unit_Name;
4189
4190       --  Start of processing for Process_Restrictions_Or_Restriction_Warnings
4191
4192       begin
4193          Check_Ada_83_Warning;
4194          Check_At_Least_N_Arguments (1);
4195          Check_Valid_Configuration_Pragma;
4196
4197          Arg := Arg1;
4198          while Present (Arg) loop
4199             Id := Chars (Arg);
4200             Expr := Expression (Arg);
4201
4202             --  Case of no restriction identifier present
4203
4204             if Id = No_Name then
4205                if Nkind (Expr) /= N_Identifier then
4206                   Error_Pragma_Arg
4207                     ("invalid form for restriction", Arg);
4208                end if;
4209
4210                R_Id :=
4211                  Get_Restriction_Id
4212                    (Process_Restriction_Synonyms (Expr));
4213
4214                if R_Id not in All_Boolean_Restrictions then
4215                   Error_Msg_Name_1 := Pname;
4216                   Error_Msg_N
4217                     ("invalid restriction identifier&", Get_Pragma_Arg (Arg));
4218
4219                   --  Check for possible misspelling
4220
4221                   for J in Restriction_Id loop
4222                      declare
4223                         Rnm : constant String := Restriction_Id'Image (J);
4224
4225                      begin
4226                         Name_Buffer (1 .. Rnm'Length) := Rnm;
4227                         Name_Len := Rnm'Length;
4228                         Set_Casing (All_Lower_Case);
4229
4230                         if Is_Bad_Spelling_Of (Chars (Expr), Name_Enter) then
4231                            Set_Casing
4232                              (Identifier_Casing (Current_Source_File));
4233                            Error_Msg_String (1 .. Rnm'Length) :=
4234                              Name_Buffer (1 .. Name_Len);
4235                            Error_Msg_Strlen := Rnm'Length;
4236                            Error_Msg_N -- CODEFIX
4237                              ("\possible misspelling of ""~""",
4238                               Get_Pragma_Arg (Arg));
4239                            exit;
4240                         end if;
4241                      end;
4242                   end loop;
4243
4244                   raise Pragma_Exit;
4245                end if;
4246
4247                if Implementation_Restriction (R_Id) then
4248                   Check_Restriction (No_Implementation_Restrictions, Arg);
4249                end if;
4250
4251                --  If this is a warning, then set the warning unless we already
4252                --  have a real restriction active (we never want a warning to
4253                --  override a real restriction).
4254
4255                if Warn then
4256                   if not Restriction_Active (R_Id) then
4257                      Set_Restriction (R_Id, N);
4258                      Restriction_Warnings (R_Id) := True;
4259                   end if;
4260
4261                --  If real restriction case, then set it and make sure that the
4262                --  restriction warning flag is off, since a real restriction
4263                --  always overrides a warning.
4264
4265                else
4266                   Set_Restriction (R_Id, N);
4267                   Restriction_Warnings (R_Id) := False;
4268                end if;
4269
4270                --  A very special case that must be processed here: pragma
4271                --  Restrictions (No_Exceptions) turns off all run-time
4272                --  checking. This is a bit dubious in terms of the formal
4273                --  language definition, but it is what is intended by RM
4274                --  H.4(12). Restriction_Warnings never affects generated code
4275                --  so this is done only in the real restriction case.
4276
4277                if R_Id = No_Exceptions and then not Warn then
4278                   Scope_Suppress := (others => True);
4279                end if;
4280
4281             --  Case of No_Dependence => unit-name. Note that the parser
4282             --  already made the necessary entry in the No_Dependence table.
4283
4284             elsif Id = Name_No_Dependence then
4285                Check_Unit_Name (Expr);
4286
4287             --  All other cases of restriction identifier present
4288
4289             else
4290                R_Id := Get_Restriction_Id (Process_Restriction_Synonyms (Arg));
4291                Analyze_And_Resolve (Expr, Any_Integer);
4292
4293                if R_Id not in All_Parameter_Restrictions then
4294                   Error_Pragma_Arg
4295                     ("invalid restriction parameter identifier", Arg);
4296
4297                elsif not Is_OK_Static_Expression (Expr) then
4298                   Flag_Non_Static_Expr
4299                     ("value must be static expression!", Expr);
4300                   raise Pragma_Exit;
4301
4302                elsif not Is_Integer_Type (Etype (Expr))
4303                  or else Expr_Value (Expr) < 0
4304                then
4305                   Error_Pragma_Arg
4306                     ("value must be non-negative integer", Arg);
4307                end if;
4308
4309                --  Restriction pragma is active
4310
4311                Val := Expr_Value (Expr);
4312
4313                if not UI_Is_In_Int_Range (Val) then
4314                   Error_Pragma_Arg
4315                     ("pragma ignored, value too large?", Arg);
4316                end if;
4317
4318                --  Warning case. If the real restriction is active, then we
4319                --  ignore the request, since warning never overrides a real
4320                --  restriction. Otherwise we set the proper warning. Note that
4321                --  this circuit sets the warning again if it is already set,
4322                --  which is what we want, since the constant may have changed.
4323
4324                if Warn then
4325                   if not Restriction_Active (R_Id) then
4326                      Set_Restriction
4327                        (R_Id, N, Integer (UI_To_Int (Val)));
4328                      Restriction_Warnings (R_Id) := True;
4329                   end if;
4330
4331                --  Real restriction case, set restriction and make sure warning
4332                --  flag is off since real restriction always overrides warning.
4333
4334                else
4335                   Set_Restriction (R_Id, N, Integer (UI_To_Int (Val)));
4336                   Restriction_Warnings (R_Id) := False;
4337                end if;
4338             end if;
4339
4340             Next (Arg);
4341          end loop;
4342       end Process_Restrictions_Or_Restriction_Warnings;
4343
4344       ---------------------------------
4345       -- Process_Suppress_Unsuppress --
4346       ---------------------------------
4347
4348       --  Note: this procedure makes entries in the check suppress data
4349       --  structures managed by Sem. See spec of package Sem for full
4350       --  details on how we handle recording of check suppression.
4351
4352       procedure Process_Suppress_Unsuppress (Suppress_Case : Boolean) is
4353          C    : Check_Id;
4354          E_Id : Node_Id;
4355          E    : Entity_Id;
4356
4357          In_Package_Spec : constant Boolean :=
4358                              Is_Package_Or_Generic_Package (Current_Scope)
4359                                and then not In_Package_Body (Current_Scope);
4360
4361          procedure Suppress_Unsuppress_Echeck (E : Entity_Id; C : Check_Id);
4362          --  Used to suppress a single check on the given entity
4363
4364          --------------------------------
4365          -- Suppress_Unsuppress_Echeck --
4366          --------------------------------
4367
4368          procedure Suppress_Unsuppress_Echeck (E : Entity_Id; C : Check_Id) is
4369          begin
4370             Set_Checks_May_Be_Suppressed (E);
4371
4372             if In_Package_Spec then
4373                Push_Global_Suppress_Stack_Entry
4374                  (Entity   => E,
4375                   Check    => C,
4376                   Suppress => Suppress_Case);
4377
4378             else
4379                Push_Local_Suppress_Stack_Entry
4380                  (Entity   => E,
4381                   Check    => C,
4382                   Suppress => Suppress_Case);
4383             end if;
4384
4385             --  If this is a first subtype, and the base type is distinct,
4386             --  then also set the suppress flags on the base type.
4387
4388             if Is_First_Subtype (E)
4389               and then Etype (E) /= E
4390             then
4391                Suppress_Unsuppress_Echeck (Etype (E), C);
4392             end if;
4393          end Suppress_Unsuppress_Echeck;
4394
4395       --  Start of processing for Process_Suppress_Unsuppress
4396
4397       begin
4398          --  Suppress/Unsuppress can appear as a configuration pragma, or in a
4399          --  declarative part or a package spec (RM 11.5(5)).
4400
4401          if not Is_Configuration_Pragma then
4402             Check_Is_In_Decl_Part_Or_Package_Spec;
4403          end if;
4404
4405          Check_At_Least_N_Arguments (1);
4406          Check_At_Most_N_Arguments (2);
4407          Check_No_Identifier (Arg1);
4408          Check_Arg_Is_Identifier (Arg1);
4409
4410          C := Get_Check_Id (Chars (Expression (Arg1)));
4411
4412          if C = No_Check_Id then
4413             Error_Pragma_Arg
4414               ("argument of pragma% is not valid check name", Arg1);
4415          end if;
4416
4417          if not Suppress_Case
4418            and then (C = All_Checks or else C = Overflow_Check)
4419          then
4420             Opt.Overflow_Checks_Unsuppressed := True;
4421          end if;
4422
4423          if Arg_Count = 1 then
4424
4425             --  Make an entry in the local scope suppress table. This is the
4426             --  table that directly shows the current value of the scope
4427             --  suppress check for any check id value.
4428
4429             if C = All_Checks then
4430
4431                --  For All_Checks, we set all specific predefined checks with
4432                --  the exception of Elaboration_Check, which is handled
4433                --  specially because of not wanting All_Checks to have the
4434                --  effect of deactivating static elaboration order processing.
4435
4436                for J in Scope_Suppress'Range loop
4437                   if J /= Elaboration_Check then
4438                      Scope_Suppress (J) := Suppress_Case;
4439                   end if;
4440                end loop;
4441
4442             --  If not All_Checks, and predefined check, then set appropriate
4443             --  scope entry. Note that we will set Elaboration_Check if this
4444             --  is explicitly specified.
4445
4446             elsif C in Predefined_Check_Id then
4447                Scope_Suppress (C) := Suppress_Case;
4448             end if;
4449
4450             --  Also make an entry in the Local_Entity_Suppress table
4451
4452             Push_Local_Suppress_Stack_Entry
4453               (Entity   => Empty,
4454                Check    => C,
4455                Suppress => Suppress_Case);
4456
4457          --  Case of two arguments present, where the check is suppressed for
4458          --  a specified entity (given as the second argument of the pragma)
4459
4460          else
4461             Check_Optional_Identifier (Arg2, Name_On);
4462             E_Id := Expression (Arg2);
4463             Analyze (E_Id);
4464
4465             if not Is_Entity_Name (E_Id) then
4466                Error_Pragma_Arg
4467                  ("second argument of pragma% must be entity name", Arg2);
4468             end if;
4469
4470             E := Entity (E_Id);
4471
4472             if E = Any_Id then
4473                return;
4474             end if;
4475
4476             --  Enforce RM 11.5(7) which requires that for a pragma that
4477             --  appears within a package spec, the named entity must be
4478             --  within the package spec. We allow the package name itself
4479             --  to be mentioned since that makes sense, although it is not
4480             --  strictly allowed by 11.5(7).
4481
4482             if In_Package_Spec
4483               and then E /= Current_Scope
4484               and then Scope (E) /= Current_Scope
4485             then
4486                Error_Pragma_Arg
4487                  ("entity in pragma% is not in package spec (RM 11.5(7))",
4488                   Arg2);
4489             end if;
4490
4491             --  Loop through homonyms. As noted below, in the case of a package
4492             --  spec, only homonyms within the package spec are considered.
4493
4494             loop
4495                Suppress_Unsuppress_Echeck (E, C);
4496
4497                if Is_Generic_Instance (E)
4498                  and then Is_Subprogram (E)
4499                  and then Present (Alias (E))
4500                then
4501                   Suppress_Unsuppress_Echeck (Alias (E), C);
4502                end if;
4503
4504                --  Move to next homonym
4505
4506                E := Homonym (E);
4507                exit when No (E);
4508
4509                --  If we are within a package specification, the pragma only
4510                --  applies to homonyms in the same scope.
4511
4512                exit when In_Package_Spec
4513                  and then Scope (E) /= Current_Scope;
4514             end loop;
4515          end if;
4516       end Process_Suppress_Unsuppress;
4517
4518       ------------------
4519       -- Set_Exported --
4520       ------------------
4521
4522       procedure Set_Exported (E : Entity_Id; Arg : Node_Id) is
4523       begin
4524          if Is_Imported (E) then
4525             Error_Pragma_Arg
4526               ("cannot export entity& that was previously imported", Arg);
4527
4528          elsif Present (Address_Clause (E)) then
4529             Error_Pragma_Arg
4530               ("cannot export entity& that has an address clause", Arg);
4531          end if;
4532
4533          Set_Is_Exported (E);
4534
4535          --  Generate a reference for entity explicitly, because the
4536          --  identifier may be overloaded and name resolution will not
4537          --  generate one.
4538
4539          Generate_Reference (E, Arg);
4540
4541          --  Deal with exporting non-library level entity
4542
4543          if not Is_Library_Level_Entity (E) then
4544
4545             --  Not allowed at all for subprograms
4546
4547             if Is_Subprogram (E) then
4548                Error_Pragma_Arg ("local subprogram& cannot be exported", Arg);
4549
4550             --  Otherwise set public and statically allocated
4551
4552             else
4553                Set_Is_Public (E);
4554                Set_Is_Statically_Allocated (E);
4555
4556                --  Warn if the corresponding W flag is set and the pragma comes
4557                --  from source. The latter may not be true e.g. on VMS where we
4558                --  expand export pragmas for exception codes associated with
4559                --  imported or exported exceptions. We do not want to generate
4560                --  a warning for something that the user did not write.
4561
4562                if Warn_On_Export_Import
4563                  and then Comes_From_Source (Arg)
4564                then
4565                   Error_Msg_NE
4566                     ("?& has been made static as a result of Export", Arg, E);
4567                   Error_Msg_N
4568                     ("\this usage is non-standard and non-portable", Arg);
4569                end if;
4570             end if;
4571          end if;
4572
4573          if Warn_On_Export_Import and then Is_Type (E) then
4574             Error_Msg_NE
4575               ("exporting a type has no effect?", Arg, E);
4576          end if;
4577
4578          if Warn_On_Export_Import and Inside_A_Generic then
4579             Error_Msg_NE
4580               ("all instances of& will have the same external name?", Arg, E);
4581          end if;
4582       end Set_Exported;
4583
4584       ----------------------------------------------
4585       -- Set_Extended_Import_Export_External_Name --
4586       ----------------------------------------------
4587
4588       procedure Set_Extended_Import_Export_External_Name
4589         (Internal_Ent : Entity_Id;
4590          Arg_External : Node_Id)
4591       is
4592          Old_Name : constant Node_Id := Interface_Name (Internal_Ent);
4593          New_Name : Node_Id;
4594
4595       begin
4596          if No (Arg_External) then
4597             return;
4598          end if;
4599
4600          Check_Arg_Is_External_Name (Arg_External);
4601
4602          if Nkind (Arg_External) = N_String_Literal then
4603             if String_Length (Strval (Arg_External)) = 0 then
4604                return;
4605             else
4606                New_Name := Adjust_External_Name_Case (Arg_External);
4607             end if;
4608
4609          elsif Nkind (Arg_External) = N_Identifier then
4610             New_Name := Get_Default_External_Name (Arg_External);
4611
4612          --  Check_Arg_Is_External_Name should let through only identifiers and
4613          --  string literals or static string expressions (which are folded to
4614          --  string literals).
4615
4616          else
4617             raise Program_Error;
4618          end if;
4619
4620          --  If we already have an external name set (by a prior normal Import
4621          --  or Export pragma), then the external names must match
4622
4623          if Present (Interface_Name (Internal_Ent)) then
4624             Check_Matching_Internal_Names : declare
4625                S1 : constant String_Id := Strval (Old_Name);
4626                S2 : constant String_Id := Strval (New_Name);
4627
4628                procedure Mismatch;
4629                --  Called if names do not match
4630
4631                --------------
4632                -- Mismatch --
4633                --------------
4634
4635                procedure Mismatch is
4636                begin
4637                   Error_Msg_Sloc := Sloc (Old_Name);
4638                   Error_Pragma_Arg
4639                     ("external name does not match that given #",
4640                      Arg_External);
4641                end Mismatch;
4642
4643             --  Start of processing for Check_Matching_Internal_Names
4644
4645             begin
4646                if String_Length (S1) /= String_Length (S2) then
4647                   Mismatch;
4648
4649                else
4650                   for J in 1 .. String_Length (S1) loop
4651                      if Get_String_Char (S1, J) /= Get_String_Char (S2, J) then
4652                         Mismatch;
4653                      end if;
4654                   end loop;
4655                end if;
4656             end Check_Matching_Internal_Names;
4657
4658          --  Otherwise set the given name
4659
4660          else
4661             Set_Encoded_Interface_Name (Internal_Ent, New_Name);
4662             Check_Duplicated_Export_Name (New_Name);
4663          end if;
4664       end Set_Extended_Import_Export_External_Name;
4665
4666       ------------------
4667       -- Set_Imported --
4668       ------------------
4669
4670       procedure Set_Imported (E : Entity_Id) is
4671       begin
4672          --  Error message if already imported or exported
4673
4674          if Is_Exported (E) or else Is_Imported (E) then
4675             if Is_Exported (E) then
4676                Error_Msg_NE ("entity& was previously exported", N, E);
4677             else
4678                Error_Msg_NE ("entity& was previously imported", N, E);
4679             end if;
4680
4681             Error_Msg_Name_1 := Pname;
4682             Error_Msg_N
4683               ("\(pragma% applies to all previous entities)", N);
4684
4685             Error_Msg_Sloc  := Sloc (E);
4686             Error_Msg_NE ("\import not allowed for& declared#", N, E);
4687
4688          --  Here if not previously imported or exported, OK to import
4689
4690          else
4691             Set_Is_Imported (E);
4692
4693             --  If the entity is an object that is not at the library level,
4694             --  then it is statically allocated. We do not worry about objects
4695             --  with address clauses in this context since they are not really
4696             --  imported in the linker sense.
4697
4698             if Is_Object (E)
4699               and then not Is_Library_Level_Entity (E)
4700               and then No (Address_Clause (E))
4701             then
4702                Set_Is_Statically_Allocated (E);
4703             end if;
4704          end if;
4705       end Set_Imported;
4706
4707       -------------------------
4708       -- Set_Mechanism_Value --
4709       -------------------------
4710
4711       --  Note: the mechanism name has not been analyzed (and cannot indeed be
4712       --  analyzed, since it is semantic nonsense), so we get it in the exact
4713       --  form created by the parser.
4714
4715       procedure Set_Mechanism_Value (Ent : Entity_Id; Mech_Name : Node_Id) is
4716          Class : Node_Id;
4717          Param : Node_Id;
4718          Mech_Name_Id : Name_Id;
4719
4720          procedure Bad_Class;
4721          --  Signal bad descriptor class name
4722
4723          procedure Bad_Mechanism;
4724          --  Signal bad mechanism name
4725
4726          ---------------
4727          -- Bad_Class --
4728          ---------------
4729
4730          procedure Bad_Class is
4731          begin
4732             Error_Pragma_Arg ("unrecognized descriptor class name", Class);
4733          end Bad_Class;
4734
4735          -------------------------
4736          -- Bad_Mechanism_Value --
4737          -------------------------
4738
4739          procedure Bad_Mechanism is
4740          begin
4741             Error_Pragma_Arg ("unrecognized mechanism name", Mech_Name);
4742          end Bad_Mechanism;
4743
4744       --  Start of processing for Set_Mechanism_Value
4745
4746       begin
4747          if Mechanism (Ent) /= Default_Mechanism then
4748             Error_Msg_NE
4749               ("mechanism for & has already been set", Mech_Name, Ent);
4750          end if;
4751
4752          --  MECHANISM_NAME ::= value | reference | descriptor |
4753          --                     short_descriptor
4754
4755          if Nkind (Mech_Name) = N_Identifier then
4756             if Chars (Mech_Name) = Name_Value then
4757                Set_Mechanism (Ent, By_Copy);
4758                return;
4759
4760             elsif Chars (Mech_Name) = Name_Reference then
4761                Set_Mechanism (Ent, By_Reference);
4762                return;
4763
4764             elsif Chars (Mech_Name) = Name_Descriptor then
4765                Check_VMS (Mech_Name);
4766                Set_Mechanism (Ent, By_Descriptor);
4767                return;
4768
4769             elsif Chars (Mech_Name) = Name_Short_Descriptor then
4770                Check_VMS (Mech_Name);
4771                Set_Mechanism (Ent, By_Short_Descriptor);
4772                return;
4773
4774             elsif Chars (Mech_Name) = Name_Copy then
4775                Error_Pragma_Arg
4776                  ("bad mechanism name, Value assumed", Mech_Name);
4777
4778             else
4779                Bad_Mechanism;
4780             end if;
4781
4782          --  MECHANISM_NAME ::= descriptor (CLASS_NAME) |
4783          --                     short_descriptor (CLASS_NAME)
4784          --  CLASS_NAME     ::= ubs | ubsb | uba | s | sb | a | nca
4785
4786          --  Note: this form is parsed as an indexed component
4787
4788          elsif Nkind (Mech_Name) = N_Indexed_Component then
4789
4790             Class := First (Expressions (Mech_Name));
4791
4792             if Nkind (Prefix (Mech_Name)) /= N_Identifier
4793              or else not (Chars (Prefix (Mech_Name)) = Name_Descriptor or else
4794                           Chars (Prefix (Mech_Name)) = Name_Short_Descriptor)
4795              or else Present (Next (Class))
4796             then
4797                Bad_Mechanism;
4798             else
4799                Mech_Name_Id := Chars (Prefix (Mech_Name));
4800             end if;
4801
4802          --  MECHANISM_NAME ::= descriptor (Class => CLASS_NAME) |
4803          --                     short_descriptor (Class => CLASS_NAME)
4804          --  CLASS_NAME     ::= ubs | ubsb | uba | s | sb | a | nca
4805
4806          --  Note: this form is parsed as a function call
4807
4808          elsif Nkind (Mech_Name) = N_Function_Call then
4809
4810             Param := First (Parameter_Associations (Mech_Name));
4811
4812             if Nkind (Name (Mech_Name)) /= N_Identifier
4813               or else not (Chars (Name (Mech_Name)) = Name_Descriptor or else
4814                            Chars (Name (Mech_Name)) = Name_Short_Descriptor)
4815               or else Present (Next (Param))
4816               or else No (Selector_Name (Param))
4817               or else Chars (Selector_Name (Param)) /= Name_Class
4818             then
4819                Bad_Mechanism;
4820             else
4821                Class := Explicit_Actual_Parameter (Param);
4822                Mech_Name_Id := Chars (Name (Mech_Name));
4823             end if;
4824
4825          else
4826             Bad_Mechanism;
4827          end if;
4828
4829          --  Fall through here with Class set to descriptor class name
4830
4831          Check_VMS (Mech_Name);
4832
4833          if Nkind (Class) /= N_Identifier then
4834             Bad_Class;
4835
4836          elsif Mech_Name_Id = Name_Descriptor
4837                and then Chars (Class) = Name_UBS
4838          then
4839             Set_Mechanism (Ent, By_Descriptor_UBS);
4840
4841          elsif Mech_Name_Id = Name_Descriptor
4842                and then Chars (Class) = Name_UBSB
4843          then
4844             Set_Mechanism (Ent, By_Descriptor_UBSB);
4845
4846          elsif Mech_Name_Id = Name_Descriptor
4847                and then Chars (Class) = Name_UBA
4848          then
4849             Set_Mechanism (Ent, By_Descriptor_UBA);
4850
4851          elsif Mech_Name_Id = Name_Descriptor
4852                and then Chars (Class) = Name_S
4853          then
4854             Set_Mechanism (Ent, By_Descriptor_S);
4855
4856          elsif Mech_Name_Id = Name_Descriptor
4857                and then Chars (Class) = Name_SB
4858          then
4859             Set_Mechanism (Ent, By_Descriptor_SB);
4860
4861          elsif Mech_Name_Id = Name_Descriptor
4862                and then Chars (Class) = Name_A
4863          then
4864             Set_Mechanism (Ent, By_Descriptor_A);
4865
4866          elsif Mech_Name_Id = Name_Descriptor
4867                and then Chars (Class) = Name_NCA
4868          then
4869             Set_Mechanism (Ent, By_Descriptor_NCA);
4870
4871          elsif Mech_Name_Id = Name_Short_Descriptor
4872                and then Chars (Class) = Name_UBS
4873          then
4874             Set_Mechanism (Ent, By_Short_Descriptor_UBS);
4875
4876          elsif Mech_Name_Id = Name_Short_Descriptor
4877                and then Chars (Class) = Name_UBSB
4878          then
4879             Set_Mechanism (Ent, By_Short_Descriptor_UBSB);
4880
4881          elsif Mech_Name_Id = Name_Short_Descriptor
4882                and then Chars (Class) = Name_UBA
4883          then
4884             Set_Mechanism (Ent, By_Short_Descriptor_UBA);
4885
4886          elsif Mech_Name_Id = Name_Short_Descriptor
4887                and then Chars (Class) = Name_S
4888          then
4889             Set_Mechanism (Ent, By_Short_Descriptor_S);
4890
4891          elsif Mech_Name_Id = Name_Short_Descriptor
4892                and then Chars (Class) = Name_SB
4893          then
4894             Set_Mechanism (Ent, By_Short_Descriptor_SB);
4895
4896          elsif Mech_Name_Id = Name_Short_Descriptor
4897                and then Chars (Class) = Name_A
4898          then
4899             Set_Mechanism (Ent, By_Short_Descriptor_A);
4900
4901          elsif Mech_Name_Id = Name_Short_Descriptor
4902                and then Chars (Class) = Name_NCA
4903          then
4904             Set_Mechanism (Ent, By_Short_Descriptor_NCA);
4905
4906          else
4907             Bad_Class;
4908          end if;
4909       end Set_Mechanism_Value;
4910
4911       ---------------------------
4912       -- Set_Ravenscar_Profile --
4913       ---------------------------
4914
4915       --  The tasks to be done here are
4916
4917       --    Set required policies
4918
4919       --      pragma Task_Dispatching_Policy (FIFO_Within_Priorities)
4920       --      pragma Locking_Policy (Ceiling_Locking)
4921
4922       --    Set Detect_Blocking mode
4923
4924       --    Set required restrictions (see System.Rident for detailed list)
4925
4926       procedure Set_Ravenscar_Profile (N : Node_Id) is
4927       begin
4928          --  pragma Task_Dispatching_Policy (FIFO_Within_Priorities)
4929
4930          if Task_Dispatching_Policy /= ' '
4931            and then Task_Dispatching_Policy /= 'F'
4932          then
4933             Error_Msg_Sloc := Task_Dispatching_Policy_Sloc;
4934             Error_Pragma ("Profile (Ravenscar) incompatible with policy#");
4935
4936          --  Set the FIFO_Within_Priorities policy, but always preserve
4937          --  System_Location since we like the error message with the run time
4938          --  name.
4939
4940          else
4941             Task_Dispatching_Policy := 'F';
4942
4943             if Task_Dispatching_Policy_Sloc /= System_Location then
4944                Task_Dispatching_Policy_Sloc := Loc;
4945             end if;
4946          end if;
4947
4948          --  pragma Locking_Policy (Ceiling_Locking)
4949
4950          if Locking_Policy /= ' '
4951            and then Locking_Policy /= 'C'
4952          then
4953             Error_Msg_Sloc := Locking_Policy_Sloc;
4954             Error_Pragma ("Profile (Ravenscar) incompatible with policy#");
4955
4956          --  Set the Ceiling_Locking policy, but preserve System_Location since
4957          --  we like the error message with the run time name.
4958
4959          else
4960             Locking_Policy := 'C';
4961
4962             if Locking_Policy_Sloc /= System_Location then
4963                Locking_Policy_Sloc := Loc;
4964             end if;
4965          end if;
4966
4967          --  pragma Detect_Blocking
4968
4969          Detect_Blocking := True;
4970
4971          --  Set the corresponding restrictions
4972
4973          Set_Profile_Restrictions
4974            (Ravenscar, N, Warn => Treat_Restrictions_As_Warnings);
4975       end Set_Ravenscar_Profile;
4976
4977    --  Start of processing for Analyze_Pragma
4978
4979    begin
4980       --  Deal with unrecognized pragma
4981
4982       if not Is_Pragma_Name (Pname) then
4983          if Warn_On_Unrecognized_Pragma then
4984             Error_Msg_Name_1 := Pname;
4985             Error_Msg_N ("?unrecognized pragma%!", Pragma_Identifier (N));
4986
4987             for PN in First_Pragma_Name .. Last_Pragma_Name loop
4988                if Is_Bad_Spelling_Of (Pname, PN) then
4989                   Error_Msg_Name_1 := PN;
4990                   Error_Msg_N -- CODEFIX
4991                     ("\?possible misspelling of %!", Pragma_Identifier (N));
4992                   exit;
4993                end if;
4994             end loop;
4995          end if;
4996
4997          return;
4998       end if;
4999
5000       --  Here to start processing for recognized pragma
5001
5002       Prag_Id := Get_Pragma_Id (Pname);
5003
5004       --  Preset arguments
5005
5006       Arg1 := Empty;
5007       Arg2 := Empty;
5008       Arg3 := Empty;
5009       Arg4 := Empty;
5010
5011       if Present (Pragma_Argument_Associations (N)) then
5012          Arg1 := First (Pragma_Argument_Associations (N));
5013
5014          if Present (Arg1) then
5015             Arg2 := Next (Arg1);
5016
5017             if Present (Arg2) then
5018                Arg3 := Next (Arg2);
5019
5020                if Present (Arg3) then
5021                   Arg4 := Next (Arg3);
5022                end if;
5023             end if;
5024          end if;
5025       end if;
5026
5027       --  Count number of arguments
5028
5029       declare
5030          Arg_Node : Node_Id;
5031       begin
5032          Arg_Count := 0;
5033          Arg_Node := Arg1;
5034          while Present (Arg_Node) loop
5035             Arg_Count := Arg_Count + 1;
5036             Next (Arg_Node);
5037          end loop;
5038       end;
5039
5040       --  An enumeration type defines the pragmas that are supported by the
5041       --  implementation. Get_Pragma_Id (in package Prag) transforms a name
5042       --  into the corresponding enumeration value for the following case.
5043
5044       case Prag_Id is
5045
5046          -----------------
5047          -- Abort_Defer --
5048          -----------------
5049
5050          --  pragma Abort_Defer;
5051
5052          when Pragma_Abort_Defer =>
5053             GNAT_Pragma;
5054             Check_Arg_Count (0);
5055
5056             --  The only required semantic processing is to check the
5057             --  placement. This pragma must appear at the start of the
5058             --  statement sequence of a handled sequence of statements.
5059
5060             if Nkind (Parent (N)) /= N_Handled_Sequence_Of_Statements
5061               or else N /= First (Statements (Parent (N)))
5062             then
5063                Pragma_Misplaced;
5064             end if;
5065
5066          ------------
5067          -- Ada_83 --
5068          ------------
5069
5070          --  pragma Ada_83;
5071
5072          --  Note: this pragma also has some specific processing in Par.Prag
5073          --  because we want to set the Ada version mode during parsing.
5074
5075          when Pragma_Ada_83 =>
5076             GNAT_Pragma;
5077             Check_Arg_Count (0);
5078
5079             --  We really should check unconditionally for proper configuration
5080             --  pragma placement, since we really don't want mixed Ada modes
5081             --  within a single unit, and the GNAT reference manual has always
5082             --  said this was a configuration pragma, but we did not check and
5083             --  are hesitant to add the check now.
5084
5085             --  However, we really cannot tolerate mixing Ada 2005 with Ada 83
5086             --  or Ada 95, so we must check if we are in Ada 2005 mode.
5087
5088             if Ada_Version >= Ada_05 then
5089                Check_Valid_Configuration_Pragma;
5090             end if;
5091
5092             --  Now set Ada 83 mode
5093
5094             Ada_Version := Ada_83;
5095             Ada_Version_Explicit := Ada_Version;
5096
5097          ------------
5098          -- Ada_95 --
5099          ------------
5100
5101          --  pragma Ada_95;
5102
5103          --  Note: this pragma also has some specific processing in Par.Prag
5104          --  because we want to set the Ada 83 version mode during parsing.
5105
5106          when Pragma_Ada_95 =>
5107             GNAT_Pragma;
5108             Check_Arg_Count (0);
5109
5110             --  We really should check unconditionally for proper configuration
5111             --  pragma placement, since we really don't want mixed Ada modes
5112             --  within a single unit, and the GNAT reference manual has always
5113             --  said this was a configuration pragma, but we did not check and
5114             --  are hesitant to add the check now.
5115
5116             --  However, we really cannot tolerate mixing Ada 2005 with Ada 83
5117             --  or Ada 95, so we must check if we are in Ada 2005 mode.
5118
5119             if Ada_Version >= Ada_05 then
5120                Check_Valid_Configuration_Pragma;
5121             end if;
5122
5123             --  Now set Ada 95 mode
5124
5125             Ada_Version := Ada_95;
5126             Ada_Version_Explicit := Ada_Version;
5127
5128          ---------------------
5129          -- Ada_05/Ada_2005 --
5130          ---------------------
5131
5132          --  pragma Ada_05;
5133          --  pragma Ada_05 (LOCAL_NAME);
5134
5135          --  pragma Ada_2005;
5136          --  pragma Ada_2005 (LOCAL_NAME):
5137
5138          --  Note: these pragma also have some specific processing in Par.Prag
5139          --  because we want to set the Ada 2005 version mode during parsing.
5140
5141          when Pragma_Ada_05 | Pragma_Ada_2005 => declare
5142             E_Id : Node_Id;
5143
5144          begin
5145             GNAT_Pragma;
5146
5147             if Arg_Count = 1 then
5148                Check_Arg_Is_Local_Name (Arg1);
5149                E_Id := Expression (Arg1);
5150
5151                if Etype (E_Id) = Any_Type then
5152                   return;
5153                end if;
5154
5155                Set_Is_Ada_2005_Only (Entity (E_Id));
5156
5157             else
5158                Check_Arg_Count (0);
5159
5160                --  For Ada_2005 we unconditionally enforce the documented
5161                --  configuration pragma placement, since we do not want to
5162                --  tolerate mixed modes in a unit involving Ada 2005. That
5163                --  would cause real difficulties for those cases where there
5164                --  are incompatibilities between Ada 95 and Ada 2005.
5165
5166                Check_Valid_Configuration_Pragma;
5167
5168                --  Now set Ada 2005 mode
5169
5170                Ada_Version := Ada_05;
5171                Ada_Version_Explicit := Ada_05;
5172             end if;
5173          end;
5174
5175          ----------------------
5176          -- All_Calls_Remote --
5177          ----------------------
5178
5179          --  pragma All_Calls_Remote [(library_package_NAME)];
5180
5181          when Pragma_All_Calls_Remote => All_Calls_Remote : declare
5182             Lib_Entity : Entity_Id;
5183
5184          begin
5185             Check_Ada_83_Warning;
5186             Check_Valid_Library_Unit_Pragma;
5187
5188             if Nkind (N) = N_Null_Statement then
5189                return;
5190             end if;
5191
5192             Lib_Entity := Find_Lib_Unit_Name;
5193
5194             --  This pragma should only apply to a RCI unit (RM E.2.3(23))
5195
5196             if Present (Lib_Entity)
5197               and then not Debug_Flag_U
5198             then
5199                if not Is_Remote_Call_Interface (Lib_Entity) then
5200                   Error_Pragma ("pragma% only apply to rci unit");
5201
5202                --  Set flag for entity of the library unit
5203
5204                else
5205                   Set_Has_All_Calls_Remote (Lib_Entity);
5206                end if;
5207
5208             end if;
5209          end All_Calls_Remote;
5210
5211          --------------
5212          -- Annotate --
5213          --------------
5214
5215          --  pragma Annotate (IDENTIFIER [, IDENTIFIER {, ARG}]);
5216          --  ARG ::= NAME | EXPRESSION
5217
5218          --  The first two arguments are by convention intended to refer to an
5219          --  external tool and a tool-specific function. These arguments are
5220          --  not analyzed.
5221
5222          when Pragma_Annotate => Annotate : begin
5223             GNAT_Pragma;
5224             Check_At_Least_N_Arguments (1);
5225             Check_Arg_Is_Identifier (Arg1);
5226
5227             declare
5228                Arg : Node_Id;
5229                Exp : Node_Id;
5230
5231             begin
5232                --  Second unanalyzed parameter is optional
5233
5234                if No (Arg2) then
5235                   null;
5236                else
5237                   Arg := Next (Arg2);
5238                   while Present (Arg) loop
5239                      Exp := Expression (Arg);
5240                      Analyze (Exp);
5241
5242                      if Is_Entity_Name (Exp) then
5243                         null;
5244
5245                      elsif Nkind (Exp) = N_String_Literal then
5246                         Resolve (Exp, Standard_String);
5247
5248                      elsif Is_Overloaded (Exp) then
5249                            Error_Pragma_Arg
5250                              ("ambiguous argument for pragma%", Exp);
5251
5252                      else
5253                         Resolve (Exp);
5254                      end if;
5255
5256                      Next (Arg);
5257                   end loop;
5258                end if;
5259             end;
5260          end Annotate;
5261
5262          ------------
5263          -- Assert --
5264          ------------
5265
5266          --  pragma Assert ([Check =>] Boolean_EXPRESSION
5267          --                 [, [Message =>] Static_String_EXPRESSION]);
5268
5269          when Pragma_Assert => Assert : declare
5270             Expr : Node_Id;
5271             Newa : List_Id;
5272
5273          begin
5274             Ada_2005_Pragma;
5275             Check_At_Least_N_Arguments (1);
5276             Check_At_Most_N_Arguments (2);
5277             Check_Arg_Order ((Name_Check, Name_Message));
5278             Check_Optional_Identifier (Arg1, Name_Check);
5279
5280             --  We treat pragma Assert as equivalent to:
5281
5282             --    pragma Check (Assertion, condition [, msg]);
5283
5284             --  So rewrite pragma in this manner, and analyze the result
5285
5286             Expr := Get_Pragma_Arg (Arg1);
5287             Newa := New_List (
5288               Make_Pragma_Argument_Association (Loc,
5289                 Expression =>
5290                   Make_Identifier (Loc,
5291                     Chars => Name_Assertion)),
5292
5293               Make_Pragma_Argument_Association (Sloc (Expr),
5294                 Expression => Expr));
5295
5296             if Arg_Count > 1 then
5297                Check_Optional_Identifier (Arg2, Name_Message);
5298                Analyze_And_Resolve (Get_Pragma_Arg (Arg2), Standard_String);
5299                Append_To (Newa, Relocate_Node (Arg2));
5300             end if;
5301
5302             Rewrite (N,
5303               Make_Pragma (Loc,
5304                 Chars => Name_Check,
5305                 Pragma_Argument_Associations => Newa));
5306             Analyze (N);
5307          end Assert;
5308
5309          ----------------------
5310          -- Assertion_Policy --
5311          ----------------------
5312
5313          --  pragma Assertion_Policy (Check | Ignore)
5314
5315          when Pragma_Assertion_Policy => Assertion_Policy : declare
5316             Policy : Node_Id;
5317
5318          begin
5319             Ada_2005_Pragma;
5320             Check_Valid_Configuration_Pragma;
5321             Check_Arg_Count (1);
5322             Check_No_Identifiers;
5323             Check_Arg_Is_One_Of (Arg1, Name_Check, Name_Ignore);
5324
5325             --  We treat pragma Assertion_Policy as equivalent to:
5326
5327             --    pragma Check_Policy (Assertion, policy)
5328
5329             --  So rewrite the pragma in that manner and link on to the chain
5330             --  of Check_Policy pragmas, marking the pragma as analyzed.
5331
5332             Policy := Get_Pragma_Arg (Arg1);
5333
5334             Rewrite (N,
5335               Make_Pragma (Loc,
5336                 Chars => Name_Check_Policy,
5337
5338                 Pragma_Argument_Associations => New_List (
5339                   Make_Pragma_Argument_Association (Loc,
5340                     Expression =>
5341                       Make_Identifier (Loc,
5342                         Chars => Name_Assertion)),
5343
5344                   Make_Pragma_Argument_Association (Loc,
5345                     Expression =>
5346                       Make_Identifier (Sloc (Policy),
5347                         Chars => Chars (Policy))))));
5348
5349             Set_Analyzed (N);
5350             Set_Next_Pragma (N, Opt.Check_Policy_List);
5351             Opt.Check_Policy_List := N;
5352          end Assertion_Policy;
5353
5354          ------------------------------
5355          -- Assume_No_Invalid_Values --
5356          ------------------------------
5357
5358          --  pragma Assume_No_Invalid_Values (On | Off);
5359
5360          when Pragma_Assume_No_Invalid_Values =>
5361             GNAT_Pragma;
5362             Check_Valid_Configuration_Pragma;
5363             Check_Arg_Count (1);
5364             Check_No_Identifiers;
5365             Check_Arg_Is_One_Of (Arg1, Name_On, Name_Off);
5366
5367             if Chars (Expression (Arg1)) = Name_On then
5368                Assume_No_Invalid_Values := True;
5369             else
5370                Assume_No_Invalid_Values := False;
5371             end if;
5372
5373          ---------------
5374          -- AST_Entry --
5375          ---------------
5376
5377          --  pragma AST_Entry (entry_IDENTIFIER);
5378
5379          when Pragma_AST_Entry => AST_Entry : declare
5380             Ent : Node_Id;
5381
5382          begin
5383             GNAT_Pragma;
5384             Check_VMS (N);
5385             Check_Arg_Count (1);
5386             Check_No_Identifiers;
5387             Check_Arg_Is_Local_Name (Arg1);
5388             Ent := Entity (Expression (Arg1));
5389
5390             --  Note: the implementation of the AST_Entry pragma could handle
5391             --  the entry family case fine, but for now we are consistent with
5392             --  the DEC rules, and do not allow the pragma, which of course
5393             --  has the effect of also forbidding the attribute.
5394
5395             if Ekind (Ent) /= E_Entry then
5396                Error_Pragma_Arg
5397                  ("pragma% argument must be simple entry name", Arg1);
5398
5399             elsif Is_AST_Entry (Ent) then
5400                Error_Pragma_Arg
5401                  ("duplicate % pragma for entry", Arg1);
5402
5403             elsif Has_Homonym (Ent) then
5404                Error_Pragma_Arg
5405                  ("pragma% argument cannot specify overloaded entry", Arg1);
5406
5407             else
5408                declare
5409                   FF : constant Entity_Id := First_Formal (Ent);
5410
5411                begin
5412                   if Present (FF) then
5413                      if Present (Next_Formal (FF)) then
5414                         Error_Pragma_Arg
5415                           ("entry for pragma% can have only one argument",
5416                            Arg1);
5417
5418                      elsif Parameter_Mode (FF) /= E_In_Parameter then
5419                         Error_Pragma_Arg
5420                           ("entry parameter for pragma% must have mode IN",
5421                            Arg1);
5422                      end if;
5423                   end if;
5424                end;
5425
5426                Set_Is_AST_Entry (Ent);
5427             end if;
5428          end AST_Entry;
5429
5430          ------------------
5431          -- Asynchronous --
5432          ------------------
5433
5434          --  pragma Asynchronous (LOCAL_NAME);
5435
5436          when Pragma_Asynchronous => Asynchronous : declare
5437             Nm     : Entity_Id;
5438             C_Ent  : Entity_Id;
5439             L      : List_Id;
5440             S      : Node_Id;
5441             N      : Node_Id;
5442             Formal : Entity_Id;
5443
5444             procedure Process_Async_Pragma;
5445             --  Common processing for procedure and access-to-procedure case
5446
5447             --------------------------
5448             -- Process_Async_Pragma --
5449             --------------------------
5450
5451             procedure Process_Async_Pragma is
5452             begin
5453                if No (L) then
5454                   Set_Is_Asynchronous (Nm);
5455                   return;
5456                end if;
5457
5458                --  The formals should be of mode IN (RM E.4.1(6))
5459
5460                S := First (L);
5461                while Present (S) loop
5462                   Formal := Defining_Identifier (S);
5463
5464                   if Nkind (Formal) = N_Defining_Identifier
5465                     and then Ekind (Formal) /= E_In_Parameter
5466                   then
5467                      Error_Pragma_Arg
5468                        ("pragma% procedure can only have IN parameter",
5469                         Arg1);
5470                   end if;
5471
5472                   Next (S);
5473                end loop;
5474
5475                Set_Is_Asynchronous (Nm);
5476             end Process_Async_Pragma;
5477
5478          --  Start of processing for pragma Asynchronous
5479
5480          begin
5481             Check_Ada_83_Warning;
5482             Check_No_Identifiers;
5483             Check_Arg_Count (1);
5484             Check_Arg_Is_Local_Name (Arg1);
5485
5486             if Debug_Flag_U then
5487                return;
5488             end if;
5489
5490             C_Ent := Cunit_Entity (Current_Sem_Unit);
5491             Analyze (Expression (Arg1));
5492             Nm := Entity (Expression (Arg1));
5493
5494             if not Is_Remote_Call_Interface (C_Ent)
5495               and then not Is_Remote_Types (C_Ent)
5496             then
5497                --  This pragma should only appear in an RCI or Remote Types
5498                --  unit (RM E.4.1(4)).
5499
5500                Error_Pragma
5501                  ("pragma% not in Remote_Call_Interface or " &
5502                   "Remote_Types unit");
5503             end if;
5504
5505             if Ekind (Nm) = E_Procedure
5506               and then Nkind (Parent (Nm)) = N_Procedure_Specification
5507             then
5508                if not Is_Remote_Call_Interface (Nm) then
5509                   Error_Pragma_Arg
5510                     ("pragma% cannot be applied on non-remote procedure",
5511                      Arg1);
5512                end if;
5513
5514                L := Parameter_Specifications (Parent (Nm));
5515                Process_Async_Pragma;
5516                return;
5517
5518             elsif Ekind (Nm) = E_Function then
5519                Error_Pragma_Arg
5520                  ("pragma% cannot be applied to function", Arg1);
5521
5522             elsif Is_Remote_Access_To_Subprogram_Type (Nm) then
5523
5524                   if Is_Record_Type (Nm) then
5525
5526                   --  A record type that is the Equivalent_Type for a remote
5527                   --  access-to-subprogram type.
5528
5529                      N := Declaration_Node (Corresponding_Remote_Type (Nm));
5530
5531                   else
5532                      --  A non-expanded RAS type (distribution is not enabled)
5533
5534                      N := Declaration_Node (Nm);
5535                   end if;
5536
5537                if Nkind (N) = N_Full_Type_Declaration
5538                  and then Nkind (Type_Definition (N)) =
5539                                      N_Access_Procedure_Definition
5540                then
5541                   L := Parameter_Specifications (Type_Definition (N));
5542                   Process_Async_Pragma;
5543
5544                   if Is_Asynchronous (Nm)
5545                     and then Expander_Active
5546                     and then Get_PCS_Name /= Name_No_DSA
5547                   then
5548                      RACW_Type_Is_Asynchronous (Underlying_RACW_Type (Nm));
5549                   end if;
5550
5551                else
5552                   Error_Pragma_Arg
5553                     ("pragma% cannot reference access-to-function type",
5554                     Arg1);
5555                end if;
5556
5557             --  Only other possibility is Access-to-class-wide type
5558
5559             elsif Is_Access_Type (Nm)
5560               and then Is_Class_Wide_Type (Designated_Type (Nm))
5561             then
5562                Check_First_Subtype (Arg1);
5563                Set_Is_Asynchronous (Nm);
5564                if Expander_Active then
5565                   RACW_Type_Is_Asynchronous (Nm);
5566                end if;
5567
5568             else
5569                Error_Pragma_Arg ("inappropriate argument for pragma%", Arg1);
5570             end if;
5571          end Asynchronous;
5572
5573          ------------
5574          -- Atomic --
5575          ------------
5576
5577          --  pragma Atomic (LOCAL_NAME);
5578
5579          when Pragma_Atomic =>
5580             Process_Atomic_Shared_Volatile;
5581
5582          -----------------------
5583          -- Atomic_Components --
5584          -----------------------
5585
5586          --  pragma Atomic_Components (array_LOCAL_NAME);
5587
5588          --  This processing is shared by Volatile_Components
5589
5590          when Pragma_Atomic_Components   |
5591               Pragma_Volatile_Components =>
5592
5593          Atomic_Components : declare
5594             E_Id : Node_Id;
5595             E    : Entity_Id;
5596             D    : Node_Id;
5597             K    : Node_Kind;
5598
5599          begin
5600             Check_Ada_83_Warning;
5601             Check_No_Identifiers;
5602             Check_Arg_Count (1);
5603             Check_Arg_Is_Local_Name (Arg1);
5604             E_Id := Expression (Arg1);
5605
5606             if Etype (E_Id) = Any_Type then
5607                return;
5608             end if;
5609
5610             E := Entity (E_Id);
5611
5612             if Rep_Item_Too_Early (E, N)
5613                  or else
5614                Rep_Item_Too_Late (E, N)
5615             then
5616                return;
5617             end if;
5618
5619             D := Declaration_Node (E);
5620             K := Nkind (D);
5621
5622             if (K = N_Full_Type_Declaration and then Is_Array_Type (E))
5623               or else
5624                 ((Ekind (E) = E_Constant or else Ekind (E) = E_Variable)
5625                    and then Nkind (D) = N_Object_Declaration
5626                    and then Nkind (Object_Definition (D)) =
5627                                        N_Constrained_Array_Definition)
5628             then
5629                --  The flag is set on the object, or on the base type
5630
5631                if Nkind (D) /= N_Object_Declaration then
5632                   E := Base_Type (E);
5633                end if;
5634
5635                Set_Has_Volatile_Components (E);
5636
5637                if Prag_Id = Pragma_Atomic_Components then
5638                   Set_Has_Atomic_Components (E);
5639
5640                   if Is_Packed (E) then
5641                      Set_Is_Packed (E, False);
5642
5643                      Error_Pragma_Arg
5644                        ("?Pack canceled, cannot pack atomic components",
5645                         Arg1);
5646                   end if;
5647                end if;
5648
5649             else
5650                Error_Pragma_Arg ("inappropriate entity for pragma%", Arg1);
5651             end if;
5652          end Atomic_Components;
5653
5654          --------------------
5655          -- Attach_Handler --
5656          --------------------
5657
5658          --  pragma Attach_Handler (handler_NAME, EXPRESSION);
5659
5660          when Pragma_Attach_Handler =>
5661             Check_Ada_83_Warning;
5662             Check_No_Identifiers;
5663             Check_Arg_Count (2);
5664
5665             if No_Run_Time_Mode then
5666                Error_Msg_CRT ("Attach_Handler pragma", N);
5667             else
5668                Check_Interrupt_Or_Attach_Handler;
5669
5670                --  The expression that designates the attribute may
5671                --  depend on a discriminant, and is therefore a per-
5672                --  object expression, to be expanded in the init proc.
5673                --  If expansion is enabled, perform semantic checks
5674                --  on a copy only.
5675
5676                if Expander_Active then
5677                   declare
5678                      Temp : constant Node_Id :=
5679                               New_Copy_Tree (Expression (Arg2));
5680                   begin
5681                      Set_Parent (Temp, N);
5682                      Preanalyze_And_Resolve (Temp, RTE (RE_Interrupt_ID));
5683                   end;
5684
5685                else
5686                   Analyze (Expression (Arg2));
5687                   Resolve (Expression (Arg2), RTE (RE_Interrupt_ID));
5688                end if;
5689
5690                Process_Interrupt_Or_Attach_Handler;
5691             end if;
5692
5693          --------------------
5694          -- C_Pass_By_Copy --
5695          --------------------
5696
5697          --  pragma C_Pass_By_Copy ([Max_Size =>] static_integer_EXPRESSION);
5698
5699          when Pragma_C_Pass_By_Copy => C_Pass_By_Copy : declare
5700             Arg : Node_Id;
5701             Val : Uint;
5702
5703          begin
5704             GNAT_Pragma;
5705             Check_Valid_Configuration_Pragma;
5706             Check_Arg_Count (1);
5707             Check_Optional_Identifier (Arg1, "max_size");
5708
5709             Arg := Expression (Arg1);
5710             Check_Arg_Is_Static_Expression (Arg, Any_Integer);
5711
5712             Val := Expr_Value (Arg);
5713
5714             if Val <= 0 then
5715                Error_Pragma_Arg
5716                  ("maximum size for pragma% must be positive", Arg1);
5717
5718             elsif UI_Is_In_Int_Range (Val) then
5719                Default_C_Record_Mechanism := UI_To_Int (Val);
5720
5721             --  If a giant value is given, Int'Last will do well enough.
5722             --  If sometime someone complains that a record larger than
5723             --  two gigabytes is not copied, we will worry about it then!
5724
5725             else
5726                Default_C_Record_Mechanism := Mechanism_Type'Last;
5727             end if;
5728          end C_Pass_By_Copy;
5729
5730          -----------
5731          -- Check --
5732          -----------
5733
5734          --  pragma Check ([Name    =>] Identifier,
5735          --                [Check   =>] Boolean_Expression
5736          --              [,[Message =>] String_Expression]);
5737
5738          when Pragma_Check => Check : declare
5739             Expr : Node_Id;
5740             Eloc : Source_Ptr;
5741
5742             Check_On : Boolean;
5743             --  Set True if category of assertions referenced by Name enabled
5744
5745          begin
5746             GNAT_Pragma;
5747             Check_At_Least_N_Arguments (2);
5748             Check_At_Most_N_Arguments (3);
5749             Check_Optional_Identifier (Arg1, Name_Name);
5750             Check_Optional_Identifier (Arg2, Name_Check);
5751
5752             if Arg_Count = 3 then
5753                Check_Optional_Identifier (Arg3, Name_Message);
5754                Analyze_And_Resolve (Get_Pragma_Arg (Arg3), Standard_String);
5755             end if;
5756
5757             Check_Arg_Is_Identifier (Arg1);
5758             Check_On := Check_Enabled (Chars (Get_Pragma_Arg (Arg1)));
5759
5760             --  If expansion is active and the check is not enabled then we
5761             --  rewrite the Check as:
5762
5763             --    if False and then condition then
5764             --       null;
5765             --    end if;
5766
5767             --  The reason we do this rewriting during semantic analysis rather
5768             --  than as part of normal expansion is that we cannot analyze and
5769             --  expand the code for the boolean expression directly, or it may
5770             --  cause insertion of actions that would escape the attempt to
5771             --  suppress the check code.
5772
5773             --  Note that the Sloc for the if statement corresponds to the
5774             --  argument condition, not the pragma itself. The reason for this
5775             --  is that we may generate a warning if the condition is False at
5776             --  compile time, and we do not want to delete this warning when we
5777             --  delete the if statement.
5778
5779             Expr := Expression (Arg2);
5780
5781             if Expander_Active and then not Check_On then
5782                Eloc := Sloc (Expr);
5783
5784                Rewrite (N,
5785                  Make_If_Statement (Eloc,
5786                    Condition =>
5787                      Make_And_Then (Eloc,
5788                        Left_Opnd  => New_Occurrence_Of (Standard_False, Eloc),
5789                        Right_Opnd => Expr),
5790                    Then_Statements => New_List (
5791                      Make_Null_Statement (Eloc))));
5792
5793                Analyze (N);
5794
5795             --  Check is active
5796
5797             else
5798                Analyze_And_Resolve (Expr, Any_Boolean);
5799             end if;
5800          end Check;
5801
5802          ----------------
5803          -- Check_Name --
5804          ----------------
5805
5806          --  pragma Check_Name (check_IDENTIFIER);
5807
5808          when Pragma_Check_Name =>
5809             Check_No_Identifiers;
5810             GNAT_Pragma;
5811             Check_Valid_Configuration_Pragma;
5812             Check_Arg_Count (1);
5813             Check_Arg_Is_Identifier (Arg1);
5814
5815             declare
5816                Nam : constant Name_Id := Chars (Expression (Arg1));
5817
5818             begin
5819                for J in Check_Names.First .. Check_Names.Last loop
5820                   if Check_Names.Table (J) = Nam then
5821                      return;
5822                   end if;
5823                end loop;
5824
5825                Check_Names.Append (Nam);
5826             end;
5827
5828          ------------------
5829          -- Check_Policy --
5830          ------------------
5831
5832          --  pragma Check_Policy (
5833          --    [Name   =>] IDENTIFIER,
5834          --    [Policy =>] POLICY_IDENTIFIER);
5835
5836          --  POLICY_IDENTIFIER ::= ON | OFF | CHECK | IGNORE
5837
5838          --  Note: this is a configuration pragma, but it is allowed to appear
5839          --  anywhere else.
5840
5841          when Pragma_Check_Policy =>
5842             GNAT_Pragma;
5843             Check_Arg_Count (2);
5844             Check_Optional_Identifier (Arg1, Name_Name);
5845             Check_Optional_Identifier (Arg2, Name_Policy);
5846             Check_Arg_Is_One_Of
5847               (Arg2, Name_On, Name_Off, Name_Check, Name_Ignore);
5848
5849             --  A Check_Policy pragma can appear either as a configuration
5850             --  pragma, or in a declarative part or a package spec (see RM
5851             --  11.5(5) for rules for Suppress/Unsuppress which are also
5852             --  followed for Check_Policy).
5853
5854             if not Is_Configuration_Pragma then
5855                Check_Is_In_Decl_Part_Or_Package_Spec;
5856             end if;
5857
5858             Set_Next_Pragma (N, Opt.Check_Policy_List);
5859             Opt.Check_Policy_List := N;
5860
5861          ---------------------
5862          -- CIL_Constructor --
5863          ---------------------
5864
5865          --  pragma CIL_Constructor ([Entity =>] LOCAL_NAME);
5866
5867          --  Processing for this pragma is shared with Java_Constructor
5868
5869          -------------
5870          -- Comment --
5871          -------------
5872
5873          --  pragma Comment (static_string_EXPRESSION)
5874
5875          --  Processing for pragma Comment shares the circuitry for pragma
5876          --  Ident. The only differences are that Ident enforces a limit of 31
5877          --  characters on its argument, and also enforces limitations on
5878          --  placement for DEC compatibility. Pragma Comment shares neither of
5879          --  these restrictions.
5880
5881          -------------------
5882          -- Common_Object --
5883          -------------------
5884
5885          --  pragma Common_Object (
5886          --        [Internal =>] LOCAL_NAME
5887          --     [, [External =>] EXTERNAL_SYMBOL]
5888          --     [, [Size     =>] EXTERNAL_SYMBOL]);
5889
5890          --  Processing for this pragma is shared with Psect_Object
5891
5892          ------------------------
5893          -- Compile_Time_Error --
5894          ------------------------
5895
5896          --  pragma Compile_Time_Error
5897          --    (boolean_EXPRESSION, static_string_EXPRESSION);
5898
5899          when Pragma_Compile_Time_Error =>
5900             GNAT_Pragma;
5901             Process_Compile_Time_Warning_Or_Error;
5902
5903          --------------------------
5904          -- Compile_Time_Warning --
5905          --------------------------
5906
5907          --  pragma Compile_Time_Warning
5908          --    (boolean_EXPRESSION, static_string_EXPRESSION);
5909
5910          when Pragma_Compile_Time_Warning =>
5911             GNAT_Pragma;
5912             Process_Compile_Time_Warning_Or_Error;
5913
5914          -------------------
5915          -- Compiler_Unit --
5916          -------------------
5917
5918          when Pragma_Compiler_Unit =>
5919             GNAT_Pragma;
5920             Check_Arg_Count (0);
5921             Set_Is_Compiler_Unit (Get_Source_Unit (N));
5922
5923          -----------------------------
5924          -- Complete_Representation --
5925          -----------------------------
5926
5927          --  pragma Complete_Representation;
5928
5929          when Pragma_Complete_Representation =>
5930             GNAT_Pragma;
5931             Check_Arg_Count (0);
5932
5933             if Nkind (Parent (N)) /= N_Record_Representation_Clause then
5934                Error_Pragma
5935                  ("pragma & must appear within record representation clause");
5936             end if;
5937
5938          ----------------------------
5939          -- Complex_Representation --
5940          ----------------------------
5941
5942          --  pragma Complex_Representation ([Entity =>] LOCAL_NAME);
5943
5944          when Pragma_Complex_Representation => Complex_Representation : declare
5945             E_Id : Entity_Id;
5946             E    : Entity_Id;
5947             Ent  : Entity_Id;
5948
5949          begin
5950             GNAT_Pragma;
5951             Check_Arg_Count (1);
5952             Check_Optional_Identifier (Arg1, Name_Entity);
5953             Check_Arg_Is_Local_Name (Arg1);
5954             E_Id := Expression (Arg1);
5955
5956             if Etype (E_Id) = Any_Type then
5957                return;
5958             end if;
5959
5960             E := Entity (E_Id);
5961
5962             if not Is_Record_Type (E) then
5963                Error_Pragma_Arg
5964                  ("argument for pragma% must be record type", Arg1);
5965             end if;
5966
5967             Ent := First_Entity (E);
5968
5969             if No (Ent)
5970               or else No (Next_Entity (Ent))
5971               or else Present (Next_Entity (Next_Entity (Ent)))
5972               or else not Is_Floating_Point_Type (Etype (Ent))
5973               or else Etype (Ent) /= Etype (Next_Entity (Ent))
5974             then
5975                Error_Pragma_Arg
5976                  ("record for pragma% must have two fields of the same "
5977                   & "floating-point type", Arg1);
5978
5979             else
5980                Set_Has_Complex_Representation (Base_Type (E));
5981
5982                --  We need to treat the type has having a non-standard
5983                --  representation, for back-end purposes, even though in
5984                --  general a complex will have the default representation
5985                --  of a record with two real components.
5986
5987                Set_Has_Non_Standard_Rep (Base_Type (E));
5988             end if;
5989          end Complex_Representation;
5990
5991          -------------------------
5992          -- Component_Alignment --
5993          -------------------------
5994
5995          --  pragma Component_Alignment (
5996          --        [Form =>] ALIGNMENT_CHOICE
5997          --     [, [Name =>] type_LOCAL_NAME]);
5998          --
5999          --   ALIGNMENT_CHOICE ::=
6000          --     Component_Size
6001          --   | Component_Size_4
6002          --   | Storage_Unit
6003          --   | Default
6004
6005          when Pragma_Component_Alignment => Component_AlignmentP : declare
6006             Args  : Args_List (1 .. 2);
6007             Names : constant Name_List (1 .. 2) := (
6008                       Name_Form,
6009                       Name_Name);
6010
6011             Form  : Node_Id renames Args (1);
6012             Name  : Node_Id renames Args (2);
6013
6014             Atype : Component_Alignment_Kind;
6015             Typ   : Entity_Id;
6016
6017          begin
6018             GNAT_Pragma;
6019             Gather_Associations (Names, Args);
6020
6021             if No (Form) then
6022                Error_Pragma ("missing Form argument for pragma%");
6023             end if;
6024
6025             Check_Arg_Is_Identifier (Form);
6026
6027             --  Get proper alignment, note that Default = Component_Size on all
6028             --  machines we have so far, and we want to set this value rather
6029             --  than the default value to indicate that it has been explicitly
6030             --  set (and thus will not get overridden by the default component
6031             --  alignment for the current scope)
6032
6033             if Chars (Form) = Name_Component_Size then
6034                Atype := Calign_Component_Size;
6035
6036             elsif Chars (Form) = Name_Component_Size_4 then
6037                Atype := Calign_Component_Size_4;
6038
6039             elsif Chars (Form) = Name_Default then
6040                Atype := Calign_Component_Size;
6041
6042             elsif Chars (Form) = Name_Storage_Unit then
6043                Atype := Calign_Storage_Unit;
6044
6045             else
6046                Error_Pragma_Arg
6047                  ("invalid Form parameter for pragma%", Form);
6048             end if;
6049
6050             --  Case with no name, supplied, affects scope table entry
6051
6052             if No (Name) then
6053                Scope_Stack.Table
6054                  (Scope_Stack.Last).Component_Alignment_Default := Atype;
6055
6056             --  Case of name supplied
6057
6058             else
6059                Check_Arg_Is_Local_Name (Name);
6060                Find_Type (Name);
6061                Typ := Entity (Name);
6062
6063                if Typ = Any_Type
6064                  or else Rep_Item_Too_Early (Typ, N)
6065                then
6066                   return;
6067                else
6068                   Typ := Underlying_Type (Typ);
6069                end if;
6070
6071                if not Is_Record_Type (Typ)
6072                  and then not Is_Array_Type (Typ)
6073                then
6074                   Error_Pragma_Arg
6075                     ("Name parameter of pragma% must identify record or " &
6076                      "array type", Name);
6077                end if;
6078
6079                --  An explicit Component_Alignment pragma overrides an
6080                --  implicit pragma Pack, but not an explicit one.
6081
6082                if not Has_Pragma_Pack (Base_Type (Typ)) then
6083                   Set_Is_Packed (Base_Type (Typ), False);
6084                   Set_Component_Alignment (Base_Type (Typ), Atype);
6085                end if;
6086             end if;
6087          end Component_AlignmentP;
6088
6089          ----------------
6090          -- Controlled --
6091          ----------------
6092
6093          --  pragma Controlled (first_subtype_LOCAL_NAME);
6094
6095          when Pragma_Controlled => Controlled : declare
6096             Arg : Node_Id;
6097
6098          begin
6099             Check_No_Identifiers;
6100             Check_Arg_Count (1);
6101             Check_Arg_Is_Local_Name (Arg1);
6102             Arg := Expression (Arg1);
6103
6104             if not Is_Entity_Name (Arg)
6105               or else not Is_Access_Type (Entity (Arg))
6106             then
6107                Error_Pragma_Arg ("pragma% requires access type", Arg1);
6108             else
6109                Set_Has_Pragma_Controlled (Base_Type (Entity (Arg)));
6110             end if;
6111          end Controlled;
6112
6113          ----------------
6114          -- Convention --
6115          ----------------
6116
6117          --  pragma Convention ([Convention =>] convention_IDENTIFIER,
6118          --    [Entity =>] LOCAL_NAME);
6119
6120          when Pragma_Convention => Convention : declare
6121             C : Convention_Id;
6122             E : Entity_Id;
6123             pragma Warnings (Off, C);
6124             pragma Warnings (Off, E);
6125          begin
6126             Check_Arg_Order ((Name_Convention, Name_Entity));
6127             Check_Ada_83_Warning;
6128             Check_Arg_Count (2);
6129             Process_Convention (C, E);
6130          end Convention;
6131
6132          ---------------------------
6133          -- Convention_Identifier --
6134          ---------------------------
6135
6136          --  pragma Convention_Identifier ([Name =>] IDENTIFIER,
6137          --    [Convention =>] convention_IDENTIFIER);
6138
6139          when Pragma_Convention_Identifier => Convention_Identifier : declare
6140             Idnam : Name_Id;
6141             Cname : Name_Id;
6142
6143          begin
6144             GNAT_Pragma;
6145             Check_Arg_Order ((Name_Name, Name_Convention));
6146             Check_Arg_Count (2);
6147             Check_Optional_Identifier (Arg1, Name_Name);
6148             Check_Optional_Identifier (Arg2, Name_Convention);
6149             Check_Arg_Is_Identifier (Arg1);
6150             Check_Arg_Is_Identifier (Arg2);
6151             Idnam := Chars (Expression (Arg1));
6152             Cname := Chars (Expression (Arg2));
6153
6154             if Is_Convention_Name (Cname) then
6155                Record_Convention_Identifier
6156                  (Idnam, Get_Convention_Id (Cname));
6157             else
6158                Error_Pragma_Arg
6159                  ("second arg for % pragma must be convention", Arg2);
6160             end if;
6161          end Convention_Identifier;
6162
6163          ---------------
6164          -- CPP_Class --
6165          ---------------
6166
6167          --  pragma CPP_Class ([Entity =>] local_NAME)
6168
6169          when Pragma_CPP_Class => CPP_Class : declare
6170             Arg : Node_Id;
6171             Typ : Entity_Id;
6172
6173          begin
6174             if Warn_On_Obsolescent_Feature then
6175                Error_Msg_N
6176                  ("'G'N'A'T pragma cpp'_class is now obsolete; replace it" &
6177                   " by pragma import?", N);
6178             end if;
6179
6180             GNAT_Pragma;
6181             Check_Arg_Count (1);
6182             Check_Optional_Identifier (Arg1, Name_Entity);
6183             Check_Arg_Is_Local_Name (Arg1);
6184
6185             Arg := Expression (Arg1);
6186             Analyze (Arg);
6187
6188             if Etype (Arg) = Any_Type then
6189                return;
6190             end if;
6191
6192             if not Is_Entity_Name (Arg)
6193               or else not Is_Type (Entity (Arg))
6194             then
6195                Error_Pragma_Arg ("pragma% requires a type mark", Arg1);
6196             end if;
6197
6198             Typ := Entity (Arg);
6199
6200             if not Is_Tagged_Type (Typ) then
6201                Error_Pragma_Arg ("pragma% applicable to tagged types ", Arg1);
6202             end if;
6203
6204             --  Types treated as CPP classes are treated as limited, but we
6205             --  don't require them to be declared this way. A warning is issued
6206             --  to encourage the user to declare them as limited. This is not
6207             --  an error, for compatibility reasons, because these types have
6208             --  been supported this way for some time.
6209
6210             if not Is_Limited_Type (Typ) then
6211                Error_Msg_N
6212                  ("imported 'C'P'P type should be " &
6213                     "explicitly declared limited?",
6214                   Get_Pragma_Arg (Arg1));
6215                Error_Msg_N
6216                  ("\type will be considered limited",
6217                   Get_Pragma_Arg (Arg1));
6218             end if;
6219
6220             Set_Is_CPP_Class      (Typ);
6221             Set_Is_Limited_Record (Typ);
6222             Set_Convention        (Typ, Convention_CPP);
6223
6224             --  Imported CPP types must not have discriminants (because C++
6225             --  classes do not have discriminants).
6226
6227             if Has_Discriminants (Typ) then
6228                Error_Msg_N
6229                  ("imported 'C'P'P type cannot have discriminants",
6230                   First (Discriminant_Specifications
6231                           (Declaration_Node (Typ))));
6232             end if;
6233
6234             --  Components of imported CPP types must not have default
6235             --  expressions because the constructor (if any) is in the
6236             --  C++ side.
6237
6238             if Is_Incomplete_Or_Private_Type (Typ)
6239               and then No (Underlying_Type (Typ))
6240             then
6241                --  It should be an error to apply pragma CPP to a private
6242                --  type if the underlying type is not visible (as it is
6243                --  for any representation item). For now, for backward
6244                --  compatibility we do nothing but we cannot check components
6245                --  because they are not available at this stage. All this code
6246                --  will be removed when we cleanup this obsolete GNAT pragma???
6247
6248                null;
6249
6250             else
6251                declare
6252                   Tdef  : constant Node_Id :=
6253                             Type_Definition (Declaration_Node (Typ));
6254                   Clist : Node_Id;
6255                   Comp  : Node_Id;
6256
6257                begin
6258                   if Nkind (Tdef) = N_Record_Definition then
6259                      Clist := Component_List (Tdef);
6260                   else
6261                      pragma Assert (Nkind (Tdef) = N_Derived_Type_Definition);
6262                      Clist := Component_List (Record_Extension_Part (Tdef));
6263                   end if;
6264
6265                   if Present (Clist) then
6266                      Comp := First (Component_Items (Clist));
6267                      while Present (Comp) loop
6268                         if Present (Expression (Comp)) then
6269                            Error_Msg_N
6270                              ("component of imported 'C'P'P type cannot have" &
6271                               " default expression", Expression (Comp));
6272                         end if;
6273
6274                         Next (Comp);
6275                      end loop;
6276                   end if;
6277                end;
6278             end if;
6279          end CPP_Class;
6280
6281          ---------------------
6282          -- CPP_Constructor --
6283          ---------------------
6284
6285          --  pragma CPP_Constructor ([Entity =>] LOCAL_NAME
6286          --    [, [External_Name =>] static_string_EXPRESSION ]
6287          --    [, [Link_Name     =>] static_string_EXPRESSION ]);
6288
6289          when Pragma_CPP_Constructor => CPP_Constructor : declare
6290             Elmt    : Elmt_Id;
6291             Id      : Entity_Id;
6292             Def_Id  : Entity_Id;
6293             Tag_Typ : Entity_Id;
6294
6295          begin
6296             GNAT_Pragma;
6297             Check_At_Least_N_Arguments (1);
6298             Check_At_Most_N_Arguments (3);
6299             Check_Optional_Identifier (Arg1, Name_Entity);
6300             Check_Arg_Is_Local_Name (Arg1);
6301
6302             Id := Expression (Arg1);
6303             Find_Program_Unit_Name (Id);
6304
6305             --  If we did not find the name, we are done
6306
6307             if Etype (Id) = Any_Type then
6308                return;
6309             end if;
6310
6311             Def_Id := Entity (Id);
6312
6313             if Ekind (Def_Id) = E_Function
6314               and then (Is_CPP_Class (Etype (Def_Id))
6315                          or else (Is_Class_Wide_Type (Etype (Def_Id))
6316                                    and then
6317                                   Is_CPP_Class (Root_Type (Etype (Def_Id)))))
6318             then
6319                if Arg_Count >= 2 then
6320                   Set_Imported (Def_Id);
6321                   Set_Is_Public (Def_Id);
6322                   Process_Interface_Name (Def_Id, Arg2, Arg3);
6323                end if;
6324
6325                Set_Has_Completion (Def_Id);
6326                Set_Is_Constructor (Def_Id);
6327
6328                --  Imported C++ constructors are not dispatching primitives
6329                --  because in C++ they don't have a dispatch table slot.
6330                --  However, in Ada the constructor has the profile of a
6331                --  function that returns a tagged type and therefore it has
6332                --  been treated as a primitive operation during semantic
6333                --  analysis. We now remove it from the list of primitive
6334                --  operations of the type.
6335
6336                if Is_Tagged_Type (Etype (Def_Id))
6337                  and then not Is_Class_Wide_Type (Etype (Def_Id))
6338                then
6339                   pragma Assert (Is_Dispatching_Operation (Def_Id));
6340                   Tag_Typ := Etype (Def_Id);
6341
6342                   Elmt := First_Elmt (Primitive_Operations (Tag_Typ));
6343                   while Present (Elmt) and then Node (Elmt) /= Def_Id loop
6344                      Next_Elmt (Elmt);
6345                   end loop;
6346
6347                   Remove_Elmt (Primitive_Operations (Tag_Typ), Elmt);
6348                   Set_Is_Dispatching_Operation (Def_Id, False);
6349                end if;
6350
6351                --  For backward compatibility, if the constructor returns a
6352                --  class wide type, and we internally change the return type to
6353                --  the corresponding root type.
6354
6355                if Is_Class_Wide_Type (Etype (Def_Id)) then
6356                   Set_Etype (Def_Id, Root_Type (Etype (Def_Id)));
6357                end if;
6358             else
6359                Error_Pragma_Arg
6360                  ("pragma% requires function returning a 'C'P'P_Class type",
6361                    Arg1);
6362             end if;
6363          end CPP_Constructor;
6364
6365          -----------------
6366          -- CPP_Virtual --
6367          -----------------
6368
6369          when Pragma_CPP_Virtual => CPP_Virtual : declare
6370          begin
6371             GNAT_Pragma;
6372
6373             if Warn_On_Obsolescent_Feature then
6374                Error_Msg_N
6375                  ("'G'N'A'T pragma cpp'_virtual is now obsolete and has " &
6376                   "no effect?", N);
6377             end if;
6378          end CPP_Virtual;
6379
6380          ----------------
6381          -- CPP_Vtable --
6382          ----------------
6383
6384          when Pragma_CPP_Vtable => CPP_Vtable : declare
6385          begin
6386             GNAT_Pragma;
6387
6388             if Warn_On_Obsolescent_Feature then
6389                Error_Msg_N
6390                  ("'G'N'A'T pragma cpp'_vtable is now obsolete and has " &
6391                   "no effect?", N);
6392             end if;
6393          end CPP_Vtable;
6394
6395          -----------
6396          -- Debug --
6397          -----------
6398
6399          --  pragma Debug ([boolean_EXPRESSION,] PROCEDURE_CALL_STATEMENT);
6400
6401          when Pragma_Debug => Debug : declare
6402                Cond : Node_Id;
6403
6404          begin
6405             GNAT_Pragma;
6406
6407             Cond :=
6408               New_Occurrence_Of
6409                 (Boolean_Literals (Debug_Pragmas_Enabled and Expander_Active),
6410                  Loc);
6411
6412             if Arg_Count = 2 then
6413                Cond :=
6414                  Make_And_Then (Loc,
6415                    Left_Opnd   => Relocate_Node (Cond),
6416                    Right_Opnd  => Expression (Arg1));
6417             end if;
6418
6419             --  Rewrite into a conditional with an appropriate condition. We
6420             --  wrap the procedure call in a block so that overhead from e.g.
6421             --  use of the secondary stack does not generate execution overhead
6422             --  for suppressed conditions.
6423
6424             Rewrite (N, Make_Implicit_If_Statement (N,
6425               Condition => Cond,
6426                  Then_Statements => New_List (
6427                    Make_Block_Statement (Loc,
6428                      Handled_Statement_Sequence =>
6429                        Make_Handled_Sequence_Of_Statements (Loc,
6430                          Statements => New_List (
6431                            Relocate_Node (Debug_Statement (N))))))));
6432             Analyze (N);
6433          end Debug;
6434
6435          ------------------
6436          -- Debug_Policy --
6437          ------------------
6438
6439          --  pragma Debug_Policy (Check | Ignore)
6440
6441          when Pragma_Debug_Policy =>
6442             GNAT_Pragma;
6443             Check_Arg_Count (1);
6444             Check_Arg_Is_One_Of (Arg1, Name_Check, Name_Ignore);
6445             Debug_Pragmas_Enabled := Chars (Expression (Arg1)) = Name_Check;
6446
6447          ---------------------
6448          -- Detect_Blocking --
6449          ---------------------
6450
6451          --  pragma Detect_Blocking;
6452
6453          when Pragma_Detect_Blocking =>
6454             Ada_2005_Pragma;
6455             Check_Arg_Count (0);
6456             Check_Valid_Configuration_Pragma;
6457             Detect_Blocking := True;
6458
6459          -------------------
6460          -- Discard_Names --
6461          -------------------
6462
6463          --  pragma Discard_Names [([On =>] LOCAL_NAME)];
6464
6465          when Pragma_Discard_Names => Discard_Names : declare
6466             E    : Entity_Id;
6467             E_Id : Entity_Id;
6468
6469          begin
6470             Check_Ada_83_Warning;
6471
6472             --  Deal with configuration pragma case
6473
6474             if Arg_Count = 0 and then Is_Configuration_Pragma then
6475                Global_Discard_Names := True;
6476                return;
6477
6478             --  Otherwise, check correct appropriate context
6479
6480             else
6481                Check_Is_In_Decl_Part_Or_Package_Spec;
6482
6483                if Arg_Count = 0 then
6484
6485                   --  If there is no parameter, then from now on this pragma
6486                   --  applies to any enumeration, exception or tagged type
6487                   --  defined in the current declarative part, and recursively
6488                   --  to any nested scope.
6489
6490                   Set_Discard_Names (Current_Scope);
6491                   return;
6492
6493                else
6494                   Check_Arg_Count (1);
6495                   Check_Optional_Identifier (Arg1, Name_On);
6496                   Check_Arg_Is_Local_Name (Arg1);
6497
6498                   E_Id := Expression (Arg1);
6499
6500                   if Etype (E_Id) = Any_Type then
6501                      return;
6502                   else
6503                      E := Entity (E_Id);
6504                   end if;
6505
6506                   if (Is_First_Subtype (E)
6507                       and then
6508                         (Is_Enumeration_Type (E) or else Is_Tagged_Type (E)))
6509                     or else Ekind (E) = E_Exception
6510                   then
6511                      Set_Discard_Names (E);
6512                   else
6513                      Error_Pragma_Arg
6514                        ("inappropriate entity for pragma%", Arg1);
6515                   end if;
6516
6517                end if;
6518             end if;
6519          end Discard_Names;
6520
6521          ---------------
6522          -- Elaborate --
6523          ---------------
6524
6525          --  pragma Elaborate (library_unit_NAME {, library_unit_NAME});
6526
6527          when Pragma_Elaborate => Elaborate : declare
6528             Arg   : Node_Id;
6529             Citem : Node_Id;
6530
6531          begin
6532             --  Pragma must be in context items list of a compilation unit
6533
6534             if not Is_In_Context_Clause then
6535                Pragma_Misplaced;
6536             end if;
6537
6538             --  Must be at least one argument
6539
6540             if Arg_Count = 0 then
6541                Error_Pragma ("pragma% requires at least one argument");
6542             end if;
6543
6544             --  In Ada 83 mode, there can be no items following it in the
6545             --  context list except other pragmas and implicit with clauses
6546             --  (e.g. those added by use of Rtsfind). In Ada 95 mode, this
6547             --  placement rule does not apply.
6548
6549             if Ada_Version = Ada_83 and then Comes_From_Source (N) then
6550                Citem := Next (N);
6551                while Present (Citem) loop
6552                   if Nkind (Citem) = N_Pragma
6553                     or else (Nkind (Citem) = N_With_Clause
6554                               and then Implicit_With (Citem))
6555                   then
6556                      null;
6557                   else
6558                      Error_Pragma
6559                        ("(Ada 83) pragma% must be at end of context clause");
6560                   end if;
6561
6562                   Next (Citem);
6563                end loop;
6564             end if;
6565
6566             --  Finally, the arguments must all be units mentioned in a with
6567             --  clause in the same context clause. Note we already checked (in
6568             --  Par.Prag) that the arguments are all identifiers or selected
6569             --  components.
6570
6571             Arg := Arg1;
6572             Outer : while Present (Arg) loop
6573                Citem := First (List_Containing (N));
6574                Inner : while Citem /= N loop
6575                   if Nkind (Citem) = N_With_Clause
6576                     and then Same_Name (Name (Citem), Expression (Arg))
6577                   then
6578                      Set_Elaborate_Present (Citem, True);
6579                      Set_Unit_Name (Expression (Arg), Name (Citem));
6580
6581                      --  With the pragma present, elaboration calls on
6582                      --  subprograms from the named unit need no further
6583                      --  checks, as long as the pragma appears in the current
6584                      --  compilation unit. If the pragma appears in some unit
6585                      --  in the context, there might still be a need for an
6586                      --  Elaborate_All_Desirable from the current compilation
6587                      --  to the named unit, so we keep the check enabled.
6588
6589                      if In_Extended_Main_Source_Unit (N) then
6590                         Set_Suppress_Elaboration_Warnings
6591                           (Entity (Name (Citem)));
6592                      end if;
6593
6594                      exit Inner;
6595                   end if;
6596
6597                   Next (Citem);
6598                end loop Inner;
6599
6600                if Citem = N then
6601                   Error_Pragma_Arg
6602                     ("argument of pragma% is not with'ed unit", Arg);
6603                end if;
6604
6605                Next (Arg);
6606             end loop Outer;
6607
6608             --  Give a warning if operating in static mode with -gnatwl
6609             --  (elaboration warnings enabled) switch set.
6610
6611             if Elab_Warnings and not Dynamic_Elaboration_Checks then
6612                Error_Msg_N
6613                  ("?use of pragma Elaborate may not be safe", N);
6614                Error_Msg_N
6615                  ("?use pragma Elaborate_All instead if possible", N);
6616             end if;
6617          end Elaborate;
6618
6619          -------------------
6620          -- Elaborate_All --
6621          -------------------
6622
6623          --  pragma Elaborate_All (library_unit_NAME {, library_unit_NAME});
6624
6625          when Pragma_Elaborate_All => Elaborate_All : declare
6626             Arg   : Node_Id;
6627             Citem : Node_Id;
6628
6629          begin
6630             Check_Ada_83_Warning;
6631
6632             --  Pragma must be in context items list of a compilation unit
6633
6634             if not Is_In_Context_Clause then
6635                Pragma_Misplaced;
6636             end if;
6637
6638             --  Must be at least one argument
6639
6640             if Arg_Count = 0 then
6641                Error_Pragma ("pragma% requires at least one argument");
6642             end if;
6643
6644             --  Note: unlike pragma Elaborate, pragma Elaborate_All does not
6645             --  have to appear at the end of the context clause, but may
6646             --  appear mixed in with other items, even in Ada 83 mode.
6647
6648             --  Final check: the arguments must all be units mentioned in
6649             --  a with clause in the same context clause. Note that we
6650             --  already checked (in Par.Prag) that all the arguments are
6651             --  either identifiers or selected components.
6652
6653             Arg := Arg1;
6654             Outr : while Present (Arg) loop
6655                Citem := First (List_Containing (N));
6656                Innr : while Citem /= N loop
6657                   if Nkind (Citem) = N_With_Clause
6658                     and then Same_Name (Name (Citem), Expression (Arg))
6659                   then
6660                      Set_Elaborate_All_Present (Citem, True);
6661                      Set_Unit_Name (Expression (Arg), Name (Citem));
6662
6663                      --  Suppress warnings and elaboration checks on the named
6664                      --  unit if the pragma is in the current compilation, as
6665                      --  for pragma Elaborate.
6666
6667                      if In_Extended_Main_Source_Unit (N) then
6668                         Set_Suppress_Elaboration_Warnings
6669                           (Entity (Name (Citem)));
6670                      end if;
6671                      exit Innr;
6672                   end if;
6673
6674                   Next (Citem);
6675                end loop Innr;
6676
6677                if Citem = N then
6678                   Set_Error_Posted (N);
6679                   Error_Pragma_Arg
6680                     ("argument of pragma% is not with'ed unit", Arg);
6681                end if;
6682
6683                Next (Arg);
6684             end loop Outr;
6685          end Elaborate_All;
6686
6687          --------------------
6688          -- Elaborate_Body --
6689          --------------------
6690
6691          --  pragma Elaborate_Body [( library_unit_NAME )];
6692
6693          when Pragma_Elaborate_Body => Elaborate_Body : declare
6694             Cunit_Node : Node_Id;
6695             Cunit_Ent  : Entity_Id;
6696
6697          begin
6698             Check_Ada_83_Warning;
6699             Check_Valid_Library_Unit_Pragma;
6700
6701             if Nkind (N) = N_Null_Statement then
6702                return;
6703             end if;
6704
6705             Cunit_Node := Cunit (Current_Sem_Unit);
6706             Cunit_Ent  := Cunit_Entity (Current_Sem_Unit);
6707
6708             if Nkind_In (Unit (Cunit_Node), N_Package_Body,
6709                                             N_Subprogram_Body)
6710             then
6711                Error_Pragma ("pragma% must refer to a spec, not a body");
6712             else
6713                Set_Body_Required (Cunit_Node, True);
6714                Set_Has_Pragma_Elaborate_Body (Cunit_Ent);
6715
6716                --  If we are in dynamic elaboration mode, then we suppress
6717                --  elaboration warnings for the unit, since it is definitely
6718                --  fine NOT to do dynamic checks at the first level (and such
6719                --  checks will be suppressed because no elaboration boolean
6720                --  is created for Elaborate_Body packages).
6721
6722                --  But in the static model of elaboration, Elaborate_Body is
6723                --  definitely NOT good enough to ensure elaboration safety on
6724                --  its own, since the body may WITH other units that are not
6725                --  safe from an elaboration point of view, so a client must
6726                --  still do an Elaborate_All on such units.
6727
6728                --  Debug flag -gnatdD restores the old behavior of 3.13, where
6729                --  Elaborate_Body always suppressed elab warnings.
6730
6731                if Dynamic_Elaboration_Checks or Debug_Flag_DD then
6732                   Set_Suppress_Elaboration_Warnings (Cunit_Ent);
6733                end if;
6734             end if;
6735          end Elaborate_Body;
6736
6737          ------------------------
6738          -- Elaboration_Checks --
6739          ------------------------
6740
6741          --  pragma Elaboration_Checks (Static | Dynamic);
6742
6743          when Pragma_Elaboration_Checks =>
6744             GNAT_Pragma;
6745             Check_Arg_Count (1);
6746             Check_Arg_Is_One_Of (Arg1, Name_Static, Name_Dynamic);
6747             Dynamic_Elaboration_Checks :=
6748               (Chars (Get_Pragma_Arg (Arg1)) = Name_Dynamic);
6749
6750          ---------------
6751          -- Eliminate --
6752          ---------------
6753
6754          --  pragma Eliminate (
6755          --      [Unit_Name  =>] IDENTIFIER | SELECTED_COMPONENT,
6756          --    [,[Entity     =>] IDENTIFIER |
6757          --                      SELECTED_COMPONENT |
6758          --                      STRING_LITERAL]
6759          --    [,                OVERLOADING_RESOLUTION]);
6760
6761          --  OVERLOADING_RESOLUTION ::= PARAMETER_AND_RESULT_TYPE_PROFILE |
6762          --                             SOURCE_LOCATION
6763
6764          --  PARAMETER_AND_RESULT_TYPE_PROFILE ::= PROCEDURE_PROFILE |
6765          --                                        FUNCTION_PROFILE
6766
6767          --  PROCEDURE_PROFILE ::= Parameter_Types => PARAMETER_TYPES
6768
6769          --  FUNCTION_PROFILE ::= [Parameter_Types => PARAMETER_TYPES,]
6770          --                       Result_Type => result_SUBTYPE_NAME]
6771
6772          --  PARAMETER_TYPES ::= (SUBTYPE_NAME {, SUBTYPE_NAME})
6773          --  SUBTYPE_NAME    ::= STRING_LITERAL
6774
6775          --  SOURCE_LOCATION ::= Source_Location => SOURCE_TRACE
6776          --  SOURCE_TRACE    ::= STRING_LITERAL
6777
6778          when Pragma_Eliminate => Eliminate : declare
6779             Args  : Args_List (1 .. 5);
6780             Names : constant Name_List (1 .. 5) := (
6781                       Name_Unit_Name,
6782                       Name_Entity,
6783                       Name_Parameter_Types,
6784                       Name_Result_Type,
6785                       Name_Source_Location);
6786
6787             Unit_Name       : Node_Id renames Args (1);
6788             Entity          : Node_Id renames Args (2);
6789             Parameter_Types : Node_Id renames Args (3);
6790             Result_Type     : Node_Id renames Args (4);
6791             Source_Location : Node_Id renames Args (5);
6792
6793          begin
6794             GNAT_Pragma;
6795             Check_Valid_Configuration_Pragma;
6796             Gather_Associations (Names, Args);
6797
6798             if No (Unit_Name) then
6799                Error_Pragma ("missing Unit_Name argument for pragma%");
6800             end if;
6801
6802             if No (Entity)
6803               and then (Present (Parameter_Types)
6804                           or else
6805                         Present (Result_Type)
6806                           or else
6807                         Present (Source_Location))
6808             then
6809                Error_Pragma ("missing Entity argument for pragma%");
6810             end if;
6811
6812             if (Present (Parameter_Types)
6813                        or else
6814                 Present (Result_Type))
6815               and then
6816                 Present (Source_Location)
6817             then
6818                Error_Pragma
6819                  ("parameter profile and source location cannot " &
6820                   "be used together in pragma%");
6821             end if;
6822
6823             Process_Eliminate_Pragma
6824               (N,
6825                Unit_Name,
6826                Entity,
6827                Parameter_Types,
6828                Result_Type,
6829                Source_Location);
6830          end Eliminate;
6831
6832          ------------
6833          -- Export --
6834          ------------
6835
6836          --  pragma Export (
6837          --    [   Convention    =>] convention_IDENTIFIER,
6838          --    [   Entity        =>] local_NAME
6839          --    [, [External_Name =>] static_string_EXPRESSION ]
6840          --    [, [Link_Name     =>] static_string_EXPRESSION ]);
6841
6842          when Pragma_Export => Export : declare
6843             C      : Convention_Id;
6844             Def_Id : Entity_Id;
6845
6846             pragma Warnings (Off, C);
6847
6848          begin
6849             Check_Ada_83_Warning;
6850             Check_Arg_Order
6851               ((Name_Convention,
6852                 Name_Entity,
6853                 Name_External_Name,
6854                 Name_Link_Name));
6855             Check_At_Least_N_Arguments (2);
6856             Check_At_Most_N_Arguments  (4);
6857             Process_Convention (C, Def_Id);
6858
6859             if Ekind (Def_Id) /= E_Constant then
6860                Note_Possible_Modification (Expression (Arg2), Sure => False);
6861             end if;
6862
6863             Process_Interface_Name (Def_Id, Arg3, Arg4);
6864             Set_Exported (Def_Id, Arg2);
6865
6866             --  If the entity is a deferred constant, propagate the information
6867             --  to the full view, because gigi elaborates the full view only.
6868
6869             if Ekind (Def_Id) = E_Constant
6870               and then Present (Full_View (Def_Id))
6871             then
6872                declare
6873                   Id2 : constant Entity_Id := Full_View (Def_Id);
6874                begin
6875                   Set_Is_Exported    (Id2, Is_Exported          (Def_Id));
6876                   Set_First_Rep_Item (Id2, First_Rep_Item       (Def_Id));
6877                   Set_Interface_Name (Id2, Einfo.Interface_Name (Def_Id));
6878                end;
6879             end if;
6880          end Export;
6881
6882          ----------------------
6883          -- Export_Exception --
6884          ----------------------
6885
6886          --  pragma Export_Exception (
6887          --        [Internal         =>] LOCAL_NAME
6888          --     [, [External         =>] EXTERNAL_SYMBOL]
6889          --     [, [Form     =>] Ada | VMS]
6890          --     [, [Code     =>] static_integer_EXPRESSION]);
6891
6892          when Pragma_Export_Exception => Export_Exception : declare
6893             Args  : Args_List (1 .. 4);
6894             Names : constant Name_List (1 .. 4) := (
6895                       Name_Internal,
6896                       Name_External,
6897                       Name_Form,
6898                       Name_Code);
6899
6900             Internal : Node_Id renames Args (1);
6901             External : Node_Id renames Args (2);
6902             Form     : Node_Id renames Args (3);
6903             Code     : Node_Id renames Args (4);
6904
6905          begin
6906             GNAT_Pragma;
6907
6908             if Inside_A_Generic then
6909                Error_Pragma ("pragma% cannot be used for generic entities");
6910             end if;
6911
6912             Gather_Associations (Names, Args);
6913             Process_Extended_Import_Export_Exception_Pragma (
6914               Arg_Internal => Internal,
6915               Arg_External => External,
6916               Arg_Form     => Form,
6917               Arg_Code     => Code);
6918
6919             if not Is_VMS_Exception (Entity (Internal)) then
6920                Set_Exported (Entity (Internal), Internal);
6921             end if;
6922          end Export_Exception;
6923
6924          ---------------------
6925          -- Export_Function --
6926          ---------------------
6927
6928          --  pragma Export_Function (
6929          --        [Internal         =>] LOCAL_NAME
6930          --     [, [External         =>] EXTERNAL_SYMBOL]
6931          --     [, [Parameter_Types  =>] (PARAMETER_TYPES)]
6932          --     [, [Result_Type      =>] TYPE_DESIGNATOR]
6933          --     [, [Mechanism        =>] MECHANISM]
6934          --     [, [Result_Mechanism =>] MECHANISM_NAME]);
6935
6936          --  EXTERNAL_SYMBOL ::=
6937          --    IDENTIFIER
6938          --  | static_string_EXPRESSION
6939
6940          --  PARAMETER_TYPES ::=
6941          --    null
6942          --  | TYPE_DESIGNATOR @{, TYPE_DESIGNATOR@}
6943
6944          --  TYPE_DESIGNATOR ::=
6945          --    subtype_NAME
6946          --  | subtype_Name ' Access
6947
6948          --  MECHANISM ::=
6949          --    MECHANISM_NAME
6950          --  | (MECHANISM_ASSOCIATION @{, MECHANISM_ASSOCIATION@})
6951
6952          --  MECHANISM_ASSOCIATION ::=
6953          --    [formal_parameter_NAME =>] MECHANISM_NAME
6954
6955          --  MECHANISM_NAME ::=
6956          --    Value
6957          --  | Reference
6958          --  | Descriptor [([Class =>] CLASS_NAME)]
6959
6960          --  CLASS_NAME ::= ubs | ubsb | uba | s | sb | a | nca
6961
6962          when Pragma_Export_Function => Export_Function : declare
6963             Args  : Args_List (1 .. 6);
6964             Names : constant Name_List (1 .. 6) := (
6965                       Name_Internal,
6966                       Name_External,
6967                       Name_Parameter_Types,
6968                       Name_Result_Type,
6969                       Name_Mechanism,
6970                       Name_Result_Mechanism);
6971
6972             Internal         : Node_Id renames Args (1);
6973             External         : Node_Id renames Args (2);
6974             Parameter_Types  : Node_Id renames Args (3);
6975             Result_Type      : Node_Id renames Args (4);
6976             Mechanism        : Node_Id renames Args (5);
6977             Result_Mechanism : Node_Id renames Args (6);
6978
6979          begin
6980             GNAT_Pragma;
6981             Gather_Associations (Names, Args);
6982             Process_Extended_Import_Export_Subprogram_Pragma (
6983               Arg_Internal         => Internal,
6984               Arg_External         => External,
6985               Arg_Parameter_Types  => Parameter_Types,
6986               Arg_Result_Type      => Result_Type,
6987               Arg_Mechanism        => Mechanism,
6988               Arg_Result_Mechanism => Result_Mechanism);
6989          end Export_Function;
6990
6991          -------------------
6992          -- Export_Object --
6993          -------------------
6994
6995          --  pragma Export_Object (
6996          --        [Internal =>] LOCAL_NAME
6997          --     [, [External =>] EXTERNAL_SYMBOL]
6998          --     [, [Size     =>] EXTERNAL_SYMBOL]);
6999
7000          --  EXTERNAL_SYMBOL ::=
7001          --    IDENTIFIER
7002          --  | static_string_EXPRESSION
7003
7004          --  PARAMETER_TYPES ::=
7005          --    null
7006          --  | TYPE_DESIGNATOR @{, TYPE_DESIGNATOR@}
7007
7008          --  TYPE_DESIGNATOR ::=
7009          --    subtype_NAME
7010          --  | subtype_Name ' Access
7011
7012          --  MECHANISM ::=
7013          --    MECHANISM_NAME
7014          --  | (MECHANISM_ASSOCIATION @{, MECHANISM_ASSOCIATION@})
7015
7016          --  MECHANISM_ASSOCIATION ::=
7017          --    [formal_parameter_NAME =>] MECHANISM_NAME
7018
7019          --  MECHANISM_NAME ::=
7020          --    Value
7021          --  | Reference
7022          --  | Descriptor [([Class =>] CLASS_NAME)]
7023
7024          --  CLASS_NAME ::= ubs | ubsb | uba | s | sb | a | nca
7025
7026          when Pragma_Export_Object => Export_Object : declare
7027             Args  : Args_List (1 .. 3);
7028             Names : constant Name_List (1 .. 3) := (
7029                       Name_Internal,
7030                       Name_External,
7031                       Name_Size);
7032
7033             Internal : Node_Id renames Args (1);
7034             External : Node_Id renames Args (2);
7035             Size     : Node_Id renames Args (3);
7036
7037          begin
7038             GNAT_Pragma;
7039             Gather_Associations (Names, Args);
7040             Process_Extended_Import_Export_Object_Pragma (
7041               Arg_Internal => Internal,
7042               Arg_External => External,
7043               Arg_Size     => Size);
7044          end Export_Object;
7045
7046          ----------------------
7047          -- Export_Procedure --
7048          ----------------------
7049
7050          --  pragma Export_Procedure (
7051          --        [Internal         =>] LOCAL_NAME
7052          --     [, [External         =>] EXTERNAL_SYMBOL]
7053          --     [, [Parameter_Types  =>] (PARAMETER_TYPES)]
7054          --     [, [Mechanism        =>] MECHANISM]);
7055
7056          --  EXTERNAL_SYMBOL ::=
7057          --    IDENTIFIER
7058          --  | static_string_EXPRESSION
7059
7060          --  PARAMETER_TYPES ::=
7061          --    null
7062          --  | TYPE_DESIGNATOR @{, TYPE_DESIGNATOR@}
7063
7064          --  TYPE_DESIGNATOR ::=
7065          --    subtype_NAME
7066          --  | subtype_Name ' Access
7067
7068          --  MECHANISM ::=
7069          --    MECHANISM_NAME
7070          --  | (MECHANISM_ASSOCIATION @{, MECHANISM_ASSOCIATION@})
7071
7072          --  MECHANISM_ASSOCIATION ::=
7073          --    [formal_parameter_NAME =>] MECHANISM_NAME
7074
7075          --  MECHANISM_NAME ::=
7076          --    Value
7077          --  | Reference
7078          --  | Descriptor [([Class =>] CLASS_NAME)]
7079
7080          --  CLASS_NAME ::= ubs | ubsb | uba | s | sb | a | nca
7081
7082          when Pragma_Export_Procedure => Export_Procedure : declare
7083             Args  : Args_List (1 .. 4);
7084             Names : constant Name_List (1 .. 4) := (
7085                       Name_Internal,
7086                       Name_External,
7087                       Name_Parameter_Types,
7088                       Name_Mechanism);
7089
7090             Internal        : Node_Id renames Args (1);
7091             External        : Node_Id renames Args (2);
7092             Parameter_Types : Node_Id renames Args (3);
7093             Mechanism       : Node_Id renames Args (4);
7094
7095          begin
7096             GNAT_Pragma;
7097             Gather_Associations (Names, Args);
7098             Process_Extended_Import_Export_Subprogram_Pragma (
7099               Arg_Internal        => Internal,
7100               Arg_External        => External,
7101               Arg_Parameter_Types => Parameter_Types,
7102               Arg_Mechanism       => Mechanism);
7103          end Export_Procedure;
7104
7105          ------------------
7106          -- Export_Value --
7107          ------------------
7108
7109          --  pragma Export_Value (
7110          --     [Value     =>] static_integer_EXPRESSION,
7111          --     [Link_Name =>] static_string_EXPRESSION);
7112
7113          when Pragma_Export_Value =>
7114             GNAT_Pragma;
7115             Check_Arg_Order ((Name_Value, Name_Link_Name));
7116             Check_Arg_Count (2);
7117
7118             Check_Optional_Identifier (Arg1, Name_Value);
7119             Check_Arg_Is_Static_Expression (Arg1, Any_Integer);
7120
7121             Check_Optional_Identifier (Arg2, Name_Link_Name);
7122             Check_Arg_Is_Static_Expression (Arg2, Standard_String);
7123
7124          -----------------------------
7125          -- Export_Valued_Procedure --
7126          -----------------------------
7127
7128          --  pragma Export_Valued_Procedure (
7129          --        [Internal         =>] LOCAL_NAME
7130          --     [, [External         =>] EXTERNAL_SYMBOL,]
7131          --     [, [Parameter_Types  =>] (PARAMETER_TYPES)]
7132          --     [, [Mechanism        =>] MECHANISM]);
7133
7134          --  EXTERNAL_SYMBOL ::=
7135          --    IDENTIFIER
7136          --  | static_string_EXPRESSION
7137
7138          --  PARAMETER_TYPES ::=
7139          --    null
7140          --  | TYPE_DESIGNATOR @{, TYPE_DESIGNATOR@}
7141
7142          --  TYPE_DESIGNATOR ::=
7143          --    subtype_NAME
7144          --  | subtype_Name ' Access
7145
7146          --  MECHANISM ::=
7147          --    MECHANISM_NAME
7148          --  | (MECHANISM_ASSOCIATION @{, MECHANISM_ASSOCIATION@})
7149
7150          --  MECHANISM_ASSOCIATION ::=
7151          --    [formal_parameter_NAME =>] MECHANISM_NAME
7152
7153          --  MECHANISM_NAME ::=
7154          --    Value
7155          --  | Reference
7156          --  | Descriptor [([Class =>] CLASS_NAME)]
7157
7158          --  CLASS_NAME ::= ubs | ubsb | uba | s | sb | a | nca
7159
7160          when Pragma_Export_Valued_Procedure =>
7161          Export_Valued_Procedure : declare
7162             Args  : Args_List (1 .. 4);
7163             Names : constant Name_List (1 .. 4) := (
7164                       Name_Internal,
7165                       Name_External,
7166                       Name_Parameter_Types,
7167                       Name_Mechanism);
7168
7169             Internal        : Node_Id renames Args (1);
7170             External        : Node_Id renames Args (2);
7171             Parameter_Types : Node_Id renames Args (3);
7172             Mechanism       : Node_Id renames Args (4);
7173
7174          begin
7175             GNAT_Pragma;
7176             Gather_Associations (Names, Args);
7177             Process_Extended_Import_Export_Subprogram_Pragma (
7178               Arg_Internal        => Internal,
7179               Arg_External        => External,
7180               Arg_Parameter_Types => Parameter_Types,
7181               Arg_Mechanism       => Mechanism);
7182          end Export_Valued_Procedure;
7183
7184          -------------------
7185          -- Extend_System --
7186          -------------------
7187
7188          --  pragma Extend_System ([Name =>] Identifier);
7189
7190          when Pragma_Extend_System => Extend_System : declare
7191          begin
7192             GNAT_Pragma;
7193             Check_Valid_Configuration_Pragma;
7194             Check_Arg_Count (1);
7195             Check_Optional_Identifier (Arg1, Name_Name);
7196             Check_Arg_Is_Identifier (Arg1);
7197
7198             Get_Name_String (Chars (Expression (Arg1)));
7199
7200             if Name_Len > 4
7201               and then Name_Buffer (1 .. 4) = "aux_"
7202             then
7203                if Present (System_Extend_Pragma_Arg) then
7204                   if Chars (Expression (Arg1)) =
7205                      Chars (Expression (System_Extend_Pragma_Arg))
7206                   then
7207                      null;
7208                   else
7209                      Error_Msg_Sloc := Sloc (System_Extend_Pragma_Arg);
7210                      Error_Pragma ("pragma% conflicts with that #");
7211                   end if;
7212
7213                else
7214                   System_Extend_Pragma_Arg := Arg1;
7215
7216                   if not GNAT_Mode then
7217                      System_Extend_Unit := Arg1;
7218                   end if;
7219                end if;
7220             else
7221                Error_Pragma ("incorrect name for pragma%, must be Aux_xxx");
7222             end if;
7223          end Extend_System;
7224
7225          ------------------------
7226          -- Extensions_Allowed --
7227          ------------------------
7228
7229          --  pragma Extensions_Allowed (ON | OFF);
7230
7231          when Pragma_Extensions_Allowed =>
7232             GNAT_Pragma;
7233             Check_Arg_Count (1);
7234             Check_No_Identifiers;
7235             Check_Arg_Is_One_Of (Arg1, Name_On, Name_Off);
7236
7237             if Chars (Expression (Arg1)) = Name_On then
7238                Extensions_Allowed := True;
7239             else
7240                Extensions_Allowed := False;
7241             end if;
7242
7243          --------------
7244          -- External --
7245          --------------
7246
7247          --  pragma External (
7248          --    [   Convention    =>] convention_IDENTIFIER,
7249          --    [   Entity        =>] local_NAME
7250          --    [, [External_Name =>] static_string_EXPRESSION ]
7251          --    [, [Link_Name     =>] static_string_EXPRESSION ]);
7252
7253          when Pragma_External => External : declare
7254                Def_Id : Entity_Id;
7255
7256                C : Convention_Id;
7257                pragma Warnings (Off, C);
7258
7259          begin
7260             GNAT_Pragma;
7261             Check_Arg_Order
7262               ((Name_Convention,
7263                 Name_Entity,
7264                 Name_External_Name,
7265                 Name_Link_Name));
7266             Check_At_Least_N_Arguments (2);
7267             Check_At_Most_N_Arguments  (4);
7268             Process_Convention (C, Def_Id);
7269             Note_Possible_Modification (Expression (Arg2), Sure => False);
7270             Process_Interface_Name (Def_Id, Arg3, Arg4);
7271             Set_Exported (Def_Id, Arg2);
7272          end External;
7273
7274          --------------------------
7275          -- External_Name_Casing --
7276          --------------------------
7277
7278          --  pragma External_Name_Casing (
7279          --    UPPERCASE | LOWERCASE
7280          --    [, AS_IS | UPPERCASE | LOWERCASE]);
7281
7282          when Pragma_External_Name_Casing => External_Name_Casing : declare
7283          begin
7284             GNAT_Pragma;
7285             Check_No_Identifiers;
7286
7287             if Arg_Count = 2 then
7288                Check_Arg_Is_One_Of
7289                  (Arg2, Name_As_Is, Name_Uppercase, Name_Lowercase);
7290
7291                case Chars (Get_Pragma_Arg (Arg2)) is
7292                   when Name_As_Is     =>
7293                      Opt.External_Name_Exp_Casing := As_Is;
7294
7295                   when Name_Uppercase =>
7296                      Opt.External_Name_Exp_Casing := Uppercase;
7297
7298                   when Name_Lowercase =>
7299                      Opt.External_Name_Exp_Casing := Lowercase;
7300
7301                   when others =>
7302                      null;
7303                end case;
7304
7305             else
7306                Check_Arg_Count (1);
7307             end if;
7308
7309             Check_Arg_Is_One_Of (Arg1, Name_Uppercase, Name_Lowercase);
7310
7311             case Chars (Get_Pragma_Arg (Arg1)) is
7312                when Name_Uppercase =>
7313                   Opt.External_Name_Imp_Casing := Uppercase;
7314
7315                when Name_Lowercase =>
7316                   Opt.External_Name_Imp_Casing := Lowercase;
7317
7318                when others =>
7319                   null;
7320             end case;
7321          end External_Name_Casing;
7322
7323          --------------------------
7324          -- Favor_Top_Level --
7325          --------------------------
7326
7327          --  pragma Favor_Top_Level (type_NAME);
7328
7329          when Pragma_Favor_Top_Level => Favor_Top_Level : declare
7330                Named_Entity : Entity_Id;
7331
7332          begin
7333             GNAT_Pragma;
7334             Check_No_Identifiers;
7335             Check_Arg_Count (1);
7336             Check_Arg_Is_Local_Name (Arg1);
7337             Named_Entity := Entity (Expression (Arg1));
7338
7339             --  If it's an access-to-subprogram type (in particular, not a
7340             --  subtype), set the flag on that type.
7341
7342             if Is_Access_Subprogram_Type (Named_Entity) then
7343                Set_Can_Use_Internal_Rep (Named_Entity, False);
7344
7345             --  Otherwise it's an error (name denotes the wrong sort of entity)
7346
7347             else
7348                Error_Pragma_Arg
7349                  ("access-to-subprogram type expected", Expression (Arg1));
7350             end if;
7351          end Favor_Top_Level;
7352
7353          ---------------
7354          -- Fast_Math --
7355          ---------------
7356
7357          --  pragma Fast_Math;
7358
7359          when Pragma_Fast_Math =>
7360             GNAT_Pragma;
7361             Check_No_Identifiers;
7362             Check_Valid_Configuration_Pragma;
7363             Fast_Math := True;
7364
7365          ---------------------------
7366          -- Finalize_Storage_Only --
7367          ---------------------------
7368
7369          --  pragma Finalize_Storage_Only (first_subtype_LOCAL_NAME);
7370
7371          when Pragma_Finalize_Storage_Only => Finalize_Storage : declare
7372             Assoc   : constant Node_Id := Arg1;
7373             Type_Id : constant Node_Id := Expression (Assoc);
7374             Typ     : Entity_Id;
7375
7376          begin
7377             GNAT_Pragma;
7378             Check_No_Identifiers;
7379             Check_Arg_Count (1);
7380             Check_Arg_Is_Local_Name (Arg1);
7381
7382             Find_Type (Type_Id);
7383             Typ := Entity (Type_Id);
7384
7385             if Typ = Any_Type
7386               or else Rep_Item_Too_Early (Typ, N)
7387             then
7388                return;
7389             else
7390                Typ := Underlying_Type (Typ);
7391             end if;
7392
7393             if not Is_Controlled (Typ) then
7394                Error_Pragma ("pragma% must specify controlled type");
7395             end if;
7396
7397             Check_First_Subtype (Arg1);
7398
7399             if Finalize_Storage_Only (Typ) then
7400                Error_Pragma ("duplicate pragma%, only one allowed");
7401
7402             elsif not Rep_Item_Too_Late (Typ, N) then
7403                Set_Finalize_Storage_Only (Base_Type (Typ), True);
7404             end if;
7405          end Finalize_Storage;
7406
7407          --------------------------
7408          -- Float_Representation --
7409          --------------------------
7410
7411          --  pragma Float_Representation (FLOAT_REP[, float_type_LOCAL_NAME]);
7412
7413          --  FLOAT_REP ::= VAX_Float | IEEE_Float
7414
7415          when Pragma_Float_Representation => Float_Representation : declare
7416             Argx : Node_Id;
7417             Digs : Nat;
7418             Ent  : Entity_Id;
7419
7420          begin
7421             GNAT_Pragma;
7422
7423             if Arg_Count = 1 then
7424                Check_Valid_Configuration_Pragma;
7425             else
7426                Check_Arg_Count (2);
7427                Check_Optional_Identifier (Arg2, Name_Entity);
7428                Check_Arg_Is_Local_Name (Arg2);
7429             end if;
7430
7431             Check_No_Identifier (Arg1);
7432             Check_Arg_Is_One_Of (Arg1, Name_VAX_Float, Name_IEEE_Float);
7433
7434             if not OpenVMS_On_Target then
7435                if Chars (Expression (Arg1)) = Name_VAX_Float then
7436                   Error_Pragma
7437                     ("?pragma% ignored (applies only to Open'V'M'S)");
7438                end if;
7439
7440                return;
7441             end if;
7442
7443             --  One argument case
7444
7445             if Arg_Count = 1 then
7446                if Chars (Expression (Arg1)) = Name_VAX_Float then
7447                   if Opt.Float_Format = 'I' then
7448                      Error_Pragma ("'I'E'E'E format previously specified");
7449                   end if;
7450
7451                   Opt.Float_Format := 'V';
7452
7453                else
7454                   if Opt.Float_Format = 'V' then
7455                      Error_Pragma ("'V'A'X format previously specified");
7456                   end if;
7457
7458                   Opt.Float_Format := 'I';
7459                end if;
7460
7461                Set_Standard_Fpt_Formats;
7462
7463             --  Two argument case
7464
7465             else
7466                Argx := Get_Pragma_Arg (Arg2);
7467
7468                if not Is_Entity_Name (Argx)
7469                  or else not Is_Floating_Point_Type (Entity (Argx))
7470                then
7471                   Error_Pragma_Arg
7472                     ("second argument of% pragma must be floating-point type",
7473                      Arg2);
7474                end if;
7475
7476                Ent  := Entity (Argx);
7477                Digs := UI_To_Int (Digits_Value (Ent));
7478
7479                --  Two arguments, VAX_Float case
7480
7481                if Chars (Expression (Arg1)) = Name_VAX_Float then
7482                   case Digs is
7483                      when  6 => Set_F_Float (Ent);
7484                      when  9 => Set_D_Float (Ent);
7485                      when 15 => Set_G_Float (Ent);
7486
7487                      when others =>
7488                         Error_Pragma_Arg
7489                           ("wrong digits value, must be 6,9 or 15", Arg2);
7490                   end case;
7491
7492                --  Two arguments, IEEE_Float case
7493
7494                else
7495                   case Digs is
7496                      when  6 => Set_IEEE_Short (Ent);
7497                      when 15 => Set_IEEE_Long  (Ent);
7498
7499                      when others =>
7500                         Error_Pragma_Arg
7501                           ("wrong digits value, must be 6 or 15", Arg2);
7502                   end case;
7503                end if;
7504             end if;
7505          end Float_Representation;
7506
7507          -----------
7508          -- Ident --
7509          -----------
7510
7511          --  pragma Ident (static_string_EXPRESSION)
7512
7513          --  Note: pragma Comment shares this processing. Pragma Comment is
7514          --  identical to Ident, except that the restriction of the argument to
7515          --  31 characters and the placement restrictions are not enforced for
7516          --  pragma Comment.
7517
7518          when Pragma_Ident | Pragma_Comment => Ident : declare
7519             Str : Node_Id;
7520
7521          begin
7522             GNAT_Pragma;
7523             Check_Arg_Count (1);
7524             Check_No_Identifiers;
7525             Check_Arg_Is_Static_Expression (Arg1, Standard_String);
7526
7527             --  For pragma Ident, preserve DEC compatibility by requiring the
7528             --  pragma to appear in a declarative part or package spec.
7529
7530             if Prag_Id = Pragma_Ident then
7531                Check_Is_In_Decl_Part_Or_Package_Spec;
7532             end if;
7533
7534             Str := Expr_Value_S (Expression (Arg1));
7535
7536             declare
7537                CS : Node_Id;
7538                GP : Node_Id;
7539
7540             begin
7541                GP := Parent (Parent (N));
7542
7543                if Nkind_In (GP, N_Package_Declaration,
7544                                 N_Generic_Package_Declaration)
7545                then
7546                   GP := Parent (GP);
7547                end if;
7548
7549                --  If we have a compilation unit, then record the ident value,
7550                --  checking for improper duplication.
7551
7552                if Nkind (GP) = N_Compilation_Unit then
7553                   CS := Ident_String (Current_Sem_Unit);
7554
7555                   if Present (CS) then
7556
7557                      --  For Ident, we do not permit multiple instances
7558
7559                      if Prag_Id = Pragma_Ident then
7560                         Error_Pragma ("duplicate% pragma not permitted");
7561
7562                      --  For Comment, we concatenate the string, unless we want
7563                      --  to preserve the tree structure for ASIS.
7564
7565                      elsif not ASIS_Mode then
7566                         Start_String (Strval (CS));
7567                         Store_String_Char (' ');
7568                         Store_String_Chars (Strval (Str));
7569                         Set_Strval (CS, End_String);
7570                      end if;
7571
7572                   else
7573                      --  In VMS, the effect of IDENT is achieved by passing
7574                      --  IDENTIFICATION=name as a --for-linker switch.
7575
7576                      if OpenVMS_On_Target then
7577                         Start_String;
7578                         Store_String_Chars
7579                           ("--for-linker=IDENTIFICATION=");
7580                         String_To_Name_Buffer (Strval (Str));
7581                         Store_String_Chars (Name_Buffer (1 .. Name_Len));
7582
7583                         --  Only the last processed IDENT is saved. The main
7584                         --  purpose is so an IDENT associated with a main
7585                         --  procedure will be used in preference to an IDENT
7586                         --  associated with a with'd package.
7587
7588                         Replace_Linker_Option_String
7589                           (End_String, "--for-linker=IDENTIFICATION=");
7590                      end if;
7591
7592                      Set_Ident_String (Current_Sem_Unit, Str);
7593                   end if;
7594
7595                --  For subunits, we just ignore the Ident, since in GNAT these
7596                --  are not separate object files, and hence not separate units
7597                --  in the unit table.
7598
7599                elsif Nkind (GP) = N_Subunit then
7600                   null;
7601
7602                --  Otherwise we have a misplaced pragma Ident, but we ignore
7603                --  this if we are in an instantiation, since it comes from
7604                --  a generic, and has no relevance to the instantiation.
7605
7606                elsif Prag_Id = Pragma_Ident then
7607                   if Instantiation_Location (Loc) = No_Location then
7608                      Error_Pragma ("pragma% only allowed at outer level");
7609                   end if;
7610                end if;
7611             end;
7612          end Ident;
7613
7614          --------------------------
7615          -- Implemented_By_Entry --
7616          --------------------------
7617
7618          --  pragma Implemented_By_Entry (DIRECT_NAME);
7619
7620          when Pragma_Implemented_By_Entry => Implemented_By_Entry : declare
7621             Ent : Entity_Id;
7622
7623          begin
7624             Ada_2005_Pragma;
7625             Check_Arg_Count (1);
7626             Check_No_Identifiers;
7627             Check_Arg_Is_Identifier (Arg1);
7628             Check_Arg_Is_Local_Name (Arg1);
7629             Ent := Entity (Expression (Arg1));
7630
7631             --  Pragma Implemented_By_Entry must be applied only to protected
7632             --  synchronized or task interface primitives.
7633
7634             if (Ekind (Ent) /= E_Function
7635                   and then Ekind (Ent) /= E_Procedure)
7636                or else not Present (First_Formal (Ent))
7637                or else not Is_Concurrent_Interface (Etype (First_Formal (Ent)))
7638             then
7639                Error_Pragma_Arg
7640                  ("pragma % must be applied to a concurrent interface " &
7641                   "primitive", Arg1);
7642
7643             else
7644                if Einfo.Implemented_By_Entry (Ent)
7645                  and then Warn_On_Redundant_Constructs
7646                then
7647                   Error_Pragma ("?duplicate pragma%!");
7648                else
7649                   Set_Implemented_By_Entry (Ent);
7650                end if;
7651             end if;
7652          end Implemented_By_Entry;
7653
7654          -----------------------
7655          -- Implicit_Packing --
7656          -----------------------
7657
7658          --  pragma Implicit_Packing;
7659
7660          when Pragma_Implicit_Packing =>
7661             GNAT_Pragma;
7662             Check_Arg_Count (0);
7663             Implicit_Packing := True;
7664
7665          ------------
7666          -- Import --
7667          ------------
7668
7669          --  pragma Import (
7670          --       [Convention    =>] convention_IDENTIFIER,
7671          --       [Entity        =>] local_NAME
7672          --    [, [External_Name =>] static_string_EXPRESSION ]
7673          --    [, [Link_Name     =>] static_string_EXPRESSION ]);
7674
7675          when Pragma_Import =>
7676             Check_Ada_83_Warning;
7677             Check_Arg_Order
7678               ((Name_Convention,
7679                 Name_Entity,
7680                 Name_External_Name,
7681                 Name_Link_Name));
7682             Check_At_Least_N_Arguments (2);
7683             Check_At_Most_N_Arguments  (4);
7684             Process_Import_Or_Interface;
7685
7686          ----------------------
7687          -- Import_Exception --
7688          ----------------------
7689
7690          --  pragma Import_Exception (
7691          --        [Internal         =>] LOCAL_NAME
7692          --     [, [External         =>] EXTERNAL_SYMBOL]
7693          --     [, [Form     =>] Ada | VMS]
7694          --     [, [Code     =>] static_integer_EXPRESSION]);
7695
7696          when Pragma_Import_Exception => Import_Exception : declare
7697             Args  : Args_List (1 .. 4);
7698             Names : constant Name_List (1 .. 4) := (
7699                       Name_Internal,
7700                       Name_External,
7701                       Name_Form,
7702                       Name_Code);
7703
7704             Internal : Node_Id renames Args (1);
7705             External : Node_Id renames Args (2);
7706             Form     : Node_Id renames Args (3);
7707             Code     : Node_Id renames Args (4);
7708
7709          begin
7710             GNAT_Pragma;
7711             Gather_Associations (Names, Args);
7712
7713             if Present (External) and then Present (Code) then
7714                Error_Pragma
7715                  ("cannot give both External and Code options for pragma%");
7716             end if;
7717
7718             Process_Extended_Import_Export_Exception_Pragma (
7719               Arg_Internal => Internal,
7720               Arg_External => External,
7721               Arg_Form     => Form,
7722               Arg_Code     => Code);
7723
7724             if not Is_VMS_Exception (Entity (Internal)) then
7725                Set_Imported (Entity (Internal));
7726             end if;
7727          end Import_Exception;
7728
7729          ---------------------
7730          -- Import_Function --
7731          ---------------------
7732
7733          --  pragma Import_Function (
7734          --        [Internal                 =>] LOCAL_NAME,
7735          --     [, [External                 =>] EXTERNAL_SYMBOL]
7736          --     [, [Parameter_Types          =>] (PARAMETER_TYPES)]
7737          --     [, [Result_Type              =>] SUBTYPE_MARK]
7738          --     [, [Mechanism                =>] MECHANISM]
7739          --     [, [Result_Mechanism         =>] MECHANISM_NAME]
7740          --     [, [First_Optional_Parameter =>] IDENTIFIER]);
7741
7742          --  EXTERNAL_SYMBOL ::=
7743          --    IDENTIFIER
7744          --  | static_string_EXPRESSION
7745
7746          --  PARAMETER_TYPES ::=
7747          --    null
7748          --  | TYPE_DESIGNATOR @{, TYPE_DESIGNATOR@}
7749
7750          --  TYPE_DESIGNATOR ::=
7751          --    subtype_NAME
7752          --  | subtype_Name ' Access
7753
7754          --  MECHANISM ::=
7755          --    MECHANISM_NAME
7756          --  | (MECHANISM_ASSOCIATION @{, MECHANISM_ASSOCIATION@})
7757
7758          --  MECHANISM_ASSOCIATION ::=
7759          --    [formal_parameter_NAME =>] MECHANISM_NAME
7760
7761          --  MECHANISM_NAME ::=
7762          --    Value
7763          --  | Reference
7764          --  | Descriptor [([Class =>] CLASS_NAME)]
7765
7766          --  CLASS_NAME ::= ubs | ubsb | uba | s | sb | a | nca
7767
7768          when Pragma_Import_Function => Import_Function : declare
7769             Args  : Args_List (1 .. 7);
7770             Names : constant Name_List (1 .. 7) := (
7771                       Name_Internal,
7772                       Name_External,
7773                       Name_Parameter_Types,
7774                       Name_Result_Type,
7775                       Name_Mechanism,
7776                       Name_Result_Mechanism,
7777                       Name_First_Optional_Parameter);
7778
7779             Internal                 : Node_Id renames Args (1);
7780             External                 : Node_Id renames Args (2);
7781             Parameter_Types          : Node_Id renames Args (3);
7782             Result_Type              : Node_Id renames Args (4);
7783             Mechanism                : Node_Id renames Args (5);
7784             Result_Mechanism         : Node_Id renames Args (6);
7785             First_Optional_Parameter : Node_Id renames Args (7);
7786
7787          begin
7788             GNAT_Pragma;
7789             Gather_Associations (Names, Args);
7790             Process_Extended_Import_Export_Subprogram_Pragma (
7791               Arg_Internal                 => Internal,
7792               Arg_External                 => External,
7793               Arg_Parameter_Types          => Parameter_Types,
7794               Arg_Result_Type              => Result_Type,
7795               Arg_Mechanism                => Mechanism,
7796               Arg_Result_Mechanism         => Result_Mechanism,
7797               Arg_First_Optional_Parameter => First_Optional_Parameter);
7798          end Import_Function;
7799
7800          -------------------
7801          -- Import_Object --
7802          -------------------
7803
7804          --  pragma Import_Object (
7805          --        [Internal =>] LOCAL_NAME
7806          --     [, [External =>] EXTERNAL_SYMBOL]
7807          --     [, [Size     =>] EXTERNAL_SYMBOL]);
7808
7809          --  EXTERNAL_SYMBOL ::=
7810          --    IDENTIFIER
7811          --  | static_string_EXPRESSION
7812
7813          when Pragma_Import_Object => Import_Object : declare
7814             Args  : Args_List (1 .. 3);
7815             Names : constant Name_List (1 .. 3) := (
7816                       Name_Internal,
7817                       Name_External,
7818                       Name_Size);
7819
7820             Internal : Node_Id renames Args (1);
7821             External : Node_Id renames Args (2);
7822             Size     : Node_Id renames Args (3);
7823
7824          begin
7825             GNAT_Pragma;
7826             Gather_Associations (Names, Args);
7827             Process_Extended_Import_Export_Object_Pragma (
7828               Arg_Internal => Internal,
7829               Arg_External => External,
7830               Arg_Size     => Size);
7831          end Import_Object;
7832
7833          ----------------------
7834          -- Import_Procedure --
7835          ----------------------
7836
7837          --  pragma Import_Procedure (
7838          --        [Internal                 =>] LOCAL_NAME
7839          --     [, [External                 =>] EXTERNAL_SYMBOL]
7840          --     [, [Parameter_Types          =>] (PARAMETER_TYPES)]
7841          --     [, [Mechanism                =>] MECHANISM]
7842          --     [, [First_Optional_Parameter =>] IDENTIFIER]);
7843
7844          --  EXTERNAL_SYMBOL ::=
7845          --    IDENTIFIER
7846          --  | static_string_EXPRESSION
7847
7848          --  PARAMETER_TYPES ::=
7849          --    null
7850          --  | TYPE_DESIGNATOR @{, TYPE_DESIGNATOR@}
7851
7852          --  TYPE_DESIGNATOR ::=
7853          --    subtype_NAME
7854          --  | subtype_Name ' Access
7855
7856          --  MECHANISM ::=
7857          --    MECHANISM_NAME
7858          --  | (MECHANISM_ASSOCIATION @{, MECHANISM_ASSOCIATION@})
7859
7860          --  MECHANISM_ASSOCIATION ::=
7861          --    [formal_parameter_NAME =>] MECHANISM_NAME
7862
7863          --  MECHANISM_NAME ::=
7864          --    Value
7865          --  | Reference
7866          --  | Descriptor [([Class =>] CLASS_NAME)]
7867
7868          --  CLASS_NAME ::= ubs | ubsb | uba | s | sb | a | nca
7869
7870          when Pragma_Import_Procedure => Import_Procedure : declare
7871             Args  : Args_List (1 .. 5);
7872             Names : constant Name_List (1 .. 5) := (
7873                       Name_Internal,
7874                       Name_External,
7875                       Name_Parameter_Types,
7876                       Name_Mechanism,
7877                       Name_First_Optional_Parameter);
7878
7879             Internal                 : Node_Id renames Args (1);
7880             External                 : Node_Id renames Args (2);
7881             Parameter_Types          : Node_Id renames Args (3);
7882             Mechanism                : Node_Id renames Args (4);
7883             First_Optional_Parameter : Node_Id renames Args (5);
7884
7885          begin
7886             GNAT_Pragma;
7887             Gather_Associations (Names, Args);
7888             Process_Extended_Import_Export_Subprogram_Pragma (
7889               Arg_Internal                 => Internal,
7890               Arg_External                 => External,
7891               Arg_Parameter_Types          => Parameter_Types,
7892               Arg_Mechanism                => Mechanism,
7893               Arg_First_Optional_Parameter => First_Optional_Parameter);
7894          end Import_Procedure;
7895
7896          -----------------------------
7897          -- Import_Valued_Procedure --
7898          -----------------------------
7899
7900          --  pragma Import_Valued_Procedure (
7901          --        [Internal                 =>] LOCAL_NAME
7902          --     [, [External                 =>] EXTERNAL_SYMBOL]
7903          --     [, [Parameter_Types          =>] (PARAMETER_TYPES)]
7904          --     [, [Mechanism                =>] MECHANISM]
7905          --     [, [First_Optional_Parameter =>] IDENTIFIER]);
7906
7907          --  EXTERNAL_SYMBOL ::=
7908          --    IDENTIFIER
7909          --  | static_string_EXPRESSION
7910
7911          --  PARAMETER_TYPES ::=
7912          --    null
7913          --  | TYPE_DESIGNATOR @{, TYPE_DESIGNATOR@}
7914
7915          --  TYPE_DESIGNATOR ::=
7916          --    subtype_NAME
7917          --  | subtype_Name ' Access
7918
7919          --  MECHANISM ::=
7920          --    MECHANISM_NAME
7921          --  | (MECHANISM_ASSOCIATION @{, MECHANISM_ASSOCIATION@})
7922
7923          --  MECHANISM_ASSOCIATION ::=
7924          --    [formal_parameter_NAME =>] MECHANISM_NAME
7925
7926          --  MECHANISM_NAME ::=
7927          --    Value
7928          --  | Reference
7929          --  | Descriptor [([Class =>] CLASS_NAME)]
7930
7931          --  CLASS_NAME ::= ubs | ubsb | uba | s | sb | a | nca
7932
7933          when Pragma_Import_Valued_Procedure =>
7934          Import_Valued_Procedure : declare
7935             Args  : Args_List (1 .. 5);
7936             Names : constant Name_List (1 .. 5) := (
7937                       Name_Internal,
7938                       Name_External,
7939                       Name_Parameter_Types,
7940                       Name_Mechanism,
7941                       Name_First_Optional_Parameter);
7942
7943             Internal                 : Node_Id renames Args (1);
7944             External                 : Node_Id renames Args (2);
7945             Parameter_Types          : Node_Id renames Args (3);
7946             Mechanism                : Node_Id renames Args (4);
7947             First_Optional_Parameter : Node_Id renames Args (5);
7948
7949          begin
7950             GNAT_Pragma;
7951             Gather_Associations (Names, Args);
7952             Process_Extended_Import_Export_Subprogram_Pragma (
7953               Arg_Internal                 => Internal,
7954               Arg_External                 => External,
7955               Arg_Parameter_Types          => Parameter_Types,
7956               Arg_Mechanism                => Mechanism,
7957               Arg_First_Optional_Parameter => First_Optional_Parameter);
7958          end Import_Valued_Procedure;
7959
7960          ------------------------
7961          -- Initialize_Scalars --
7962          ------------------------
7963
7964          --  pragma Initialize_Scalars;
7965
7966          when Pragma_Initialize_Scalars =>
7967             GNAT_Pragma;
7968             Check_Arg_Count (0);
7969             Check_Valid_Configuration_Pragma;
7970             Check_Restriction (No_Initialize_Scalars, N);
7971
7972             --  Initialize_Scalars creates false positives in CodePeer,
7973             --  so ignore this pragma in this mode.
7974
7975             if not Restriction_Active (No_Initialize_Scalars)
7976               and then not CodePeer_Mode
7977             then
7978                Init_Or_Norm_Scalars := True;
7979                Initialize_Scalars := True;
7980             end if;
7981
7982          ------------
7983          -- Inline --
7984          ------------
7985
7986          --  pragma Inline ( NAME {, NAME} );
7987
7988          when Pragma_Inline =>
7989
7990             --  Pragma is active if inlining option is active
7991
7992             Process_Inline (Inline_Active);
7993
7994          -------------------
7995          -- Inline_Always --
7996          -------------------
7997
7998          --  pragma Inline_Always ( NAME {, NAME} );
7999
8000          when Pragma_Inline_Always =>
8001             GNAT_Pragma;
8002             Process_Inline (True);
8003
8004          --------------------
8005          -- Inline_Generic --
8006          --------------------
8007
8008          --  pragma Inline_Generic (NAME {, NAME});
8009
8010          when Pragma_Inline_Generic =>
8011             GNAT_Pragma;
8012             Process_Generic_List;
8013
8014          ----------------------
8015          -- Inspection_Point --
8016          ----------------------
8017
8018          --  pragma Inspection_Point [(object_NAME {, object_NAME})];
8019
8020          when Pragma_Inspection_Point => Inspection_Point : declare
8021             Arg : Node_Id;
8022             Exp : Node_Id;
8023
8024          begin
8025             if Arg_Count > 0 then
8026                Arg := Arg1;
8027                loop
8028                   Exp := Expression (Arg);
8029                   Analyze (Exp);
8030
8031                   if not Is_Entity_Name (Exp)
8032                     or else not Is_Object (Entity (Exp))
8033                   then
8034                      Error_Pragma_Arg ("object name required", Arg);
8035                   end if;
8036
8037                   Next (Arg);
8038                   exit when No (Arg);
8039                end loop;
8040             end if;
8041          end Inspection_Point;
8042
8043          ---------------
8044          -- Interface --
8045          ---------------
8046
8047          --  pragma Interface (
8048          --    [   Convention    =>] convention_IDENTIFIER,
8049          --    [   Entity        =>] local_NAME
8050          --    [, [External_Name =>] static_string_EXPRESSION ]
8051          --    [, [Link_Name     =>] static_string_EXPRESSION ]);
8052
8053          when Pragma_Interface =>
8054             GNAT_Pragma;
8055             Check_Arg_Order
8056               ((Name_Convention,
8057                 Name_Entity,
8058                 Name_External_Name,
8059                 Name_Link_Name));
8060             Check_At_Least_N_Arguments (2);
8061             Check_At_Most_N_Arguments  (4);
8062             Process_Import_Or_Interface;
8063
8064          --------------------
8065          -- Interface_Name --
8066          --------------------
8067
8068          --  pragma Interface_Name (
8069          --    [  Entity        =>] local_NAME
8070          --    [,[External_Name =>] static_string_EXPRESSION ]
8071          --    [,[Link_Name     =>] static_string_EXPRESSION ]);
8072
8073          when Pragma_Interface_Name => Interface_Name : declare
8074             Id     : Node_Id;
8075             Def_Id : Entity_Id;
8076             Hom_Id : Entity_Id;
8077             Found  : Boolean;
8078
8079          begin
8080             GNAT_Pragma;
8081             Check_Arg_Order
8082               ((Name_Entity, Name_External_Name, Name_Link_Name));
8083             Check_At_Least_N_Arguments (2);
8084             Check_At_Most_N_Arguments  (3);
8085             Id := Expression (Arg1);
8086             Analyze (Id);
8087
8088             if not Is_Entity_Name (Id) then
8089                Error_Pragma_Arg
8090                  ("first argument for pragma% must be entity name", Arg1);
8091             elsif Etype (Id) = Any_Type then
8092                return;
8093             else
8094                Def_Id := Entity (Id);
8095             end if;
8096
8097             --  Special DEC-compatible processing for the object case, forces
8098             --  object to be imported.
8099
8100             if Ekind (Def_Id) = E_Variable then
8101                Kill_Size_Check_Code (Def_Id);
8102                Note_Possible_Modification (Id, Sure => False);
8103
8104                --  Initialization is not allowed for imported variable
8105
8106                if Present (Expression (Parent (Def_Id)))
8107                  and then Comes_From_Source (Expression (Parent (Def_Id)))
8108                then
8109                   Error_Msg_Sloc := Sloc (Def_Id);
8110                   Error_Pragma_Arg
8111                     ("no initialization allowed for declaration of& #",
8112                      Arg2);
8113
8114                else
8115                   --  For compatibility, support VADS usage of providing both
8116                   --  pragmas Interface and Interface_Name to obtain the effect
8117                   --  of a single Import pragma.
8118
8119                   if Is_Imported (Def_Id)
8120                     and then Present (First_Rep_Item (Def_Id))
8121                     and then Nkind (First_Rep_Item (Def_Id)) = N_Pragma
8122                     and then
8123                       Pragma_Name (First_Rep_Item (Def_Id)) = Name_Interface
8124                   then
8125                      null;
8126                   else
8127                      Set_Imported (Def_Id);
8128                   end if;
8129
8130                   Set_Is_Public (Def_Id);
8131                   Process_Interface_Name (Def_Id, Arg2, Arg3);
8132                end if;
8133
8134             --  Otherwise must be subprogram
8135
8136             elsif not Is_Subprogram (Def_Id) then
8137                Error_Pragma_Arg
8138                  ("argument of pragma% is not subprogram", Arg1);
8139
8140             else
8141                Check_At_Most_N_Arguments (3);
8142                Hom_Id := Def_Id;
8143                Found := False;
8144
8145                --  Loop through homonyms
8146
8147                loop
8148                   Def_Id := Get_Base_Subprogram (Hom_Id);
8149
8150                   if Is_Imported (Def_Id) then
8151                      Process_Interface_Name (Def_Id, Arg2, Arg3);
8152                      Found := True;
8153                   end if;
8154
8155                   Hom_Id := Homonym (Hom_Id);
8156
8157                   exit when No (Hom_Id)
8158                     or else Scope (Hom_Id) /= Current_Scope;
8159                end loop;
8160
8161                if not Found then
8162                   Error_Pragma_Arg
8163                     ("argument of pragma% is not imported subprogram",
8164                      Arg1);
8165                end if;
8166             end if;
8167          end Interface_Name;
8168
8169          -----------------------
8170          -- Interrupt_Handler --
8171          -----------------------
8172
8173          --  pragma Interrupt_Handler (handler_NAME);
8174
8175          when Pragma_Interrupt_Handler =>
8176             Check_Ada_83_Warning;
8177             Check_Arg_Count (1);
8178             Check_No_Identifiers;
8179
8180             if No_Run_Time_Mode then
8181                Error_Msg_CRT ("Interrupt_Handler pragma", N);
8182             else
8183                Check_Interrupt_Or_Attach_Handler;
8184                Process_Interrupt_Or_Attach_Handler;
8185             end if;
8186
8187          ------------------------
8188          -- Interrupt_Priority --
8189          ------------------------
8190
8191          --  pragma Interrupt_Priority [(EXPRESSION)];
8192
8193          when Pragma_Interrupt_Priority => Interrupt_Priority : declare
8194             P   : constant Node_Id := Parent (N);
8195             Arg : Node_Id;
8196
8197          begin
8198             Check_Ada_83_Warning;
8199
8200             if Arg_Count /= 0 then
8201                Arg := Expression (Arg1);
8202                Check_Arg_Count (1);
8203                Check_No_Identifiers;
8204
8205                --  The expression must be analyzed in the special manner
8206                --  described in "Handling of Default and Per-Object
8207                --  Expressions" in sem.ads.
8208
8209                Preanalyze_Spec_Expression (Arg, RTE (RE_Interrupt_Priority));
8210             end if;
8211
8212             if not Nkind_In (P, N_Task_Definition, N_Protected_Definition) then
8213                Pragma_Misplaced;
8214                return;
8215
8216             elsif Has_Priority_Pragma (P) then
8217                Error_Pragma ("duplicate pragma% not allowed");
8218
8219             else
8220                Set_Has_Priority_Pragma (P, True);
8221                Record_Rep_Item (Defining_Identifier (Parent (P)), N);
8222             end if;
8223          end Interrupt_Priority;
8224
8225          ---------------------
8226          -- Interrupt_State --
8227          ---------------------
8228
8229          --  pragma Interrupt_State (
8230          --    [Name  =>] INTERRUPT_ID,
8231          --    [State =>] INTERRUPT_STATE);
8232
8233          --  INTERRUPT_ID => IDENTIFIER | static_integer_EXPRESSION
8234          --  INTERRUPT_STATE => System | Runtime | User
8235
8236          --  Note: if the interrupt id is given as an identifier, then it must
8237          --  be one of the identifiers in Ada.Interrupts.Names. Otherwise it is
8238          --  given as a static integer expression which must be in the range of
8239          --  Ada.Interrupts.Interrupt_ID.
8240
8241          when Pragma_Interrupt_State => Interrupt_State : declare
8242
8243             Int_Id : constant Entity_Id := RTE (RE_Interrupt_ID);
8244             --  This is the entity Ada.Interrupts.Interrupt_ID;
8245
8246             State_Type : Character;
8247             --  Set to 's'/'r'/'u' for System/Runtime/User
8248
8249             IST_Num : Pos;
8250             --  Index to entry in Interrupt_States table
8251
8252             Int_Val : Uint;
8253             --  Value of interrupt
8254
8255             Arg1X : constant Node_Id := Get_Pragma_Arg (Arg1);
8256             --  The first argument to the pragma
8257
8258             Int_Ent : Entity_Id;
8259             --  Interrupt entity in Ada.Interrupts.Names
8260
8261          begin
8262             GNAT_Pragma;
8263             Check_Arg_Order ((Name_Name, Name_State));
8264             Check_Arg_Count (2);
8265
8266             Check_Optional_Identifier (Arg1, Name_Name);
8267             Check_Optional_Identifier (Arg2, Name_State);
8268             Check_Arg_Is_Identifier (Arg2);
8269
8270             --  First argument is identifier
8271
8272             if Nkind (Arg1X) = N_Identifier then
8273
8274                --  Search list of names in Ada.Interrupts.Names
8275
8276                Int_Ent := First_Entity (RTE (RE_Names));
8277                loop
8278                   if No (Int_Ent) then
8279                      Error_Pragma_Arg ("invalid interrupt name", Arg1);
8280
8281                   elsif Chars (Int_Ent) = Chars (Arg1X) then
8282                      Int_Val := Expr_Value (Constant_Value (Int_Ent));
8283                      exit;
8284                   end if;
8285
8286                   Next_Entity (Int_Ent);
8287                end loop;
8288
8289             --  First argument is not an identifier, so it must be a static
8290             --  expression of type Ada.Interrupts.Interrupt_ID.
8291
8292             else
8293                Check_Arg_Is_Static_Expression (Arg1, Any_Integer);
8294                Int_Val := Expr_Value (Arg1X);
8295
8296                if Int_Val < Expr_Value (Type_Low_Bound (Int_Id))
8297                     or else
8298                   Int_Val > Expr_Value (Type_High_Bound (Int_Id))
8299                then
8300                   Error_Pragma_Arg
8301                     ("value not in range of type " &
8302                      """Ada.Interrupts.Interrupt_'I'D""", Arg1);
8303                end if;
8304             end if;
8305
8306             --  Check OK state
8307
8308             case Chars (Get_Pragma_Arg (Arg2)) is
8309                when Name_Runtime => State_Type := 'r';
8310                when Name_System  => State_Type := 's';
8311                when Name_User    => State_Type := 'u';
8312
8313                when others =>
8314                   Error_Pragma_Arg ("invalid interrupt state", Arg2);
8315             end case;
8316
8317             --  Check if entry is already stored
8318
8319             IST_Num := Interrupt_States.First;
8320             loop
8321                --  If entry not found, add it
8322
8323                if IST_Num > Interrupt_States.Last then
8324                   Interrupt_States.Append
8325                     ((Interrupt_Number => UI_To_Int (Int_Val),
8326                       Interrupt_State  => State_Type,
8327                       Pragma_Loc       => Loc));
8328                   exit;
8329
8330                --  Case of entry for the same entry
8331
8332                elsif Int_Val = Interrupt_States.Table (IST_Num).
8333                                                            Interrupt_Number
8334                then
8335                   --  If state matches, done, no need to make redundant entry
8336
8337                   exit when
8338                     State_Type = Interrupt_States.Table (IST_Num).
8339                                                            Interrupt_State;
8340
8341                   --  Otherwise if state does not match, error
8342
8343                   Error_Msg_Sloc :=
8344                     Interrupt_States.Table (IST_Num).Pragma_Loc;
8345                   Error_Pragma_Arg
8346                     ("state conflicts with that given #", Arg2);
8347                   exit;
8348                end if;
8349
8350                IST_Num := IST_Num + 1;
8351             end loop;
8352          end Interrupt_State;
8353
8354          ----------------------
8355          -- Java_Constructor --
8356          ----------------------
8357
8358          --  pragma Java_Constructor ([Entity =>] LOCAL_NAME);
8359
8360          --  Also handles pragma CIL_Constructor
8361
8362          when Pragma_CIL_Constructor | Pragma_Java_Constructor =>
8363          Java_Constructor : declare
8364             Id         : Entity_Id;
8365             Def_Id     : Entity_Id;
8366             Hom_Id     : Entity_Id;
8367             Convention : Convention_Id;
8368
8369          begin
8370             GNAT_Pragma;
8371             Check_Arg_Count (1);
8372             Check_Optional_Identifier (Arg1, Name_Entity);
8373             Check_Arg_Is_Local_Name (Arg1);
8374
8375             Id := Expression (Arg1);
8376             Find_Program_Unit_Name (Id);
8377
8378             --  If we did not find the name, we are done
8379
8380             if Etype (Id) = Any_Type then
8381                return;
8382             end if;
8383
8384             case Prag_Id is
8385                when Pragma_CIL_Constructor  => Convention := Convention_CIL;
8386                when Pragma_Java_Constructor => Convention := Convention_Java;
8387                when others                  => null;
8388             end case;
8389
8390             Hom_Id := Entity (Id);
8391
8392             --  Loop through homonyms
8393
8394             loop
8395                Def_Id := Get_Base_Subprogram (Hom_Id);
8396
8397                --  The constructor is required to be a function returning an
8398                --  access type whose designated type has convention Java/CIL.
8399
8400                if Ekind (Def_Id) = E_Function
8401                  and then
8402                    (Is_Value_Type (Etype (Def_Id))
8403                      or else
8404                        (Ekind (Etype (Def_Id)) = E_Access_Subprogram_Type
8405                          and then
8406                           Atree.Convention (Etype (Def_Id)) = Convention)
8407                      or else
8408                        (Ekind (Etype (Def_Id)) in Access_Kind
8409                          and then
8410                           (Atree.Convention
8411                              (Designated_Type (Etype (Def_Id))) = Convention
8412                             or else
8413                               Atree.Convention
8414                                (Root_Type (Designated_Type (Etype (Def_Id)))) =
8415                                                                  Convention)))
8416                then
8417                   Set_Is_Constructor (Def_Id);
8418                   Set_Convention     (Def_Id, Convention);
8419                   Set_Is_Imported    (Def_Id);
8420
8421                else
8422                   if Convention = Convention_Java then
8423                      Error_Pragma_Arg
8424                        ("pragma% requires function returning a " &
8425                         "'Java access type", Arg1);
8426                   else
8427                      pragma Assert (Convention = Convention_CIL);
8428                      Error_Pragma_Arg
8429                        ("pragma% requires function returning a " &
8430                         "'C'I'L access type", Arg1);
8431                   end if;
8432                end if;
8433
8434                Hom_Id := Homonym (Hom_Id);
8435
8436                exit when No (Hom_Id) or else Scope (Hom_Id) /= Current_Scope;
8437             end loop;
8438          end Java_Constructor;
8439
8440          ----------------------
8441          -- Java_Interface --
8442          ----------------------
8443
8444          --  pragma Java_Interface ([Entity =>] LOCAL_NAME);
8445
8446          when Pragma_Java_Interface => Java_Interface : declare
8447             Arg : Node_Id;
8448             Typ : Entity_Id;
8449
8450          begin
8451             GNAT_Pragma;
8452             Check_Arg_Count (1);
8453             Check_Optional_Identifier (Arg1, Name_Entity);
8454             Check_Arg_Is_Local_Name (Arg1);
8455
8456             Arg := Expression (Arg1);
8457             Analyze (Arg);
8458
8459             if Etype (Arg) = Any_Type then
8460                return;
8461             end if;
8462
8463             if not Is_Entity_Name (Arg)
8464               or else not Is_Type (Entity (Arg))
8465             then
8466                Error_Pragma_Arg ("pragma% requires a type mark", Arg1);
8467             end if;
8468
8469             Typ := Underlying_Type (Entity (Arg));
8470
8471             --  For now simply check some of the semantic constraints on the
8472             --  type. This currently leaves out some restrictions on interface
8473             --  types, namely that the parent type must be java.lang.Object.Typ
8474             --  and that all primitives of the type should be declared
8475             --  abstract. ???
8476
8477             if not Is_Tagged_Type (Typ) or else not Is_Abstract_Type (Typ) then
8478                Error_Pragma_Arg ("pragma% requires an abstract "
8479                  & "tagged type", Arg1);
8480
8481             elsif not Has_Discriminants (Typ)
8482               or else Ekind (Etype (First_Discriminant (Typ)))
8483                         /= E_Anonymous_Access_Type
8484               or else
8485                 not Is_Class_Wide_Type
8486                       (Designated_Type (Etype (First_Discriminant (Typ))))
8487             then
8488                Error_Pragma_Arg
8489                  ("type must have a class-wide access discriminant", Arg1);
8490             end if;
8491          end Java_Interface;
8492
8493          ----------------
8494          -- Keep_Names --
8495          ----------------
8496
8497          --  pragma Keep_Names ([On => ] local_NAME);
8498
8499          when Pragma_Keep_Names => Keep_Names : declare
8500             Arg : Node_Id;
8501
8502          begin
8503             GNAT_Pragma;
8504             Check_Arg_Count (1);
8505             Check_Optional_Identifier (Arg1, Name_On);
8506             Check_Arg_Is_Local_Name (Arg1);
8507
8508             Arg := Expression (Arg1);
8509             Analyze (Arg);
8510
8511             if Etype (Arg) = Any_Type then
8512                return;
8513             end if;
8514
8515             if not Is_Entity_Name (Arg)
8516               or else Ekind (Entity (Arg)) /= E_Enumeration_Type
8517             then
8518                Error_Pragma_Arg
8519                  ("pragma% requires a local enumeration type", Arg1);
8520             end if;
8521
8522             Set_Discard_Names (Entity (Arg), False);
8523          end Keep_Names;
8524
8525          -------------
8526          -- License --
8527          -------------
8528
8529          --  pragma License (RESTRICTED | UNRESTRICTED | GPL | MODIFIED_GPL);
8530
8531          when Pragma_License =>
8532             GNAT_Pragma;
8533             Check_Arg_Count (1);
8534             Check_No_Identifiers;
8535             Check_Valid_Configuration_Pragma;
8536             Check_Arg_Is_Identifier (Arg1);
8537
8538             declare
8539                Sind : constant Source_File_Index :=
8540                         Source_Index (Current_Sem_Unit);
8541
8542             begin
8543                case Chars (Get_Pragma_Arg (Arg1)) is
8544                   when Name_GPL =>
8545                      Set_License (Sind, GPL);
8546
8547                   when Name_Modified_GPL =>
8548                      Set_License (Sind, Modified_GPL);
8549
8550                   when Name_Restricted =>
8551                      Set_License (Sind, Restricted);
8552
8553                   when Name_Unrestricted =>
8554                      Set_License (Sind, Unrestricted);
8555
8556                   when others =>
8557                      Error_Pragma_Arg ("invalid license name", Arg1);
8558                end case;
8559             end;
8560
8561          ---------------
8562          -- Link_With --
8563          ---------------
8564
8565          --  pragma Link_With (string_EXPRESSION {, string_EXPRESSION});
8566
8567          when Pragma_Link_With => Link_With : declare
8568             Arg : Node_Id;
8569
8570          begin
8571             GNAT_Pragma;
8572
8573             if Operating_Mode = Generate_Code
8574               and then In_Extended_Main_Source_Unit (N)
8575             then
8576                Check_At_Least_N_Arguments (1);
8577                Check_No_Identifiers;
8578                Check_Is_In_Decl_Part_Or_Package_Spec;
8579                Check_Arg_Is_Static_Expression (Arg1, Standard_String);
8580                Start_String;
8581
8582                Arg := Arg1;
8583                while Present (Arg) loop
8584                   Check_Arg_Is_Static_Expression (Arg, Standard_String);
8585
8586                   --  Store argument, converting sequences of spaces to a
8587                   --  single null character (this is one of the differences
8588                   --  in processing between Link_With and Linker_Options).
8589
8590                   Arg_Store : declare
8591                      C : constant Char_Code := Get_Char_Code (' ');
8592                      S : constant String_Id :=
8593                            Strval (Expr_Value_S (Expression (Arg)));
8594                      L : constant Nat := String_Length (S);
8595                      F : Nat := 1;
8596
8597                      procedure Skip_Spaces;
8598                      --  Advance F past any spaces
8599
8600                      -----------------
8601                      -- Skip_Spaces --
8602                      -----------------
8603
8604                      procedure Skip_Spaces is
8605                      begin
8606                         while F <= L and then Get_String_Char (S, F) = C loop
8607                            F := F + 1;
8608                         end loop;
8609                      end Skip_Spaces;
8610
8611                   --  Start of processing for Arg_Store
8612
8613                   begin
8614                      Skip_Spaces; -- skip leading spaces
8615
8616                      --  Loop through characters, changing any embedded
8617                      --  sequence of spaces to a single null character (this
8618                      --  is how Link_With/Linker_Options differ)
8619
8620                      while F <= L loop
8621                         if Get_String_Char (S, F) = C then
8622                            Skip_Spaces;
8623                            exit when F > L;
8624                            Store_String_Char (ASCII.NUL);
8625
8626                         else
8627                            Store_String_Char (Get_String_Char (S, F));
8628                            F := F + 1;
8629                         end if;
8630                      end loop;
8631                   end Arg_Store;
8632
8633                   Arg := Next (Arg);
8634
8635                   if Present (Arg) then
8636                      Store_String_Char (ASCII.NUL);
8637                   end if;
8638                end loop;
8639
8640                Store_Linker_Option_String (End_String);
8641             end if;
8642          end Link_With;
8643
8644          ------------------
8645          -- Linker_Alias --
8646          ------------------
8647
8648          --  pragma Linker_Alias (
8649          --      [Entity =>]  LOCAL_NAME
8650          --      [Target =>]  static_string_EXPRESSION);
8651
8652          when Pragma_Linker_Alias =>
8653             GNAT_Pragma;
8654             Check_Arg_Order ((Name_Entity, Name_Target));
8655             Check_Arg_Count (2);
8656             Check_Optional_Identifier (Arg1, Name_Entity);
8657             Check_Optional_Identifier (Arg2, Name_Target);
8658             Check_Arg_Is_Library_Level_Local_Name (Arg1);
8659             Check_Arg_Is_Static_Expression (Arg2, Standard_String);
8660
8661             --  The only processing required is to link this item on to the
8662             --  list of rep items for the given entity. This is accomplished
8663             --  by the call to Rep_Item_Too_Late (when no error is detected
8664             --  and False is returned).
8665
8666             if Rep_Item_Too_Late (Entity (Expression (Arg1)), N) then
8667                return;
8668             else
8669                Set_Has_Gigi_Rep_Item (Entity (Expression (Arg1)));
8670             end if;
8671
8672          ------------------------
8673          -- Linker_Constructor --
8674          ------------------------
8675
8676          --  pragma Linker_Constructor (procedure_LOCAL_NAME);
8677
8678          --  Code is shared with Linker_Destructor
8679
8680          -----------------------
8681          -- Linker_Destructor --
8682          -----------------------
8683
8684          --  pragma Linker_Destructor (procedure_LOCAL_NAME);
8685
8686          when Pragma_Linker_Constructor |
8687               Pragma_Linker_Destructor =>
8688          Linker_Constructor : declare
8689             Arg1_X : Node_Id;
8690             Proc   : Entity_Id;
8691
8692          begin
8693             GNAT_Pragma;
8694             Check_Arg_Count (1);
8695             Check_No_Identifiers;
8696             Check_Arg_Is_Local_Name (Arg1);
8697             Arg1_X := Expression (Arg1);
8698             Analyze (Arg1_X);
8699             Proc := Find_Unique_Parameterless_Procedure (Arg1_X, Arg1);
8700
8701             if not Is_Library_Level_Entity (Proc) then
8702                Error_Pragma_Arg
8703                 ("argument for pragma% must be library level entity", Arg1);
8704             end if;
8705
8706             --  The only processing required is to link this item on to the
8707             --  list of rep items for the given entity. This is accomplished
8708             --  by the call to Rep_Item_Too_Late (when no error is detected
8709             --  and False is returned).
8710
8711             if Rep_Item_Too_Late (Proc, N) then
8712                return;
8713             else
8714                Set_Has_Gigi_Rep_Item (Proc);
8715             end if;
8716          end Linker_Constructor;
8717
8718          --------------------
8719          -- Linker_Options --
8720          --------------------
8721
8722          --  pragma Linker_Options (string_EXPRESSION {, string_EXPRESSION});
8723
8724          when Pragma_Linker_Options => Linker_Options : declare
8725             Arg : Node_Id;
8726
8727          begin
8728             Check_Ada_83_Warning;
8729             Check_No_Identifiers;
8730             Check_Arg_Count (1);
8731             Check_Is_In_Decl_Part_Or_Package_Spec;
8732             Check_Arg_Is_Static_Expression (Arg1, Standard_String);
8733             Start_String (Strval (Expr_Value_S (Expression (Arg1))));
8734
8735             Arg := Arg2;
8736             while Present (Arg) loop
8737                Check_Arg_Is_Static_Expression (Arg, Standard_String);
8738                Store_String_Char (ASCII.NUL);
8739                Store_String_Chars (Strval (Expr_Value_S (Expression (Arg))));
8740                Arg := Next (Arg);
8741             end loop;
8742
8743             if Operating_Mode = Generate_Code
8744               and then In_Extended_Main_Source_Unit (N)
8745             then
8746                Store_Linker_Option_String (End_String);
8747             end if;
8748          end Linker_Options;
8749
8750          --------------------
8751          -- Linker_Section --
8752          --------------------
8753
8754          --  pragma Linker_Section (
8755          --      [Entity  =>]  LOCAL_NAME
8756          --      [Section =>]  static_string_EXPRESSION);
8757
8758          when Pragma_Linker_Section =>
8759             GNAT_Pragma;
8760             Check_Arg_Order ((Name_Entity, Name_Section));
8761             Check_Arg_Count (2);
8762             Check_Optional_Identifier (Arg1, Name_Entity);
8763             Check_Optional_Identifier (Arg2, Name_Section);
8764             Check_Arg_Is_Library_Level_Local_Name (Arg1);
8765             Check_Arg_Is_Static_Expression (Arg2, Standard_String);
8766
8767             --  This pragma applies only to objects
8768
8769             if not Is_Object (Entity (Expression (Arg1))) then
8770                Error_Pragma_Arg ("pragma% applies only to objects", Arg1);
8771             end if;
8772
8773             --  The only processing required is to link this item on to the
8774             --  list of rep items for the given entity. This is accomplished
8775             --  by the call to Rep_Item_Too_Late (when no error is detected
8776             --  and False is returned).
8777
8778             if Rep_Item_Too_Late (Entity (Expression (Arg1)), N) then
8779                return;
8780             else
8781                Set_Has_Gigi_Rep_Item (Entity (Expression (Arg1)));
8782             end if;
8783
8784          ----------
8785          -- List --
8786          ----------
8787
8788          --  pragma List (On | Off)
8789
8790          --  There is nothing to do here, since we did all the processing for
8791          --  this pragma in Par.Prag (so that it works properly even in syntax
8792          --  only mode).
8793
8794          when Pragma_List =>
8795             null;
8796
8797          --------------------
8798          -- Locking_Policy --
8799          --------------------
8800
8801          --  pragma Locking_Policy (policy_IDENTIFIER);
8802
8803          when Pragma_Locking_Policy => declare
8804             LP : Character;
8805
8806          begin
8807             Check_Ada_83_Warning;
8808             Check_Arg_Count (1);
8809             Check_No_Identifiers;
8810             Check_Arg_Is_Locking_Policy (Arg1);
8811             Check_Valid_Configuration_Pragma;
8812             Get_Name_String (Chars (Expression (Arg1)));
8813             LP := Fold_Upper (Name_Buffer (1));
8814
8815             if Locking_Policy /= ' '
8816               and then Locking_Policy /= LP
8817             then
8818                Error_Msg_Sloc := Locking_Policy_Sloc;
8819                Error_Pragma ("locking policy incompatible with policy#");
8820
8821             --  Set new policy, but always preserve System_Location since we
8822             --  like the error message with the run time name.
8823
8824             else
8825                Locking_Policy := LP;
8826
8827                if Locking_Policy_Sloc /= System_Location then
8828                   Locking_Policy_Sloc := Loc;
8829                end if;
8830             end if;
8831          end;
8832
8833          ----------------
8834          -- Long_Float --
8835          ----------------
8836
8837          --  pragma Long_Float (D_Float | G_Float);
8838
8839          when Pragma_Long_Float =>
8840             GNAT_Pragma;
8841             Check_Valid_Configuration_Pragma;
8842             Check_Arg_Count (1);
8843             Check_No_Identifier (Arg1);
8844             Check_Arg_Is_One_Of (Arg1, Name_D_Float, Name_G_Float);
8845
8846             if not OpenVMS_On_Target then
8847                Error_Pragma ("?pragma% ignored (applies only to Open'V'M'S)");
8848             end if;
8849
8850             --  D_Float case
8851
8852             if Chars (Expression (Arg1)) = Name_D_Float then
8853                if Opt.Float_Format_Long = 'G' then
8854                   Error_Pragma ("G_Float previously specified");
8855                end if;
8856
8857                Opt.Float_Format_Long := 'D';
8858
8859             --  G_Float case (this is the default, does not need overriding)
8860
8861             else
8862                if Opt.Float_Format_Long = 'D' then
8863                   Error_Pragma ("D_Float previously specified");
8864                end if;
8865
8866                Opt.Float_Format_Long := 'G';
8867             end if;
8868
8869             Set_Standard_Fpt_Formats;
8870
8871          -----------------------
8872          -- Machine_Attribute --
8873          -----------------------
8874
8875          --  pragma Machine_Attribute (
8876          --       [Entity         =>] LOCAL_NAME,
8877          --       [Attribute_Name =>] static_string_EXPRESSION
8878          --    [, [Info           =>] static_EXPRESSION] );
8879
8880          when Pragma_Machine_Attribute => Machine_Attribute : declare
8881             Def_Id : Entity_Id;
8882
8883          begin
8884             GNAT_Pragma;
8885             Check_Arg_Order ((Name_Entity, Name_Attribute_Name, Name_Info));
8886
8887             if Arg_Count = 3 then
8888                Check_Optional_Identifier (Arg3, Name_Info);
8889                Check_Arg_Is_Static_Expression (Arg3);
8890             else
8891                Check_Arg_Count (2);
8892             end if;
8893
8894             Check_Optional_Identifier (Arg1, Name_Entity);
8895             Check_Optional_Identifier (Arg2, Name_Attribute_Name);
8896             Check_Arg_Is_Local_Name (Arg1);
8897             Check_Arg_Is_Static_Expression (Arg2, Standard_String);
8898             Def_Id := Entity (Expression (Arg1));
8899
8900             if Is_Access_Type (Def_Id) then
8901                Def_Id := Designated_Type (Def_Id);
8902             end if;
8903
8904             if Rep_Item_Too_Early (Def_Id, N) then
8905                return;
8906             end if;
8907
8908             Def_Id := Underlying_Type (Def_Id);
8909
8910             --  The only processing required is to link this item on to the
8911             --  list of rep items for the given entity. This is accomplished
8912             --  by the call to Rep_Item_Too_Late (when no error is detected
8913             --  and False is returned).
8914
8915             if Rep_Item_Too_Late (Def_Id, N) then
8916                return;
8917             else
8918                Set_Has_Gigi_Rep_Item (Entity (Expression (Arg1)));
8919             end if;
8920          end Machine_Attribute;
8921
8922          ----------
8923          -- Main --
8924          ----------
8925
8926          --  pragma Main
8927          --   (MAIN_OPTION [, MAIN_OPTION]);
8928
8929          --  MAIN_OPTION ::=
8930          --    [STACK_SIZE              =>] static_integer_EXPRESSION
8931          --  | [TASK_STACK_SIZE_DEFAULT =>] static_integer_EXPRESSION
8932          --  | [TIME_SLICING_ENABLED    =>] static_boolean_EXPRESSION
8933
8934          when Pragma_Main => Main : declare
8935             Args  : Args_List (1 .. 3);
8936             Names : constant Name_List (1 .. 3) := (
8937                       Name_Stack_Size,
8938                       Name_Task_Stack_Size_Default,
8939                       Name_Time_Slicing_Enabled);
8940
8941             Nod : Node_Id;
8942
8943          begin
8944             GNAT_Pragma;
8945             Gather_Associations (Names, Args);
8946
8947             for J in 1 .. 2 loop
8948                if Present (Args (J)) then
8949                   Check_Arg_Is_Static_Expression (Args (J), Any_Integer);
8950                end if;
8951             end loop;
8952
8953             if Present (Args (3)) then
8954                Check_Arg_Is_Static_Expression (Args (3), Standard_Boolean);
8955             end if;
8956
8957             Nod := Next (N);
8958             while Present (Nod) loop
8959                if Nkind (Nod) = N_Pragma
8960                  and then Pragma_Name (Nod) = Name_Main
8961                then
8962                   Error_Msg_Name_1 := Pname;
8963                   Error_Msg_N ("duplicate pragma% not permitted", Nod);
8964                end if;
8965
8966                Next (Nod);
8967             end loop;
8968          end Main;
8969
8970          ------------------
8971          -- Main_Storage --
8972          ------------------
8973
8974          --  pragma Main_Storage
8975          --   (MAIN_STORAGE_OPTION [, MAIN_STORAGE_OPTION]);
8976
8977          --  MAIN_STORAGE_OPTION ::=
8978          --    [WORKING_STORAGE =>] static_SIMPLE_EXPRESSION
8979          --  | [TOP_GUARD =>] static_SIMPLE_EXPRESSION
8980
8981          when Pragma_Main_Storage => Main_Storage : declare
8982             Args  : Args_List (1 .. 2);
8983             Names : constant Name_List (1 .. 2) := (
8984                       Name_Working_Storage,
8985                       Name_Top_Guard);
8986
8987             Nod : Node_Id;
8988
8989          begin
8990             GNAT_Pragma;
8991             Gather_Associations (Names, Args);
8992
8993             for J in 1 .. 2 loop
8994                if Present (Args (J)) then
8995                   Check_Arg_Is_Static_Expression (Args (J), Any_Integer);
8996                end if;
8997             end loop;
8998
8999             Check_In_Main_Program;
9000
9001             Nod := Next (N);
9002             while Present (Nod) loop
9003                if Nkind (Nod) = N_Pragma
9004                  and then Pragma_Name (Nod) = Name_Main_Storage
9005                then
9006                   Error_Msg_Name_1 := Pname;
9007                   Error_Msg_N ("duplicate pragma% not permitted", Nod);
9008                end if;
9009
9010                Next (Nod);
9011             end loop;
9012          end Main_Storage;
9013
9014          -----------------
9015          -- Memory_Size --
9016          -----------------
9017
9018          --  pragma Memory_Size (NUMERIC_LITERAL)
9019
9020          when Pragma_Memory_Size =>
9021             GNAT_Pragma;
9022
9023             --  Memory size is simply ignored
9024
9025             Check_No_Identifiers;
9026             Check_Arg_Count (1);
9027             Check_Arg_Is_Integer_Literal (Arg1);
9028
9029          -------------
9030          -- No_Body --
9031          -------------
9032
9033          --  pragma No_Body;
9034
9035          --  The only correct use of this pragma is on its own in a file, in
9036          --  which case it is specially processed (see Gnat1drv.Check_Bad_Body
9037          --  and Frontend, which use Sinput.L.Source_File_Is_Pragma_No_Body to
9038          --  check for a file containing nothing but a No_Body pragma). If we
9039          --  attempt to process it during normal semantics processing, it means
9040          --  it was misplaced.
9041
9042          when Pragma_No_Body =>
9043             GNAT_Pragma;
9044             Pragma_Misplaced;
9045
9046          ---------------
9047          -- No_Return --
9048          ---------------
9049
9050          --  pragma No_Return (procedure_LOCAL_NAME {, procedure_Local_Name});
9051
9052          when Pragma_No_Return => No_Return : declare
9053             Id    : Node_Id;
9054             E     : Entity_Id;
9055             Found : Boolean;
9056             Arg   : Node_Id;
9057
9058          begin
9059             Ada_2005_Pragma;
9060             Check_At_Least_N_Arguments (1);
9061
9062             --  Loop through arguments of pragma
9063
9064             Arg := Arg1;
9065             while Present (Arg) loop
9066                Check_Arg_Is_Local_Name (Arg);
9067                Id := Expression (Arg);
9068                Analyze (Id);
9069
9070                if not Is_Entity_Name (Id) then
9071                   Error_Pragma_Arg ("entity name required", Arg);
9072                end if;
9073
9074                if Etype (Id) = Any_Type then
9075                   raise Pragma_Exit;
9076                end if;
9077
9078                --  Loop to find matching procedures
9079
9080                E := Entity (Id);
9081                Found := False;
9082                while Present (E)
9083                  and then Scope (E) = Current_Scope
9084                loop
9085                   if Ekind (E) = E_Procedure
9086                     or else Ekind (E) = E_Generic_Procedure
9087                   then
9088                      Set_No_Return (E);
9089
9090                      --  Set flag on any alias as well
9091
9092                      if Is_Overloadable (E) and then Present (Alias (E)) then
9093                         Set_No_Return (Alias (E));
9094                      end if;
9095
9096                      Found := True;
9097                   end if;
9098
9099                   E := Homonym (E);
9100                end loop;
9101
9102                if not Found then
9103                   Error_Pragma_Arg ("no procedure & found for pragma%", Arg);
9104                end if;
9105
9106                Next (Arg);
9107             end loop;
9108          end No_Return;
9109
9110          -----------------
9111          -- No_Run_Time --
9112          -----------------
9113
9114          --  pragma No_Run_Time;
9115
9116          --  Note: this pragma is retained for backwards compatibility. See
9117          --  body of Rtsfind for full details on its handling.
9118
9119          when Pragma_No_Run_Time =>
9120             GNAT_Pragma;
9121             Check_Valid_Configuration_Pragma;
9122             Check_Arg_Count (0);
9123
9124             No_Run_Time_Mode           := True;
9125             Configurable_Run_Time_Mode := True;
9126
9127             --  Set Duration to 32 bits if word size is 32
9128
9129             if Ttypes.System_Word_Size = 32 then
9130                Duration_32_Bits_On_Target := True;
9131             end if;
9132
9133             --  Set appropriate restrictions
9134
9135             Set_Restriction (No_Finalization, N);
9136             Set_Restriction (No_Exception_Handlers, N);
9137             Set_Restriction (Max_Tasks, N, 0);
9138             Set_Restriction (No_Tasking, N);
9139
9140          ------------------------
9141          -- No_Strict_Aliasing --
9142          ------------------------
9143
9144          --  pragma No_Strict_Aliasing [([Entity =>] type_LOCAL_NAME)];
9145
9146          when Pragma_No_Strict_Aliasing => No_Strict_Aliasing : declare
9147             E_Id : Entity_Id;
9148
9149          begin
9150             GNAT_Pragma;
9151             Check_At_Most_N_Arguments (1);
9152
9153             if Arg_Count = 0 then
9154                Check_Valid_Configuration_Pragma;
9155                Opt.No_Strict_Aliasing := True;
9156
9157             else
9158                Check_Optional_Identifier (Arg2, Name_Entity);
9159                Check_Arg_Is_Local_Name (Arg1);
9160                E_Id := Entity (Expression (Arg1));
9161
9162                if E_Id = Any_Type then
9163                   return;
9164                elsif No (E_Id) or else not Is_Access_Type (E_Id) then
9165                   Error_Pragma_Arg ("pragma% requires access type", Arg1);
9166                end if;
9167
9168                Set_No_Strict_Aliasing (Implementation_Base_Type (E_Id));
9169             end if;
9170          end No_Strict_Aliasing;
9171
9172          -----------------------
9173          -- Normalize_Scalars --
9174          -----------------------
9175
9176          --  pragma Normalize_Scalars;
9177
9178          when Pragma_Normalize_Scalars =>
9179             Check_Ada_83_Warning;
9180             Check_Arg_Count (0);
9181             Check_Valid_Configuration_Pragma;
9182
9183             --  Normalize_Scalars creates false positives in CodePeer, so
9184             --  ignore this pragma in this mode.
9185
9186             if not CodePeer_Mode then
9187                Normalize_Scalars := True;
9188                Init_Or_Norm_Scalars := True;
9189             end if;
9190
9191          -----------------
9192          -- Obsolescent --
9193          -----------------
9194
9195          --  pragma Obsolescent;
9196
9197          --  pragma Obsolescent (
9198          --    [Message =>] static_string_EXPRESSION
9199          --  [,[Version =>] Ada_05]]);
9200
9201          --  pragma Obsolescent (
9202          --    [Entity  =>] NAME
9203          --  [,[Message =>] static_string_EXPRESSION
9204          --  [,[Version =>] Ada_05]] );
9205
9206          when Pragma_Obsolescent => Obsolescent : declare
9207             Ename : Node_Id;
9208             Decl  : Node_Id;
9209
9210             procedure Set_Obsolescent (E : Entity_Id);
9211             --  Given an entity Ent, mark it as obsolescent if appropriate
9212
9213             ---------------------
9214             -- Set_Obsolescent --
9215             ---------------------
9216
9217             procedure Set_Obsolescent (E : Entity_Id) is
9218                Active : Boolean;
9219                Ent    : Entity_Id;
9220                S      : String_Id;
9221
9222             begin
9223                Active := True;
9224                Ent    := E;
9225
9226                --  Entity name was given
9227
9228                if Present (Ename) then
9229
9230                   --  If entity name matches, we are fine. Save entity in
9231                   --  pragma argument, for ASIS use.
9232
9233                   if Chars (Ename) = Chars (Ent) then
9234                      Set_Entity (Ename, Ent);
9235                      Generate_Reference (Ent, Ename);
9236
9237                   --  If entity name does not match, only possibility is an
9238                   --  enumeration literal from an enumeration type declaration.
9239
9240                   elsif Ekind (Ent) /= E_Enumeration_Type then
9241                      Error_Pragma
9242                        ("pragma % entity name does not match declaration");
9243
9244                   else
9245                      Ent := First_Literal (E);
9246                      loop
9247                         if No (Ent) then
9248                            Error_Pragma
9249                              ("pragma % entity name does not match any " &
9250                               "enumeration literal");
9251
9252                         elsif Chars (Ent) = Chars (Ename) then
9253                            Set_Entity (Ename, Ent);
9254                            Generate_Reference (Ent, Ename);
9255                            exit;
9256
9257                         else
9258                            Ent := Next_Literal (Ent);
9259                         end if;
9260                      end loop;
9261                   end if;
9262                end if;
9263
9264                --  Ent points to entity to be marked
9265
9266                if Arg_Count >= 1 then
9267
9268                   --  Deal with static string argument
9269
9270                   Check_Arg_Is_Static_Expression (Arg1, Standard_String);
9271                   S := Strval (Expression (Arg1));
9272
9273                   for J in 1 .. String_Length (S) loop
9274                      if not In_Character_Range (Get_String_Char (S, J)) then
9275                         Error_Pragma_Arg
9276                           ("pragma% argument does not allow wide characters",
9277                            Arg1);
9278                      end if;
9279                   end loop;
9280
9281                   Obsolescent_Warnings.Append
9282                     ((Ent => Ent, Msg => Strval (Expression (Arg1))));
9283
9284                   --  Check for Ada_05 parameter
9285
9286                   if Arg_Count /= 1 then
9287                      Check_Arg_Count (2);
9288
9289                      declare
9290                         Argx : constant Node_Id := Get_Pragma_Arg (Arg2);
9291
9292                      begin
9293                         Check_Arg_Is_Identifier (Argx);
9294
9295                         if Chars (Argx) /= Name_Ada_05 then
9296                            Error_Msg_Name_2 := Name_Ada_05;
9297                            Error_Pragma_Arg
9298                              ("only allowed argument for pragma% is %", Argx);
9299                         end if;
9300
9301                         if Ada_Version_Explicit < Ada_05
9302                           or else not Warn_On_Ada_2005_Compatibility
9303                         then
9304                            Active := False;
9305                         end if;
9306                      end;
9307                   end if;
9308                end if;
9309
9310                --  Set flag if pragma active
9311
9312                if Active then
9313                   Set_Is_Obsolescent (Ent);
9314                end if;
9315
9316                return;
9317             end Set_Obsolescent;
9318
9319          --  Start of processing for pragma Obsolescent
9320
9321          begin
9322             GNAT_Pragma;
9323
9324             Check_At_Most_N_Arguments (3);
9325
9326             --  See if first argument specifies an entity name
9327
9328             if Arg_Count >= 1
9329               and then
9330                 (Chars (Arg1) = Name_Entity
9331                    or else
9332                      Nkind_In (Get_Pragma_Arg (Arg1), N_Character_Literal,
9333                                                       N_Identifier,
9334                                                       N_Operator_Symbol))
9335             then
9336                Ename := Get_Pragma_Arg (Arg1);
9337
9338                --  Eliminate first argument, so we can share processing
9339
9340                Arg1 := Arg2;
9341                Arg2 := Arg3;
9342                Arg_Count := Arg_Count - 1;
9343
9344             --  No Entity name argument given
9345
9346             else
9347                Ename := Empty;
9348             end if;
9349
9350             if Arg_Count >= 1 then
9351                Check_Optional_Identifier (Arg1, Name_Message);
9352
9353                if Arg_Count = 2 then
9354                   Check_Optional_Identifier (Arg2, Name_Version);
9355                end if;
9356             end if;
9357
9358             --  Get immediately preceding declaration
9359
9360             Decl := Prev (N);
9361             while Present (Decl) and then Nkind (Decl) = N_Pragma loop
9362                Prev (Decl);
9363             end loop;
9364
9365             --  Cases where we do not follow anything other than another pragma
9366
9367             if No (Decl) then
9368
9369                --  First case: library level compilation unit declaration with
9370                --  the pragma immediately following the declaration.
9371
9372                if Nkind (Parent (N)) = N_Compilation_Unit_Aux then
9373                   Set_Obsolescent
9374                     (Defining_Entity (Unit (Parent (Parent (N)))));
9375                   return;
9376
9377                --  Case 2: library unit placement for package
9378
9379                else
9380                   declare
9381                      Ent : constant Entity_Id := Find_Lib_Unit_Name;
9382                   begin
9383                      if Is_Package_Or_Generic_Package (Ent) then
9384                         Set_Obsolescent (Ent);
9385                         return;
9386                      end if;
9387                   end;
9388                end if;
9389
9390             --  Cases where we must follow a declaration
9391
9392             else
9393                if         Nkind (Decl) not in N_Declaration
9394                  and then Nkind (Decl) not in N_Later_Decl_Item
9395                  and then Nkind (Decl) not in N_Generic_Declaration
9396                  and then Nkind (Decl) not in N_Renaming_Declaration
9397                then
9398                   Error_Pragma
9399                     ("pragma% misplaced, "
9400                      & "must immediately follow a declaration");
9401
9402                else
9403                   Set_Obsolescent (Defining_Entity (Decl));
9404                   return;
9405                end if;
9406             end if;
9407          end Obsolescent;
9408
9409          --------------
9410          -- Optimize --
9411          --------------
9412
9413          --  pragma Optimize (Time | Space | Off);
9414
9415          --  The actual check for optimize is done in Gigi. Note that this
9416          --  pragma does not actually change the optimization setting, it
9417          --  simply checks that it is consistent with the pragma.
9418
9419          when Pragma_Optimize =>
9420             Check_No_Identifiers;
9421             Check_Arg_Count (1);
9422             Check_Arg_Is_One_Of (Arg1, Name_Time, Name_Space, Name_Off);
9423
9424          ------------------------
9425          -- Optimize_Alignment --
9426          ------------------------
9427
9428          --  pragma Optimize_Alignment (Time | Space | Off);
9429
9430          when Pragma_Optimize_Alignment =>
9431             GNAT_Pragma;
9432             Check_No_Identifiers;
9433             Check_Arg_Count (1);
9434             Check_Valid_Configuration_Pragma;
9435
9436             declare
9437                Nam : constant Name_Id := Chars (Get_Pragma_Arg (Arg1));
9438             begin
9439                case Nam is
9440                   when Name_Time =>
9441                      Opt.Optimize_Alignment := 'T';
9442                   when Name_Space =>
9443                      Opt.Optimize_Alignment := 'S';
9444                   when Name_Off =>
9445                      Opt.Optimize_Alignment := 'O';
9446                   when others =>
9447                      Error_Pragma_Arg ("invalid argument for pragma%", Arg1);
9448                end case;
9449             end;
9450
9451             --  Set indication that mode is set locally. If we are in fact in a
9452             --  configuration pragma file, this setting is harmless since the
9453             --  switch will get reset anyway at the start of each unit.
9454
9455             Optimize_Alignment_Local := True;
9456
9457          ----------
9458          -- Pack --
9459          ----------
9460
9461          --  pragma Pack (first_subtype_LOCAL_NAME);
9462
9463          when Pragma_Pack => Pack : declare
9464             Assoc   : constant Node_Id := Arg1;
9465             Type_Id : Node_Id;
9466             Typ     : Entity_Id;
9467
9468          begin
9469             Check_No_Identifiers;
9470             Check_Arg_Count (1);
9471             Check_Arg_Is_Local_Name (Arg1);
9472
9473             Type_Id := Expression (Assoc);
9474             Find_Type (Type_Id);
9475             Typ := Entity (Type_Id);
9476
9477             if Typ = Any_Type
9478               or else Rep_Item_Too_Early (Typ, N)
9479             then
9480                return;
9481             else
9482                Typ := Underlying_Type (Typ);
9483             end if;
9484
9485             if not Is_Array_Type (Typ) and then not Is_Record_Type (Typ) then
9486                Error_Pragma ("pragma% must specify array or record type");
9487             end if;
9488
9489             Check_First_Subtype (Arg1);
9490
9491             if Has_Pragma_Pack (Typ) then
9492                Error_Pragma ("duplicate pragma%, only one allowed");
9493
9494             --  Array type
9495
9496             elsif Is_Array_Type (Typ) then
9497
9498                --  Pack not allowed for aliased or atomic components
9499
9500                if Has_Aliased_Components (Base_Type (Typ)) then
9501                   Error_Pragma
9502                     ("pragma% ignored, cannot pack aliased components?");
9503
9504                elsif Has_Atomic_Components (Typ)
9505                  or else Is_Atomic (Component_Type (Typ))
9506                then
9507                   Error_Pragma
9508                     ("?pragma% ignored, cannot pack atomic components");
9509                end if;
9510
9511                --  If we had an explicit component size given, then we do not
9512                --  let Pack override this given size. We also give a warning
9513                --  that Pack is being ignored unless we can tell for sure that
9514                --  the Pack would not have had any effect anyway.
9515
9516                if Has_Component_Size_Clause (Typ) then
9517                   if Known_Static_RM_Size (Component_Type (Typ))
9518                     and then
9519                       RM_Size (Component_Type (Typ)) = Component_Size (Typ)
9520                   then
9521                      null;
9522                   else
9523                      Error_Pragma
9524                        ("?pragma% ignored, explicit component size given");
9525                   end if;
9526
9527                --  If no prior array component size given, Pack is effective
9528
9529                else
9530                   if not Rep_Item_Too_Late (Typ, N) then
9531
9532                      --  In the context of static code analysis, we do not need
9533                      --  complex front-end expansions related to pragma Pack,
9534                      --  so disable handling of pragma Pack in this case.
9535
9536                      if CodePeer_Mode then
9537                         null;
9538
9539                      --  For normal non-VM target, do the packing
9540
9541                      elsif VM_Target = No_VM then
9542                         Set_Is_Packed            (Base_Type (Typ));
9543                         Set_Has_Pragma_Pack      (Base_Type (Typ));
9544                            Set_Has_Non_Standard_Rep (Base_Type (Typ));
9545
9546                      --  If we ignore the pack, then warn about this, except
9547                      --  that we suppress the warning in GNAT mode.
9548
9549                      elsif not GNAT_Mode then
9550                         Error_Pragma
9551                           ("?pragma% ignored in this configuration");
9552                      end if;
9553                   end if;
9554                end if;
9555
9556             --  For record types, the pack is always effective
9557
9558             else pragma Assert (Is_Record_Type (Typ));
9559                if not Rep_Item_Too_Late (Typ, N) then
9560                   if VM_Target = No_VM then
9561                      Set_Is_Packed            (Base_Type (Typ));
9562                      Set_Has_Pragma_Pack      (Base_Type (Typ));
9563                      Set_Has_Non_Standard_Rep (Base_Type (Typ));
9564
9565                   elsif not GNAT_Mode then
9566                      Error_Pragma ("?pragma% ignored in this configuration");
9567                   end if;
9568                end if;
9569             end if;
9570          end Pack;
9571
9572          ----------
9573          -- Page --
9574          ----------
9575
9576          --  pragma Page;
9577
9578          --  There is nothing to do here, since we did all the processing for
9579          --  this pragma in Par.Prag (so that it works properly even in syntax
9580          --  only mode).
9581
9582          when Pragma_Page =>
9583             null;
9584
9585          -------------
9586          -- Passive --
9587          -------------
9588
9589          --  pragma Passive [(PASSIVE_FORM)];
9590
9591          --   PASSIVE_FORM ::= Semaphore | No
9592
9593          when Pragma_Passive =>
9594             GNAT_Pragma;
9595
9596             if Nkind (Parent (N)) /= N_Task_Definition then
9597                Error_Pragma ("pragma% must be within task definition");
9598             end if;
9599
9600             if Arg_Count /= 0 then
9601                Check_Arg_Count (1);
9602                Check_Arg_Is_One_Of (Arg1, Name_Semaphore, Name_No);
9603             end if;
9604
9605          ----------------------------------
9606          -- Preelaborable_Initialization --
9607          ----------------------------------
9608
9609          --  pragma Preelaborable_Initialization (DIRECT_NAME);
9610
9611          when Pragma_Preelaborable_Initialization => Preelab_Init : declare
9612             Ent : Entity_Id;
9613
9614          begin
9615             Ada_2005_Pragma;
9616             Check_Arg_Count (1);
9617             Check_No_Identifiers;
9618             Check_Arg_Is_Identifier (Arg1);
9619             Check_Arg_Is_Local_Name (Arg1);
9620             Check_First_Subtype (Arg1);
9621             Ent := Entity (Expression (Arg1));
9622
9623             if not Is_Private_Type (Ent)
9624               and then not Is_Protected_Type (Ent)
9625             then
9626                Error_Pragma_Arg
9627                  ("pragma % can only be applied to private or protected type",
9628                   Arg1);
9629             end if;
9630
9631             --  Give an error if the pragma is applied to a protected type that
9632             --  does not qualify (due to having entries, or due to components
9633             --  that do not qualify).
9634
9635             if Is_Protected_Type (Ent)
9636               and then not Has_Preelaborable_Initialization (Ent)
9637             then
9638                Error_Msg_N
9639                  ("protected type & does not have preelaborable " &
9640                   "initialization", Ent);
9641
9642             --  Otherwise mark the type as definitely having preelaborable
9643             --  initialization.
9644
9645             else
9646                Set_Known_To_Have_Preelab_Init (Ent);
9647             end if;
9648
9649             if Has_Pragma_Preelab_Init (Ent)
9650               and then Warn_On_Redundant_Constructs
9651             then
9652                Error_Pragma ("?duplicate pragma%!");
9653             else
9654                Set_Has_Pragma_Preelab_Init (Ent);
9655             end if;
9656          end Preelab_Init;
9657
9658          --------------------
9659          -- Persistent_BSS --
9660          --------------------
9661
9662          when Pragma_Persistent_BSS => Persistent_BSS :  declare
9663             Decl : Node_Id;
9664             Ent  : Entity_Id;
9665             Prag : Node_Id;
9666
9667          begin
9668             GNAT_Pragma;
9669             Check_At_Most_N_Arguments (1);
9670
9671             --  Case of application to specific object (one argument)
9672
9673             if Arg_Count = 1 then
9674                Check_Arg_Is_Library_Level_Local_Name (Arg1);
9675
9676                if not Is_Entity_Name (Expression (Arg1))
9677                  or else
9678                   (Ekind (Entity (Expression (Arg1))) /= E_Variable
9679                     and then Ekind (Entity (Expression (Arg1))) /= E_Constant)
9680                then
9681                   Error_Pragma_Arg ("pragma% only applies to objects", Arg1);
9682                end if;
9683
9684                Ent := Entity (Expression (Arg1));
9685                Decl := Parent (Ent);
9686
9687                if Rep_Item_Too_Late (Ent, N) then
9688                   return;
9689                end if;
9690
9691                if Present (Expression (Decl)) then
9692                   Error_Pragma_Arg
9693                     ("object for pragma% cannot have initialization", Arg1);
9694                end if;
9695
9696                if not Is_Potentially_Persistent_Type (Etype (Ent)) then
9697                   Error_Pragma_Arg
9698                     ("object type for pragma% is not potentially persistent",
9699                      Arg1);
9700                end if;
9701
9702                Prag :=
9703                  Make_Linker_Section_Pragma
9704                    (Ent, Sloc (N), ".persistent.bss");
9705                Insert_After (N, Prag);
9706                Analyze (Prag);
9707
9708             --  Case of use as configuration pragma with no arguments
9709
9710             else
9711                Check_Valid_Configuration_Pragma;
9712                Persistent_BSS_Mode := True;
9713             end if;
9714          end Persistent_BSS;
9715
9716          -------------
9717          -- Polling --
9718          -------------
9719
9720          --  pragma Polling (ON | OFF);
9721
9722          when Pragma_Polling =>
9723             GNAT_Pragma;
9724             Check_Arg_Count (1);
9725             Check_No_Identifiers;
9726             Check_Arg_Is_One_Of (Arg1, Name_On, Name_Off);
9727             Polling_Required := (Chars (Expression (Arg1)) = Name_On);
9728
9729          -------------------
9730          -- Postcondition --
9731          -------------------
9732
9733          --  pragma Postcondition ([Check   =>] Boolean_Expression
9734          --                      [,[Message =>] String_Expression]);
9735
9736          when Pragma_Postcondition => Postcondition : declare
9737             In_Body : Boolean;
9738             pragma Warnings (Off, In_Body);
9739
9740          begin
9741             GNAT_Pragma;
9742             Check_At_Least_N_Arguments (1);
9743             Check_At_Most_N_Arguments (2);
9744             Check_Optional_Identifier (Arg1, Name_Check);
9745
9746             --  All we need to do here is call the common check procedure,
9747             --  the remainder of the processing is found in Sem_Ch6/Sem_Ch7.
9748
9749             Check_Precondition_Postcondition (In_Body);
9750          end Postcondition;
9751
9752          ------------------
9753          -- Precondition --
9754          ------------------
9755
9756          --  pragma Precondition ([Check   =>] Boolean_Expression
9757          --                     [,[Message =>] String_Expression]);
9758
9759          when Pragma_Precondition => Precondition : declare
9760             In_Body : Boolean;
9761
9762          begin
9763             GNAT_Pragma;
9764             Check_At_Least_N_Arguments (1);
9765             Check_At_Most_N_Arguments (2);
9766             Check_Optional_Identifier (Arg1, Name_Check);
9767
9768             Check_Precondition_Postcondition (In_Body);
9769
9770             --  If in spec, nothing more to do. If in body, then we convert the
9771             --  pragma to pragma Check (Precondition, cond [, msg]). Note we do
9772             --  this whether or not precondition checks are enabled. That works
9773             --  fine since pragma Check will do this check, and will also
9774             --  analyze the condition itself in the proper context.
9775
9776             if In_Body then
9777                if Arg_Count = 2 then
9778                   Check_Optional_Identifier (Arg3, Name_Message);
9779                   Analyze_And_Resolve (Get_Pragma_Arg (Arg2), Standard_String);
9780                end if;
9781
9782                Rewrite (N,
9783                  Make_Pragma (Loc,
9784                    Chars => Name_Check,
9785                    Pragma_Argument_Associations => New_List (
9786                      Make_Pragma_Argument_Association (Loc,
9787                        Expression =>
9788                          Make_Identifier (Loc,
9789                            Chars => Name_Precondition)),
9790
9791                      Make_Pragma_Argument_Association (Sloc (Arg1),
9792                        Expression => Relocate_Node (Get_Pragma_Arg (Arg1))))));
9793
9794                if Arg_Count = 2 then
9795                   Append_To (Pragma_Argument_Associations (N),
9796                     Make_Pragma_Argument_Association (Sloc (Arg2),
9797                       Expression => Relocate_Node (Get_Pragma_Arg (Arg2))));
9798                end if;
9799
9800                Analyze (N);
9801             end if;
9802          end Precondition;
9803
9804          ------------------
9805          -- Preelaborate --
9806          ------------------
9807
9808          --  pragma Preelaborate [(library_unit_NAME)];
9809
9810          --  Set the flag Is_Preelaborated of program unit name entity
9811
9812          when Pragma_Preelaborate => Preelaborate : declare
9813             Pa  : constant Node_Id   := Parent (N);
9814             Pk  : constant Node_Kind := Nkind (Pa);
9815             Ent : Entity_Id;
9816
9817          begin
9818             Check_Ada_83_Warning;
9819             Check_Valid_Library_Unit_Pragma;
9820
9821             if Nkind (N) = N_Null_Statement then
9822                return;
9823             end if;
9824
9825             Ent := Find_Lib_Unit_Name;
9826
9827             --  This filters out pragmas inside generic parent then
9828             --  show up inside instantiation
9829
9830             if Present (Ent)
9831               and then not (Pk = N_Package_Specification
9832                               and then Present (Generic_Parent (Pa)))
9833             then
9834                if not Debug_Flag_U then
9835                   Set_Is_Preelaborated (Ent);
9836                   Set_Suppress_Elaboration_Warnings (Ent);
9837                end if;
9838             end if;
9839          end Preelaborate;
9840
9841          ---------------------
9842          -- Preelaborate_05 --
9843          ---------------------
9844
9845          --  pragma Preelaborate_05 [(library_unit_NAME)];
9846
9847          --  This pragma is useable only in GNAT_Mode, where it is used like
9848          --  pragma Preelaborate but it is only effective in Ada 2005 mode
9849          --  (otherwise it is ignored). This is used to implement AI-362 which
9850          --  recategorizes some run-time packages in Ada 2005 mode.
9851
9852          when Pragma_Preelaborate_05 => Preelaborate_05 : declare
9853             Ent : Entity_Id;
9854
9855          begin
9856             GNAT_Pragma;
9857             Check_Valid_Library_Unit_Pragma;
9858
9859             if not GNAT_Mode then
9860                Error_Pragma ("pragma% only available in GNAT mode");
9861             end if;
9862
9863             if Nkind (N) = N_Null_Statement then
9864                return;
9865             end if;
9866
9867             --  This is one of the few cases where we need to test the value of
9868             --  Ada_Version_Explicit rather than Ada_Version (which is always
9869             --  set to Ada_05 in a predefined unit), we need to know the
9870             --  explicit version set to know if this pragma is active.
9871
9872             if Ada_Version_Explicit >= Ada_05 then
9873                Ent := Find_Lib_Unit_Name;
9874                Set_Is_Preelaborated (Ent);
9875                Set_Suppress_Elaboration_Warnings (Ent);
9876             end if;
9877          end Preelaborate_05;
9878
9879          --------------
9880          -- Priority --
9881          --------------
9882
9883          --  pragma Priority (EXPRESSION);
9884
9885          when Pragma_Priority => Priority : declare
9886             P   : constant Node_Id := Parent (N);
9887             Arg : Node_Id;
9888
9889          begin
9890             Check_No_Identifiers;
9891             Check_Arg_Count (1);
9892
9893             --  Subprogram case
9894
9895             if Nkind (P) = N_Subprogram_Body then
9896                Check_In_Main_Program;
9897
9898                Arg := Expression (Arg1);
9899                Analyze_And_Resolve (Arg, Standard_Integer);
9900
9901                --  Must be static
9902
9903                if not Is_Static_Expression (Arg) then
9904                   Flag_Non_Static_Expr
9905                     ("main subprogram priority is not static!", Arg);
9906                   raise Pragma_Exit;
9907
9908                --  If constraint error, then we already signalled an error
9909
9910                elsif Raises_Constraint_Error (Arg) then
9911                   null;
9912
9913                --  Otherwise check in range
9914
9915                else
9916                   declare
9917                      Val : constant Uint := Expr_Value (Arg);
9918
9919                   begin
9920                      if Val < 0
9921                        or else Val > Expr_Value (Expression
9922                                        (Parent (RTE (RE_Max_Priority))))
9923                      then
9924                         Error_Pragma_Arg
9925                           ("main subprogram priority is out of range", Arg1);
9926                      end if;
9927                   end;
9928                end if;
9929
9930                Set_Main_Priority
9931                     (Current_Sem_Unit, UI_To_Int (Expr_Value (Arg)));
9932
9933                --  Load an arbitrary entity from System.Tasking to make sure
9934                --  this package is implicitly with'ed, since we need to have
9935                --  the tasking run-time active for the pragma Priority to have
9936                --  any effect.
9937
9938                declare
9939                   Discard : Entity_Id;
9940                   pragma Warnings (Off, Discard);
9941                begin
9942                   Discard := RTE (RE_Task_List);
9943                end;
9944
9945             --  Task or Protected, must be of type Integer
9946
9947             elsif Nkind_In (P, N_Protected_Definition, N_Task_Definition) then
9948                Arg := Expression (Arg1);
9949
9950                --  The expression must be analyzed in the special manner
9951                --  described in "Handling of Default and Per-Object
9952                --  Expressions" in sem.ads.
9953
9954                Preanalyze_Spec_Expression (Arg, Standard_Integer);
9955
9956                if not Is_Static_Expression (Arg) then
9957                   Check_Restriction (Static_Priorities, Arg);
9958                end if;
9959
9960             --  Anything else is incorrect
9961
9962             else
9963                Pragma_Misplaced;
9964             end if;
9965
9966             if Has_Priority_Pragma (P) then
9967                Error_Pragma ("duplicate pragma% not allowed");
9968             else
9969                Set_Has_Priority_Pragma (P, True);
9970
9971                if Nkind_In (P, N_Protected_Definition, N_Task_Definition) then
9972                   Record_Rep_Item (Defining_Identifier (Parent (P)), N);
9973                   --  exp_ch9 should use this ???
9974                end if;
9975             end if;
9976          end Priority;
9977
9978          -----------------------------------
9979          -- Priority_Specific_Dispatching --
9980          -----------------------------------
9981
9982          --  pragma Priority_Specific_Dispatching (
9983          --    policy_IDENTIFIER,
9984          --    first_priority_EXPRESSION,
9985          --    last_priority_EXPRESSION);
9986
9987          when Pragma_Priority_Specific_Dispatching =>
9988          Priority_Specific_Dispatching : declare
9989             Prio_Id : constant Entity_Id := RTE (RE_Any_Priority);
9990             --  This is the entity System.Any_Priority;
9991
9992             DP          : Character;
9993             Lower_Bound : Node_Id;
9994             Upper_Bound : Node_Id;
9995             Lower_Val   : Uint;
9996             Upper_Val   : Uint;
9997
9998          begin
9999             Ada_2005_Pragma;
10000             Check_Arg_Count (3);
10001             Check_No_Identifiers;
10002             Check_Arg_Is_Task_Dispatching_Policy (Arg1);
10003             Check_Valid_Configuration_Pragma;
10004             Get_Name_String (Chars (Expression (Arg1)));
10005             DP := Fold_Upper (Name_Buffer (1));
10006
10007             Lower_Bound := Expression (Arg2);
10008             Check_Arg_Is_Static_Expression (Lower_Bound, Standard_Integer);
10009             Lower_Val := Expr_Value (Lower_Bound);
10010
10011             Upper_Bound := Expression (Arg3);
10012             Check_Arg_Is_Static_Expression (Upper_Bound, Standard_Integer);
10013             Upper_Val := Expr_Value (Upper_Bound);
10014
10015             --  It is not allowed to use Task_Dispatching_Policy and
10016             --  Priority_Specific_Dispatching in the same partition.
10017
10018             if Task_Dispatching_Policy /= ' ' then
10019                Error_Msg_Sloc := Task_Dispatching_Policy_Sloc;
10020                Error_Pragma
10021                  ("pragma% incompatible with Task_Dispatching_Policy#");
10022
10023             --  Check lower bound in range
10024
10025             elsif Lower_Val < Expr_Value (Type_Low_Bound (Prio_Id))
10026                     or else
10027                   Lower_Val > Expr_Value (Type_High_Bound (Prio_Id))
10028             then
10029                Error_Pragma_Arg
10030                  ("first_priority is out of range", Arg2);
10031
10032             --  Check upper bound in range
10033
10034             elsif Upper_Val < Expr_Value (Type_Low_Bound (Prio_Id))
10035                     or else
10036                   Upper_Val > Expr_Value (Type_High_Bound (Prio_Id))
10037             then
10038                Error_Pragma_Arg
10039                  ("last_priority is out of range", Arg3);
10040
10041             --  Check that the priority range is valid
10042
10043             elsif Lower_Val > Upper_Val then
10044                Error_Pragma
10045                  ("last_priority_expression must be greater than" &
10046                   " or equal to first_priority_expression");
10047
10048             --  Store the new policy, but always preserve System_Location since
10049             --  we like the error message with the run-time name.
10050
10051             else
10052                --  Check overlapping in the priority ranges specified in other
10053                --  Priority_Specific_Dispatching pragmas within the same
10054                --  partition. We can only check those we know about!
10055
10056                for J in
10057                   Specific_Dispatching.First .. Specific_Dispatching.Last
10058                loop
10059                   if Specific_Dispatching.Table (J).First_Priority in
10060                     UI_To_Int (Lower_Val) .. UI_To_Int (Upper_Val)
10061                   or else Specific_Dispatching.Table (J).Last_Priority in
10062                     UI_To_Int (Lower_Val) .. UI_To_Int (Upper_Val)
10063                   then
10064                      Error_Msg_Sloc :=
10065                        Specific_Dispatching.Table (J).Pragma_Loc;
10066                         Error_Pragma
10067                           ("priority range overlaps with "
10068                            & "Priority_Specific_Dispatching#");
10069                   end if;
10070                end loop;
10071
10072                --  The use of Priority_Specific_Dispatching is incompatible
10073                --  with Task_Dispatching_Policy.
10074
10075                if Task_Dispatching_Policy /= ' ' then
10076                   Error_Msg_Sloc := Task_Dispatching_Policy_Sloc;
10077                      Error_Pragma
10078                        ("Priority_Specific_Dispatching incompatible "
10079                         & "with Task_Dispatching_Policy#");
10080                end if;
10081
10082                --  The use of Priority_Specific_Dispatching forces ceiling
10083                --  locking policy.
10084
10085                if Locking_Policy /= ' ' and then Locking_Policy /= 'C' then
10086                   Error_Msg_Sloc := Locking_Policy_Sloc;
10087                      Error_Pragma
10088                        ("Priority_Specific_Dispatching incompatible "
10089                         & "with Locking_Policy#");
10090
10091                --  Set the Ceiling_Locking policy, but preserve System_Location
10092                --  since we like the error message with the run time name.
10093
10094                else
10095                   Locking_Policy := 'C';
10096
10097                   if Locking_Policy_Sloc /= System_Location then
10098                      Locking_Policy_Sloc := Loc;
10099                   end if;
10100                end if;
10101
10102                --  Add entry in the table
10103
10104                Specific_Dispatching.Append
10105                     ((Dispatching_Policy => DP,
10106                       First_Priority     => UI_To_Int (Lower_Val),
10107                       Last_Priority      => UI_To_Int (Upper_Val),
10108                       Pragma_Loc         => Loc));
10109             end if;
10110          end Priority_Specific_Dispatching;
10111
10112          -------------
10113          -- Profile --
10114          -------------
10115
10116          --  pragma Profile (profile_IDENTIFIER);
10117
10118          --  profile_IDENTIFIER => Restricted | Ravenscar
10119
10120          when Pragma_Profile =>
10121             Ada_2005_Pragma;
10122             Check_Arg_Count (1);
10123             Check_Valid_Configuration_Pragma;
10124             Check_No_Identifiers;
10125
10126             declare
10127                Argx : constant Node_Id := Get_Pragma_Arg (Arg1);
10128             begin
10129                if Chars (Argx) = Name_Ravenscar then
10130                   Set_Ravenscar_Profile (N);
10131                elsif Chars (Argx) = Name_Restricted then
10132                   Set_Profile_Restrictions
10133                     (Restricted, N, Warn => Treat_Restrictions_As_Warnings);
10134                else
10135                   Error_Pragma_Arg ("& is not a valid profile", Argx);
10136                end if;
10137             end;
10138
10139          ----------------------
10140          -- Profile_Warnings --
10141          ----------------------
10142
10143          --  pragma Profile_Warnings (profile_IDENTIFIER);
10144
10145          --  profile_IDENTIFIER => Restricted | Ravenscar
10146
10147          when Pragma_Profile_Warnings =>
10148             GNAT_Pragma;
10149             Check_Arg_Count (1);
10150             Check_Valid_Configuration_Pragma;
10151             Check_No_Identifiers;
10152
10153             declare
10154                Argx : constant Node_Id := Get_Pragma_Arg (Arg1);
10155             begin
10156                if Chars (Argx) = Name_Ravenscar then
10157                   Set_Profile_Restrictions (Ravenscar, N, Warn => True);
10158                elsif Chars (Argx) = Name_Restricted then
10159                   Set_Profile_Restrictions (Restricted, N, Warn => True);
10160                else
10161                   Error_Pragma_Arg ("& is not a valid profile", Argx);
10162                end if;
10163             end;
10164
10165          --------------------------
10166          -- Propagate_Exceptions --
10167          --------------------------
10168
10169          --  pragma Propagate_Exceptions;
10170
10171          --  Note: this pragma is obsolete and has no effect
10172
10173          when Pragma_Propagate_Exceptions =>
10174             GNAT_Pragma;
10175             Check_Arg_Count (0);
10176
10177             if In_Extended_Main_Source_Unit (N) then
10178                Propagate_Exceptions := True;
10179             end if;
10180
10181          ------------------
10182          -- Psect_Object --
10183          ------------------
10184
10185          --  pragma Psect_Object (
10186          --        [Internal =>] LOCAL_NAME,
10187          --     [, [External =>] EXTERNAL_SYMBOL]
10188          --     [, [Size     =>] EXTERNAL_SYMBOL]);
10189
10190          when Pragma_Psect_Object | Pragma_Common_Object =>
10191          Psect_Object : declare
10192             Args  : Args_List (1 .. 3);
10193             Names : constant Name_List (1 .. 3) := (
10194                       Name_Internal,
10195                       Name_External,
10196                       Name_Size);
10197
10198             Internal : Node_Id renames Args (1);
10199             External : Node_Id renames Args (2);
10200             Size     : Node_Id renames Args (3);
10201
10202             Def_Id : Entity_Id;
10203
10204             procedure Check_Too_Long (Arg : Node_Id);
10205             --  Posts message if the argument is an identifier with more
10206             --  than 31 characters, or a string literal with more than
10207             --  31 characters, and we are operating under VMS
10208
10209             --------------------
10210             -- Check_Too_Long --
10211             --------------------
10212
10213             procedure Check_Too_Long (Arg : Node_Id) is
10214                X : constant Node_Id := Original_Node (Arg);
10215
10216             begin
10217                if not Nkind_In (X, N_String_Literal, N_Identifier) then
10218                   Error_Pragma_Arg
10219                     ("inappropriate argument for pragma %", Arg);
10220                end if;
10221
10222                if OpenVMS_On_Target then
10223                   if (Nkind (X) = N_String_Literal
10224                        and then String_Length (Strval (X)) > 31)
10225                     or else
10226                      (Nkind (X) = N_Identifier
10227                        and then Length_Of_Name (Chars (X)) > 31)
10228                   then
10229                      Error_Pragma_Arg
10230                        ("argument for pragma % is longer than 31 characters",
10231                         Arg);
10232                   end if;
10233                end if;
10234             end Check_Too_Long;
10235
10236          --  Start of processing for Common_Object/Psect_Object
10237
10238          begin
10239             GNAT_Pragma;
10240             Gather_Associations (Names, Args);
10241             Process_Extended_Import_Export_Internal_Arg (Internal);
10242
10243             Def_Id := Entity (Internal);
10244
10245             if Ekind (Def_Id) /= E_Constant
10246               and then Ekind (Def_Id) /= E_Variable
10247             then
10248                Error_Pragma_Arg
10249                  ("pragma% must designate an object", Internal);
10250             end if;
10251
10252             Check_Too_Long (Internal);
10253
10254             if Is_Imported (Def_Id) or else Is_Exported (Def_Id) then
10255                Error_Pragma_Arg
10256                  ("cannot use pragma% for imported/exported object",
10257                   Internal);
10258             end if;
10259
10260             if Is_Concurrent_Type (Etype (Internal)) then
10261                Error_Pragma_Arg
10262                  ("cannot specify pragma % for task/protected object",
10263                   Internal);
10264             end if;
10265
10266             if Has_Rep_Pragma (Def_Id, Name_Common_Object)
10267                  or else
10268                Has_Rep_Pragma (Def_Id, Name_Psect_Object)
10269             then
10270                Error_Msg_N ("?duplicate Common/Psect_Object pragma", N);
10271             end if;
10272
10273             if Ekind (Def_Id) = E_Constant then
10274                Error_Pragma_Arg
10275                  ("cannot specify pragma % for a constant", Internal);
10276             end if;
10277
10278             if Is_Record_Type (Etype (Internal)) then
10279                declare
10280                   Ent  : Entity_Id;
10281                   Decl : Entity_Id;
10282
10283                begin
10284                   Ent := First_Entity (Etype (Internal));
10285                   while Present (Ent) loop
10286                      Decl := Declaration_Node (Ent);
10287
10288                      if Ekind (Ent) = E_Component
10289                        and then Nkind (Decl) = N_Component_Declaration
10290                        and then Present (Expression (Decl))
10291                        and then Warn_On_Export_Import
10292                      then
10293                         Error_Msg_N
10294                           ("?object for pragma % has defaults", Internal);
10295                         exit;
10296
10297                      else
10298                         Next_Entity (Ent);
10299                      end if;
10300                   end loop;
10301                end;
10302             end if;
10303
10304             if Present (Size) then
10305                Check_Too_Long (Size);
10306             end if;
10307
10308             if Present (External) then
10309                Check_Arg_Is_External_Name (External);
10310                Check_Too_Long (External);
10311             end if;
10312
10313             --  If all error tests pass, link pragma on to the rep item chain
10314
10315             Record_Rep_Item (Def_Id, N);
10316          end Psect_Object;
10317
10318          ----------
10319          -- Pure --
10320          ----------
10321
10322          --  pragma Pure [(library_unit_NAME)];
10323
10324          when Pragma_Pure => Pure : declare
10325             Ent : Entity_Id;
10326
10327          begin
10328             Check_Ada_83_Warning;
10329             Check_Valid_Library_Unit_Pragma;
10330
10331             if Nkind (N) = N_Null_Statement then
10332                return;
10333             end if;
10334
10335             Ent := Find_Lib_Unit_Name;
10336             Set_Is_Pure (Ent);
10337             Set_Has_Pragma_Pure (Ent);
10338             Set_Suppress_Elaboration_Warnings (Ent);
10339          end Pure;
10340
10341          -------------
10342          -- Pure_05 --
10343          -------------
10344
10345          --  pragma Pure_05 [(library_unit_NAME)];
10346
10347          --  This pragma is useable only in GNAT_Mode, where it is used like
10348          --  pragma Pure but it is only effective in Ada 2005 mode (otherwise
10349          --  it is ignored). It may be used after a pragma Preelaborate, in
10350          --  which case it overrides the effect of the pragma Preelaborate.
10351          --  This is used to implement AI-362 which recategorizes some run-time
10352          --  packages in Ada 2005 mode.
10353
10354          when Pragma_Pure_05 => Pure_05 : declare
10355             Ent : Entity_Id;
10356
10357          begin
10358             GNAT_Pragma;
10359             Check_Valid_Library_Unit_Pragma;
10360
10361             if not GNAT_Mode then
10362                Error_Pragma ("pragma% only available in GNAT mode");
10363             end if;
10364
10365             if Nkind (N) = N_Null_Statement then
10366                return;
10367             end if;
10368
10369             --  This is one of the few cases where we need to test the value of
10370             --  Ada_Version_Explicit rather than Ada_Version (which is always
10371             --  set to Ada_05 in a predefined unit), we need to know the
10372             --  explicit version set to know if this pragma is active.
10373
10374             if Ada_Version_Explicit >= Ada_05 then
10375                Ent := Find_Lib_Unit_Name;
10376                Set_Is_Preelaborated (Ent, False);
10377                Set_Is_Pure (Ent);
10378                Set_Suppress_Elaboration_Warnings (Ent);
10379             end if;
10380          end Pure_05;
10381
10382          -------------------
10383          -- Pure_Function --
10384          -------------------
10385
10386          --  pragma Pure_Function ([Entity =>] function_LOCAL_NAME);
10387
10388          when Pragma_Pure_Function => Pure_Function : declare
10389             E_Id      : Node_Id;
10390             E         : Entity_Id;
10391             Def_Id    : Entity_Id;
10392             Effective : Boolean := False;
10393
10394          begin
10395             GNAT_Pragma;
10396             Check_Arg_Count (1);
10397             Check_Optional_Identifier (Arg1, Name_Entity);
10398             Check_Arg_Is_Local_Name (Arg1);
10399             E_Id := Expression (Arg1);
10400
10401             if Error_Posted (E_Id) then
10402                return;
10403             end if;
10404
10405             --  Loop through homonyms (overloadings) of referenced entity
10406
10407             E := Entity (E_Id);
10408
10409             if Present (E) then
10410                loop
10411                   Def_Id := Get_Base_Subprogram (E);
10412
10413                   if Ekind (Def_Id) /= E_Function
10414                     and then Ekind (Def_Id) /= E_Generic_Function
10415                     and then Ekind (Def_Id) /= E_Operator
10416                   then
10417                      Error_Pragma_Arg
10418                        ("pragma% requires a function name", Arg1);
10419                   end if;
10420
10421                   Set_Is_Pure (Def_Id);
10422
10423                   if not Has_Pragma_Pure_Function (Def_Id) then
10424                      Set_Has_Pragma_Pure_Function (Def_Id);
10425                      Effective := True;
10426                   end if;
10427
10428                   E := Homonym (E);
10429                   exit when No (E) or else Scope (E) /= Current_Scope;
10430                end loop;
10431
10432                if not Effective
10433                  and then Warn_On_Redundant_Constructs
10434                then
10435                   Error_Msg_NE ("pragma Pure_Function on& is redundant?",
10436                     N, Entity (E_Id));
10437                end if;
10438             end if;
10439          end Pure_Function;
10440
10441          --------------------
10442          -- Queuing_Policy --
10443          --------------------
10444
10445          --  pragma Queuing_Policy (policy_IDENTIFIER);
10446
10447          when Pragma_Queuing_Policy => declare
10448             QP : Character;
10449
10450          begin
10451             Check_Ada_83_Warning;
10452             Check_Arg_Count (1);
10453             Check_No_Identifiers;
10454             Check_Arg_Is_Queuing_Policy (Arg1);
10455             Check_Valid_Configuration_Pragma;
10456             Get_Name_String (Chars (Expression (Arg1)));
10457             QP := Fold_Upper (Name_Buffer (1));
10458
10459             if Queuing_Policy /= ' '
10460               and then Queuing_Policy /= QP
10461             then
10462                Error_Msg_Sloc := Queuing_Policy_Sloc;
10463                Error_Pragma ("queuing policy incompatible with policy#");
10464
10465             --  Set new policy, but always preserve System_Location since we
10466             --  like the error message with the run time name.
10467
10468             else
10469                Queuing_Policy := QP;
10470
10471                if Queuing_Policy_Sloc /= System_Location then
10472                   Queuing_Policy_Sloc := Loc;
10473                end if;
10474             end if;
10475          end;
10476
10477          -----------------------
10478          -- Relative_Deadline --
10479          -----------------------
10480
10481          --  pragma Relative_Deadline (time_span_EXPRESSION);
10482
10483          when Pragma_Relative_Deadline => Relative_Deadline : declare
10484             P   : constant Node_Id := Parent (N);
10485             Arg : Node_Id;
10486
10487          begin
10488             Ada_2005_Pragma;
10489             Check_No_Identifiers;
10490             Check_Arg_Count (1);
10491
10492             Arg := Expression (Arg1);
10493
10494             --  The expression must be analyzed in the special manner described
10495             --  in "Handling of Default and Per-Object Expressions" in sem.ads.
10496
10497             Preanalyze_Spec_Expression (Arg, RTE (RE_Time_Span));
10498
10499             --  Subprogram case
10500
10501             if Nkind (P) = N_Subprogram_Body then
10502                Check_In_Main_Program;
10503
10504             --  Tasks
10505
10506             elsif Nkind (P) = N_Task_Definition then
10507                null;
10508
10509             --  Anything else is incorrect
10510
10511             else
10512                Pragma_Misplaced;
10513             end if;
10514
10515             if Has_Relative_Deadline_Pragma (P) then
10516                Error_Pragma ("duplicate pragma% not allowed");
10517             else
10518                Set_Has_Relative_Deadline_Pragma (P, True);
10519
10520                if Nkind (P) = N_Task_Definition then
10521                   Record_Rep_Item (Defining_Identifier (Parent (P)), N);
10522                end if;
10523             end if;
10524          end Relative_Deadline;
10525
10526          ---------------------------
10527          -- Remote_Call_Interface --
10528          ---------------------------
10529
10530          --  pragma Remote_Call_Interface [(library_unit_NAME)];
10531
10532          when Pragma_Remote_Call_Interface => Remote_Call_Interface : declare
10533             Cunit_Node : Node_Id;
10534             Cunit_Ent  : Entity_Id;
10535             K          : Node_Kind;
10536
10537          begin
10538             Check_Ada_83_Warning;
10539             Check_Valid_Library_Unit_Pragma;
10540
10541             if Nkind (N) = N_Null_Statement then
10542                return;
10543             end if;
10544
10545             Cunit_Node := Cunit (Current_Sem_Unit);
10546             K          := Nkind (Unit (Cunit_Node));
10547             Cunit_Ent  := Cunit_Entity (Current_Sem_Unit);
10548
10549             if K = N_Package_Declaration
10550               or else K = N_Generic_Package_Declaration
10551               or else K = N_Subprogram_Declaration
10552               or else K = N_Generic_Subprogram_Declaration
10553               or else (K = N_Subprogram_Body
10554                          and then Acts_As_Spec (Unit (Cunit_Node)))
10555             then
10556                null;
10557             else
10558                Error_Pragma (
10559                  "pragma% must apply to package or subprogram declaration");
10560             end if;
10561
10562             Set_Is_Remote_Call_Interface (Cunit_Ent);
10563          end Remote_Call_Interface;
10564
10565          ------------------
10566          -- Remote_Types --
10567          ------------------
10568
10569          --  pragma Remote_Types [(library_unit_NAME)];
10570
10571          when Pragma_Remote_Types => Remote_Types : declare
10572             Cunit_Node : Node_Id;
10573             Cunit_Ent  : Entity_Id;
10574
10575          begin
10576             Check_Ada_83_Warning;
10577             Check_Valid_Library_Unit_Pragma;
10578
10579             if Nkind (N) = N_Null_Statement then
10580                return;
10581             end if;
10582
10583             Cunit_Node := Cunit (Current_Sem_Unit);
10584             Cunit_Ent  := Cunit_Entity (Current_Sem_Unit);
10585
10586             if not Nkind_In (Unit (Cunit_Node), N_Package_Declaration,
10587                                                 N_Generic_Package_Declaration)
10588             then
10589                Error_Pragma
10590                  ("pragma% can only apply to a package declaration");
10591             end if;
10592
10593             Set_Is_Remote_Types (Cunit_Ent);
10594          end Remote_Types;
10595
10596          ---------------
10597          -- Ravenscar --
10598          ---------------
10599
10600          --  pragma Ravenscar;
10601
10602          when Pragma_Ravenscar =>
10603             GNAT_Pragma;
10604             Check_Arg_Count (0);
10605             Check_Valid_Configuration_Pragma;
10606             Set_Ravenscar_Profile (N);
10607
10608             if Warn_On_Obsolescent_Feature then
10609                Error_Msg_N
10610                  ("pragma Ravenscar is an obsolescent feature?", N);
10611                Error_Msg_N
10612                  ("|use pragma Profile (Ravenscar) instead", N);
10613             end if;
10614
10615          -------------------------
10616          -- Restricted_Run_Time --
10617          -------------------------
10618
10619          --  pragma Restricted_Run_Time;
10620
10621          when Pragma_Restricted_Run_Time =>
10622             GNAT_Pragma;
10623             Check_Arg_Count (0);
10624             Check_Valid_Configuration_Pragma;
10625             Set_Profile_Restrictions
10626               (Restricted, N, Warn => Treat_Restrictions_As_Warnings);
10627
10628             if Warn_On_Obsolescent_Feature then
10629                Error_Msg_N
10630                  ("pragma Restricted_Run_Time is an obsolescent feature?", N);
10631                Error_Msg_N
10632                  ("|use pragma Profile (Restricted) instead", N);
10633             end if;
10634
10635          ------------------
10636          -- Restrictions --
10637          ------------------
10638
10639          --  pragma Restrictions (RESTRICTION {, RESTRICTION});
10640
10641          --  RESTRICTION ::=
10642          --    restriction_IDENTIFIER
10643          --  | restriction_parameter_IDENTIFIER => EXPRESSION
10644
10645          when Pragma_Restrictions =>
10646             Process_Restrictions_Or_Restriction_Warnings
10647               (Warn => Treat_Restrictions_As_Warnings);
10648
10649          --------------------------
10650          -- Restriction_Warnings --
10651          --------------------------
10652
10653          --  pragma Restriction_Warnings (RESTRICTION {, RESTRICTION});
10654
10655          --  RESTRICTION ::=
10656          --    restriction_IDENTIFIER
10657          --  | restriction_parameter_IDENTIFIER => EXPRESSION
10658
10659          when Pragma_Restriction_Warnings =>
10660             GNAT_Pragma;
10661             Process_Restrictions_Or_Restriction_Warnings (Warn => True);
10662
10663          ----------------
10664          -- Reviewable --
10665          ----------------
10666
10667          --  pragma Reviewable;
10668
10669          when Pragma_Reviewable =>
10670             Check_Ada_83_Warning;
10671             Check_Arg_Count (0);
10672
10673             --  Call dummy debugging function rv. This is done to assist front
10674             --  end debugging. By placing a Reviewable pragma in the source
10675             --  program, a breakpoint on rv catches this place in the source,
10676             --  allowing convenient stepping to the point of interest.
10677
10678             rv;
10679
10680          --------------------------
10681          -- Short_Circuit_And_Or --
10682          --------------------------
10683
10684          when Pragma_Short_Circuit_And_Or =>
10685             GNAT_Pragma;
10686             Check_Arg_Count (0);
10687             Check_Valid_Configuration_Pragma;
10688             Short_Circuit_And_Or := True;
10689
10690          -------------------
10691          -- Share_Generic --
10692          -------------------
10693
10694          --  pragma Share_Generic (NAME {, NAME});
10695
10696          when Pragma_Share_Generic =>
10697             GNAT_Pragma;
10698             Process_Generic_List;
10699
10700          ------------
10701          -- Shared --
10702          ------------
10703
10704          --  pragma Shared (LOCAL_NAME);
10705
10706          when Pragma_Shared =>
10707             GNAT_Pragma;
10708             Process_Atomic_Shared_Volatile;
10709
10710          --------------------
10711          -- Shared_Passive --
10712          --------------------
10713
10714          --  pragma Shared_Passive [(library_unit_NAME)];
10715
10716          --  Set the flag Is_Shared_Passive of program unit name entity
10717
10718          when Pragma_Shared_Passive => Shared_Passive : declare
10719             Cunit_Node : Node_Id;
10720             Cunit_Ent  : Entity_Id;
10721
10722          begin
10723             Check_Ada_83_Warning;
10724             Check_Valid_Library_Unit_Pragma;
10725
10726             if Nkind (N) = N_Null_Statement then
10727                return;
10728             end if;
10729
10730             Cunit_Node := Cunit (Current_Sem_Unit);
10731             Cunit_Ent  := Cunit_Entity (Current_Sem_Unit);
10732
10733             if not Nkind_In (Unit (Cunit_Node), N_Package_Declaration,
10734                                                 N_Generic_Package_Declaration)
10735             then
10736                Error_Pragma
10737                  ("pragma% can only apply to a package declaration");
10738             end if;
10739
10740             Set_Is_Shared_Passive (Cunit_Ent);
10741          end Shared_Passive;
10742
10743          ----------------------
10744          -- Source_File_Name --
10745          ----------------------
10746
10747          --  There are five forms for this pragma:
10748
10749          --  pragma Source_File_Name (
10750          --    [UNIT_NAME      =>] unit_NAME,
10751          --     BODY_FILE_NAME =>  STRING_LITERAL
10752          --    [, [INDEX =>] INTEGER_LITERAL]);
10753
10754          --  pragma Source_File_Name (
10755          --    [UNIT_NAME      =>] unit_NAME,
10756          --     SPEC_FILE_NAME =>  STRING_LITERAL
10757          --    [, [INDEX =>] INTEGER_LITERAL]);
10758
10759          --  pragma Source_File_Name (
10760          --     BODY_FILE_NAME  => STRING_LITERAL
10761          --  [, DOT_REPLACEMENT => STRING_LITERAL]
10762          --  [, CASING          => CASING_SPEC]);
10763
10764          --  pragma Source_File_Name (
10765          --     SPEC_FILE_NAME  => STRING_LITERAL
10766          --  [, DOT_REPLACEMENT => STRING_LITERAL]
10767          --  [, CASING          => CASING_SPEC]);
10768
10769          --  pragma Source_File_Name (
10770          --     SUBUNIT_FILE_NAME  => STRING_LITERAL
10771          --  [, DOT_REPLACEMENT    => STRING_LITERAL]
10772          --  [, CASING             => CASING_SPEC]);
10773
10774          --  CASING_SPEC ::= Uppercase | Lowercase | Mixedcase
10775
10776          --  Pragma Source_File_Name_Project (SFNP) is equivalent to pragma
10777          --  Source_File_Name (SFN), however their usage is exclusive: SFN can
10778          --  only be used when no project file is used, while SFNP can only be
10779          --  used when a project file is used.
10780
10781          --  No processing here. Processing was completed during parsing, since
10782          --  we need to have file names set as early as possible. Units are
10783          --  loaded well before semantic processing starts.
10784
10785          --  The only processing we defer to this point is the check for
10786          --  correct placement.
10787
10788          when Pragma_Source_File_Name =>
10789             GNAT_Pragma;
10790             Check_Valid_Configuration_Pragma;
10791
10792          ------------------------------
10793          -- Source_File_Name_Project --
10794          ------------------------------
10795
10796          --  See Source_File_Name for syntax
10797
10798          --  No processing here. Processing was completed during parsing, since
10799          --  we need to have file names set as early as possible. Units are
10800          --  loaded well before semantic processing starts.
10801
10802          --  The only processing we defer to this point is the check for
10803          --  correct placement.
10804
10805          when Pragma_Source_File_Name_Project =>
10806             GNAT_Pragma;
10807             Check_Valid_Configuration_Pragma;
10808
10809             --  Check that a pragma Source_File_Name_Project is used only in a
10810             --  configuration pragmas file.
10811
10812             --  Pragmas Source_File_Name_Project should only be generated by
10813             --  the Project Manager in configuration pragmas files.
10814
10815             --  This is really an ugly test. It seems to depend on some
10816             --  accidental and undocumented property. At the very least it
10817             --  needs to be documented, but it would be better to have a
10818             --  clean way of testing if we are in a configuration file???
10819
10820             if Present (Parent (N)) then
10821                Error_Pragma
10822                  ("pragma% can only appear in a configuration pragmas file");
10823             end if;
10824
10825          ----------------------
10826          -- Source_Reference --
10827          ----------------------
10828
10829          --  pragma Source_Reference (INTEGER_LITERAL [, STRING_LITERAL]);
10830
10831          --  Nothing to do, all processing completed in Par.Prag, since we need
10832          --  the information for possible parser messages that are output.
10833
10834          when Pragma_Source_Reference =>
10835             GNAT_Pragma;
10836
10837          --------------------------------
10838          -- Static_Elaboration_Desired --
10839          --------------------------------
10840
10841          --  pragma Static_Elaboration_Desired (DIRECT_NAME);
10842
10843          when Pragma_Static_Elaboration_Desired =>
10844             GNAT_Pragma;
10845             Check_At_Most_N_Arguments (1);
10846
10847             if Is_Compilation_Unit (Current_Scope)
10848               and then Ekind (Current_Scope) = E_Package
10849             then
10850                Set_Static_Elaboration_Desired (Current_Scope, True);
10851             else
10852                Error_Pragma ("pragma% must apply to a library-level package");
10853             end if;
10854
10855          ------------------
10856          -- Storage_Size --
10857          ------------------
10858
10859          --  pragma Storage_Size (EXPRESSION);
10860
10861          when Pragma_Storage_Size => Storage_Size : declare
10862             P   : constant Node_Id := Parent (N);
10863             Arg : Node_Id;
10864
10865          begin
10866             Check_No_Identifiers;
10867             Check_Arg_Count (1);
10868
10869             --  The expression must be analyzed in the special manner described
10870             --  in "Handling of Default Expressions" in sem.ads.
10871
10872             Arg := Expression (Arg1);
10873             Preanalyze_Spec_Expression (Arg, Any_Integer);
10874
10875             if not Is_Static_Expression (Arg) then
10876                Check_Restriction (Static_Storage_Size, Arg);
10877             end if;
10878
10879             if Nkind (P) /= N_Task_Definition then
10880                Pragma_Misplaced;
10881                return;
10882
10883             else
10884                if Has_Storage_Size_Pragma (P) then
10885                   Error_Pragma ("duplicate pragma% not allowed");
10886                else
10887                   Set_Has_Storage_Size_Pragma (P, True);
10888                end if;
10889
10890                Record_Rep_Item (Defining_Identifier (Parent (P)), N);
10891                --  ???  exp_ch9 should use this!
10892             end if;
10893          end Storage_Size;
10894
10895          ------------------
10896          -- Storage_Unit --
10897          ------------------
10898
10899          --  pragma Storage_Unit (NUMERIC_LITERAL);
10900
10901          --  Only permitted argument is System'Storage_Unit value
10902
10903          when Pragma_Storage_Unit =>
10904             Check_No_Identifiers;
10905             Check_Arg_Count (1);
10906             Check_Arg_Is_Integer_Literal (Arg1);
10907
10908             if Intval (Expression (Arg1)) /=
10909               UI_From_Int (Ttypes.System_Storage_Unit)
10910             then
10911                Error_Msg_Uint_1 := UI_From_Int (Ttypes.System_Storage_Unit);
10912                Error_Pragma_Arg
10913                  ("the only allowed argument for pragma% is ^", Arg1);
10914             end if;
10915
10916          --------------------
10917          -- Stream_Convert --
10918          --------------------
10919
10920          --  pragma Stream_Convert (
10921          --    [Entity =>] type_LOCAL_NAME,
10922          --    [Read   =>] function_NAME,
10923          --    [Write  =>] function NAME);
10924
10925          when Pragma_Stream_Convert => Stream_Convert : declare
10926
10927             procedure Check_OK_Stream_Convert_Function (Arg : Node_Id);
10928             --  Check that the given argument is the name of a local function
10929             --  of one argument that is not overloaded earlier in the current
10930             --  local scope. A check is also made that the argument is a
10931             --  function with one parameter.
10932
10933             --------------------------------------
10934             -- Check_OK_Stream_Convert_Function --
10935             --------------------------------------
10936
10937             procedure Check_OK_Stream_Convert_Function (Arg : Node_Id) is
10938                Ent : Entity_Id;
10939
10940             begin
10941                Check_Arg_Is_Local_Name (Arg);
10942                Ent := Entity (Expression (Arg));
10943
10944                if Has_Homonym (Ent) then
10945                   Error_Pragma_Arg
10946                     ("argument for pragma% may not be overloaded", Arg);
10947                end if;
10948
10949                if Ekind (Ent) /= E_Function
10950                  or else No (First_Formal (Ent))
10951                  or else Present (Next_Formal (First_Formal (Ent)))
10952                then
10953                   Error_Pragma_Arg
10954                     ("argument for pragma% must be" &
10955                      " function of one argument", Arg);
10956                end if;
10957             end Check_OK_Stream_Convert_Function;
10958
10959          --  Start of processing for Stream_Convert
10960
10961          begin
10962             GNAT_Pragma;
10963             Check_Arg_Order ((Name_Entity, Name_Read, Name_Write));
10964             Check_Arg_Count (3);
10965             Check_Optional_Identifier (Arg1, Name_Entity);
10966             Check_Optional_Identifier (Arg2, Name_Read);
10967             Check_Optional_Identifier (Arg3, Name_Write);
10968             Check_Arg_Is_Local_Name (Arg1);
10969             Check_OK_Stream_Convert_Function (Arg2);
10970             Check_OK_Stream_Convert_Function (Arg3);
10971
10972             declare
10973                Typ   : constant Entity_Id :=
10974                          Underlying_Type (Entity (Expression (Arg1)));
10975                Read  : constant Entity_Id := Entity (Expression (Arg2));
10976                Write : constant Entity_Id := Entity (Expression (Arg3));
10977
10978             begin
10979                Check_First_Subtype (Arg1);
10980
10981                --  Check for too early or too late. Note that we don't enforce
10982                --  the rule about primitive operations in this case, since, as
10983                --  is the case for explicit stream attributes themselves, these
10984                --  restrictions are not appropriate. Note that the chaining of
10985                --  the pragma by Rep_Item_Too_Late is actually the critical
10986                --  processing done for this pragma.
10987
10988                if Rep_Item_Too_Early (Typ, N)
10989                     or else
10990                   Rep_Item_Too_Late (Typ, N, FOnly => True)
10991                then
10992                   return;
10993                end if;
10994
10995                --  Return if previous error
10996
10997                if Etype (Typ) = Any_Type
10998                     or else
10999                   Etype (Read) = Any_Type
11000                     or else
11001                   Etype (Write) = Any_Type
11002                then
11003                   return;
11004                end if;
11005
11006                --  Error checks
11007
11008                if Underlying_Type (Etype (Read)) /= Typ then
11009                   Error_Pragma_Arg
11010                     ("incorrect return type for function&", Arg2);
11011                end if;
11012
11013                if Underlying_Type (Etype (First_Formal (Write))) /= Typ then
11014                   Error_Pragma_Arg
11015                     ("incorrect parameter type for function&", Arg3);
11016                end if;
11017
11018                if Underlying_Type (Etype (First_Formal (Read))) /=
11019                   Underlying_Type (Etype (Write))
11020                then
11021                   Error_Pragma_Arg
11022                     ("result type of & does not match Read parameter type",
11023                      Arg3);
11024                end if;
11025             end;
11026          end Stream_Convert;
11027
11028          -------------------------
11029          -- Style_Checks (GNAT) --
11030          -------------------------
11031
11032          --  pragma Style_Checks (On | Off | ALL_CHECKS | STRING_LITERAL);
11033
11034          --  This is processed by the parser since some of the style checks
11035          --  take place during source scanning and parsing. This means that
11036          --  we don't need to issue error messages here.
11037
11038          when Pragma_Style_Checks => Style_Checks : declare
11039             A  : constant Node_Id   := Expression (Arg1);
11040             S  : String_Id;
11041             C  : Char_Code;
11042
11043          begin
11044             GNAT_Pragma;
11045             Check_No_Identifiers;
11046
11047             --  Two argument form
11048
11049             if Arg_Count = 2 then
11050                Check_Arg_Is_One_Of (Arg1, Name_On, Name_Off);
11051
11052                declare
11053                   E_Id : Node_Id;
11054                   E    : Entity_Id;
11055
11056                begin
11057                   E_Id := Expression (Arg2);
11058                   Analyze (E_Id);
11059
11060                   if not Is_Entity_Name (E_Id) then
11061                      Error_Pragma_Arg
11062                        ("second argument of pragma% must be entity name",
11063                         Arg2);
11064                   end if;
11065
11066                   E := Entity (E_Id);
11067
11068                   if E = Any_Id then
11069                      return;
11070                   else
11071                      loop
11072                         Set_Suppress_Style_Checks (E,
11073                           (Chars (Expression (Arg1)) = Name_Off));
11074                         exit when No (Homonym (E));
11075                         E := Homonym (E);
11076                      end loop;
11077                   end if;
11078                end;
11079
11080             --  One argument form
11081
11082             else
11083                Check_Arg_Count (1);
11084
11085                if Nkind (A) = N_String_Literal then
11086                   S   := Strval (A);
11087
11088                   declare
11089                      Slen    : constant Natural := Natural (String_Length (S));
11090                      Options : String (1 .. Slen);
11091                      J       : Natural;
11092
11093                   begin
11094                      J := 1;
11095                      loop
11096                         C := Get_String_Char (S, Int (J));
11097                         exit when not In_Character_Range (C);
11098                         Options (J) := Get_Character (C);
11099
11100                         --  If at end of string, set options. As per discussion
11101                         --  above, no need to check for errors, since we issued
11102                         --  them in the parser.
11103
11104                         if J = Slen then
11105                            Set_Style_Check_Options (Options);
11106                            exit;
11107                         end if;
11108
11109                         J := J + 1;
11110                      end loop;
11111                   end;
11112
11113                elsif Nkind (A) = N_Identifier then
11114                   if Chars (A) = Name_All_Checks then
11115                      Set_Default_Style_Check_Options;
11116
11117                   elsif Chars (A) = Name_On then
11118                      Style_Check := True;
11119
11120                   elsif Chars (A) = Name_Off then
11121                      Style_Check := False;
11122                   end if;
11123                end if;
11124             end if;
11125          end Style_Checks;
11126
11127          --------------
11128          -- Subtitle --
11129          --------------
11130
11131          --  pragma Subtitle ([Subtitle =>] STRING_LITERAL);
11132
11133          when Pragma_Subtitle =>
11134             GNAT_Pragma;
11135             Check_Arg_Count (1);
11136             Check_Optional_Identifier (Arg1, Name_Subtitle);
11137             Check_Arg_Is_String_Literal (Arg1);
11138
11139          --------------
11140          -- Suppress --
11141          --------------
11142
11143          --  pragma Suppress (IDENTIFIER [, [On =>] NAME]);
11144
11145          when Pragma_Suppress =>
11146             Process_Suppress_Unsuppress (True);
11147
11148          ------------------
11149          -- Suppress_All --
11150          ------------------
11151
11152          --  pragma Suppress_All;
11153
11154          --  The only check made here is that the pragma appears in the proper
11155          --  place, i.e. following a compilation unit. If indeed it appears in
11156          --  this context, then the parser has already inserted an equivalent
11157          --  pragma Suppress (All_Checks) to get the required effect.
11158
11159          when Pragma_Suppress_All =>
11160             GNAT_Pragma;
11161             Check_Arg_Count (0);
11162
11163             if Nkind (Parent (N)) /= N_Compilation_Unit_Aux
11164               or else not Is_List_Member (N)
11165               or else List_Containing (N) /= Pragmas_After (Parent (N))
11166             then
11167                Error_Pragma
11168                  ("misplaced pragma%, must follow compilation unit");
11169             end if;
11170
11171          -------------------------
11172          -- Suppress_Debug_Info --
11173          -------------------------
11174
11175          --  pragma Suppress_Debug_Info ([Entity =>] LOCAL_NAME);
11176
11177          when Pragma_Suppress_Debug_Info =>
11178             GNAT_Pragma;
11179             Check_Arg_Count (1);
11180             Check_Optional_Identifier (Arg1, Name_Entity);
11181             Check_Arg_Is_Local_Name (Arg1);
11182             Set_Debug_Info_Off (Entity (Get_Pragma_Arg (Arg1)));
11183
11184          ----------------------------------
11185          -- Suppress_Exception_Locations --
11186          ----------------------------------
11187
11188          --  pragma Suppress_Exception_Locations;
11189
11190          when Pragma_Suppress_Exception_Locations =>
11191             GNAT_Pragma;
11192             Check_Arg_Count (0);
11193             Check_Valid_Configuration_Pragma;
11194             Exception_Locations_Suppressed := True;
11195
11196          -----------------------------
11197          -- Suppress_Initialization --
11198          -----------------------------
11199
11200          --  pragma Suppress_Initialization ([Entity =>] type_Name);
11201
11202          when Pragma_Suppress_Initialization => Suppress_Init : declare
11203             E_Id : Node_Id;
11204             E    : Entity_Id;
11205
11206          begin
11207             GNAT_Pragma;
11208             Check_Arg_Count (1);
11209             Check_Optional_Identifier (Arg1, Name_Entity);
11210             Check_Arg_Is_Local_Name (Arg1);
11211
11212             E_Id := Expression (Arg1);
11213
11214             if Etype (E_Id) = Any_Type then
11215                return;
11216             end if;
11217
11218             E := Entity (E_Id);
11219
11220             if Is_Type (E) then
11221                if Is_Incomplete_Or_Private_Type (E) then
11222                   if No (Full_View (Base_Type (E))) then
11223                      Error_Pragma_Arg
11224                        ("argument of pragma% cannot be an incomplete type",
11225                          Arg1);
11226                   else
11227                      Set_Suppress_Init_Proc (Full_View (Base_Type (E)));
11228                   end if;
11229                else
11230                   Set_Suppress_Init_Proc (Base_Type (E));
11231                end if;
11232
11233             else
11234                Error_Pragma_Arg
11235                  ("pragma% requires argument that is a type name", Arg1);
11236             end if;
11237          end Suppress_Init;
11238
11239          -----------------
11240          -- System_Name --
11241          -----------------
11242
11243          --  pragma System_Name (DIRECT_NAME);
11244
11245          --  Syntax check: one argument, which must be the identifier GNAT or
11246          --  the identifier GCC, no other identifiers are acceptable.
11247
11248          when Pragma_System_Name =>
11249             GNAT_Pragma;
11250             Check_No_Identifiers;
11251             Check_Arg_Count (1);
11252             Check_Arg_Is_One_Of (Arg1, Name_Gcc, Name_Gnat);
11253
11254          -----------------------------
11255          -- Task_Dispatching_Policy --
11256          -----------------------------
11257
11258          --  pragma Task_Dispatching_Policy (policy_IDENTIFIER);
11259
11260          when Pragma_Task_Dispatching_Policy => declare
11261             DP : Character;
11262
11263          begin
11264             Check_Ada_83_Warning;
11265             Check_Arg_Count (1);
11266             Check_No_Identifiers;
11267             Check_Arg_Is_Task_Dispatching_Policy (Arg1);
11268             Check_Valid_Configuration_Pragma;
11269             Get_Name_String (Chars (Expression (Arg1)));
11270             DP := Fold_Upper (Name_Buffer (1));
11271
11272             if Task_Dispatching_Policy /= ' '
11273               and then Task_Dispatching_Policy /= DP
11274             then
11275                Error_Msg_Sloc := Task_Dispatching_Policy_Sloc;
11276                Error_Pragma
11277                  ("task dispatching policy incompatible with policy#");
11278
11279             --  Set new policy, but always preserve System_Location since we
11280             --  like the error message with the run time name.
11281
11282             else
11283                Task_Dispatching_Policy := DP;
11284
11285                if Task_Dispatching_Policy_Sloc /= System_Location then
11286                   Task_Dispatching_Policy_Sloc := Loc;
11287                end if;
11288             end if;
11289          end;
11290
11291          --------------
11292          -- Task_Info --
11293          --------------
11294
11295          --  pragma Task_Info (EXPRESSION);
11296
11297          when Pragma_Task_Info => Task_Info : declare
11298             P : constant Node_Id := Parent (N);
11299
11300          begin
11301             GNAT_Pragma;
11302
11303             if Nkind (P) /= N_Task_Definition then
11304                Error_Pragma ("pragma% must appear in task definition");
11305             end if;
11306
11307             Check_No_Identifiers;
11308             Check_Arg_Count (1);
11309
11310             Analyze_And_Resolve (Expression (Arg1), RTE (RE_Task_Info_Type));
11311
11312             if Etype (Expression (Arg1)) = Any_Type then
11313                return;
11314             end if;
11315
11316             if Has_Task_Info_Pragma (P) then
11317                Error_Pragma ("duplicate pragma% not allowed");
11318             else
11319                Set_Has_Task_Info_Pragma (P, True);
11320             end if;
11321          end Task_Info;
11322
11323          ---------------
11324          -- Task_Name --
11325          ---------------
11326
11327          --  pragma Task_Name (string_EXPRESSION);
11328
11329          when Pragma_Task_Name => Task_Name : declare
11330             P   : constant Node_Id := Parent (N);
11331             Arg : Node_Id;
11332
11333          begin
11334             Check_No_Identifiers;
11335             Check_Arg_Count (1);
11336
11337             Arg := Expression (Arg1);
11338
11339             --  The expression is used in the call to Create_Task, and must be
11340             --  expanded there, not in the context of the current spec. It must
11341             --  however be analyzed to capture global references, in case it
11342             --  appears in a generic context.
11343
11344             Preanalyze_And_Resolve (Arg, Standard_String);
11345
11346             if Nkind (P) /= N_Task_Definition then
11347                Pragma_Misplaced;
11348             end if;
11349
11350             if Has_Task_Name_Pragma (P) then
11351                Error_Pragma ("duplicate pragma% not allowed");
11352             else
11353                Set_Has_Task_Name_Pragma (P, True);
11354                Record_Rep_Item (Defining_Identifier (Parent (P)), N);
11355             end if;
11356          end Task_Name;
11357
11358          ------------------
11359          -- Task_Storage --
11360          ------------------
11361
11362          --  pragma Task_Storage (
11363          --     [Task_Type =>] LOCAL_NAME,
11364          --     [Top_Guard =>] static_integer_EXPRESSION);
11365
11366          when Pragma_Task_Storage => Task_Storage : declare
11367             Args  : Args_List (1 .. 2);
11368             Names : constant Name_List (1 .. 2) := (
11369                       Name_Task_Type,
11370                       Name_Top_Guard);
11371
11372             Task_Type : Node_Id renames Args (1);
11373             Top_Guard : Node_Id renames Args (2);
11374
11375             Ent : Entity_Id;
11376
11377          begin
11378             GNAT_Pragma;
11379             Gather_Associations (Names, Args);
11380
11381             if No (Task_Type) then
11382                Error_Pragma
11383                  ("missing task_type argument for pragma%");
11384             end if;
11385
11386             Check_Arg_Is_Local_Name (Task_Type);
11387
11388             Ent := Entity (Task_Type);
11389
11390             if not Is_Task_Type (Ent) then
11391                Error_Pragma_Arg
11392                  ("argument for pragma% must be task type", Task_Type);
11393             end if;
11394
11395             if No (Top_Guard) then
11396                Error_Pragma_Arg
11397                  ("pragma% takes two arguments", Task_Type);
11398             else
11399                Check_Arg_Is_Static_Expression (Top_Guard, Any_Integer);
11400             end if;
11401
11402             Check_First_Subtype (Task_Type);
11403
11404             if Rep_Item_Too_Late (Ent, N) then
11405                raise Pragma_Exit;
11406             end if;
11407          end Task_Storage;
11408
11409          --------------------------
11410          -- Thread_Local_Storage --
11411          --------------------------
11412
11413          --  pragma Thread_Local_Storage ([Entity =>] LOCAL_NAME);
11414
11415          when Pragma_Thread_Local_Storage => Thread_Local_Storage : declare
11416             Id : Node_Id;
11417             E  : Entity_Id;
11418
11419          begin
11420             GNAT_Pragma;
11421             Check_Arg_Count (1);
11422             Check_Optional_Identifier (Arg1, Name_Entity);
11423             Check_Arg_Is_Library_Level_Local_Name (Arg1);
11424
11425             Id := Expression (Arg1);
11426             Analyze (Id);
11427
11428             if not Is_Entity_Name (Id)
11429               or else Ekind (Entity (Id)) /= E_Variable
11430             then
11431                Error_Pragma_Arg ("local variable name required", Arg1);
11432             end if;
11433
11434             E := Entity (Id);
11435
11436             if Rep_Item_Too_Early (E, N)
11437               or else Rep_Item_Too_Late (E, N)
11438             then
11439                raise Pragma_Exit;
11440             end if;
11441
11442             Set_Has_Pragma_Thread_Local_Storage (E);
11443             Set_Has_Gigi_Rep_Item (E);
11444          end Thread_Local_Storage;
11445
11446          ----------------
11447          -- Time_Slice --
11448          ----------------
11449
11450          --  pragma Time_Slice (static_duration_EXPRESSION);
11451
11452          when Pragma_Time_Slice => Time_Slice : declare
11453             Val : Ureal;
11454             Nod : Node_Id;
11455
11456          begin
11457             GNAT_Pragma;
11458             Check_Arg_Count (1);
11459             Check_No_Identifiers;
11460             Check_In_Main_Program;
11461             Check_Arg_Is_Static_Expression (Arg1, Standard_Duration);
11462
11463             if not Error_Posted (Arg1) then
11464                Nod := Next (N);
11465                while Present (Nod) loop
11466                   if Nkind (Nod) = N_Pragma
11467                     and then Pragma_Name (Nod) = Name_Time_Slice
11468                   then
11469                      Error_Msg_Name_1 := Pname;
11470                      Error_Msg_N ("duplicate pragma% not permitted", Nod);
11471                   end if;
11472
11473                   Next (Nod);
11474                end loop;
11475             end if;
11476
11477             --  Process only if in main unit
11478
11479             if Get_Source_Unit (Loc) = Main_Unit then
11480                Opt.Time_Slice_Set := True;
11481                Val := Expr_Value_R (Expression (Arg1));
11482
11483                if Val <= Ureal_0 then
11484                   Opt.Time_Slice_Value := 0;
11485
11486                elsif Val > UR_From_Uint (UI_From_Int (1000)) then
11487                   Opt.Time_Slice_Value := 1_000_000_000;
11488
11489                else
11490                   Opt.Time_Slice_Value :=
11491                     UI_To_Int (UR_To_Uint (Val * UI_From_Int (1_000_000)));
11492                end if;
11493             end if;
11494          end Time_Slice;
11495
11496          -----------
11497          -- Title --
11498          -----------
11499
11500          --  pragma Title (TITLING_OPTION [, TITLING OPTION]);
11501
11502          --   TITLING_OPTION ::=
11503          --     [Title =>] STRING_LITERAL
11504          --   | [Subtitle =>] STRING_LITERAL
11505
11506          when Pragma_Title => Title : declare
11507             Args  : Args_List (1 .. 2);
11508             Names : constant Name_List (1 .. 2) := (
11509                       Name_Title,
11510                       Name_Subtitle);
11511
11512          begin
11513             GNAT_Pragma;
11514             Gather_Associations (Names, Args);
11515
11516             for J in 1 .. 2 loop
11517                if Present (Args (J)) then
11518                   Check_Arg_Is_String_Literal (Args (J));
11519                end if;
11520             end loop;
11521          end Title;
11522
11523          ---------------------
11524          -- Unchecked_Union --
11525          ---------------------
11526
11527          --  pragma Unchecked_Union (first_subtype_LOCAL_NAME)
11528
11529          when Pragma_Unchecked_Union => Unchecked_Union : declare
11530             Assoc   : constant Node_Id := Arg1;
11531             Type_Id : constant Node_Id := Expression (Assoc);
11532             Typ     : Entity_Id;
11533             Discr   : Entity_Id;
11534             Tdef    : Node_Id;
11535             Clist   : Node_Id;
11536             Vpart   : Node_Id;
11537             Comp    : Node_Id;
11538             Variant : Node_Id;
11539
11540          begin
11541             Ada_2005_Pragma;
11542             Check_No_Identifiers;
11543             Check_Arg_Count (1);
11544             Check_Arg_Is_Local_Name (Arg1);
11545
11546             Find_Type (Type_Id);
11547             Typ := Entity (Type_Id);
11548
11549             if Typ = Any_Type
11550               or else Rep_Item_Too_Early (Typ, N)
11551             then
11552                return;
11553             else
11554                Typ := Underlying_Type (Typ);
11555             end if;
11556
11557             if Rep_Item_Too_Late (Typ, N) then
11558                return;
11559             end if;
11560
11561             Check_First_Subtype (Arg1);
11562
11563             --  Note remaining cases are references to a type in the current
11564             --  declarative part. If we find an error, we post the error on
11565             --  the relevant type declaration at an appropriate point.
11566
11567             if not Is_Record_Type (Typ) then
11568                Error_Msg_N ("Unchecked_Union must be record type", Typ);
11569                return;
11570
11571             elsif Is_Tagged_Type (Typ) then
11572                Error_Msg_N ("Unchecked_Union must not be tagged", Typ);
11573                return;
11574
11575             elsif Is_Limited_Type (Typ) then
11576                Error_Msg_N
11577                  ("Unchecked_Union must not be limited record type", Typ);
11578                Explain_Limited_Type (Typ, Typ);
11579                return;
11580
11581             else
11582                if not Has_Discriminants (Typ) then
11583                   Error_Msg_N
11584                     ("Unchecked_Union must have one discriminant", Typ);
11585                   return;
11586                end if;
11587
11588                Discr := First_Discriminant (Typ);
11589                while Present (Discr) loop
11590                   if No (Discriminant_Default_Value (Discr)) then
11591                      Error_Msg_N
11592                        ("Unchecked_Union discriminant must have default value",
11593                         Discr);
11594                   end if;
11595                   Next_Discriminant (Discr);
11596                end loop;
11597
11598                Tdef  := Type_Definition (Declaration_Node (Typ));
11599                Clist := Component_List (Tdef);
11600
11601                Comp := First (Component_Items (Clist));
11602                while Present (Comp) loop
11603                   Check_Component (Comp);
11604                   Next (Comp);
11605                end loop;
11606
11607                if No (Clist) or else No (Variant_Part (Clist)) then
11608                   Error_Msg_N
11609                     ("Unchecked_Union must have variant part",
11610                      Tdef);
11611                   return;
11612                end if;
11613
11614                Vpart := Variant_Part (Clist);
11615
11616                Variant := First (Variants (Vpart));
11617                while Present (Variant) loop
11618                   Check_Variant (Variant);
11619                   Next (Variant);
11620                end loop;
11621             end if;
11622
11623             Set_Is_Unchecked_Union  (Typ, True);
11624             Set_Convention          (Typ, Convention_C);
11625
11626             Set_Has_Unchecked_Union (Base_Type (Typ), True);
11627             Set_Is_Unchecked_Union  (Base_Type (Typ), True);
11628          end Unchecked_Union;
11629
11630          ------------------------
11631          -- Unimplemented_Unit --
11632          ------------------------
11633
11634          --  pragma Unimplemented_Unit;
11635
11636          --  Note: this only gives an error if we are generating code, or if
11637          --  we are in a generic library unit (where the pragma appears in the
11638          --  body, not in the spec).
11639
11640          when Pragma_Unimplemented_Unit => Unimplemented_Unit : declare
11641             Cunitent : constant Entity_Id :=
11642                          Cunit_Entity (Get_Source_Unit (Loc));
11643             Ent_Kind : constant Entity_Kind :=
11644                          Ekind (Cunitent);
11645
11646          begin
11647             GNAT_Pragma;
11648             Check_Arg_Count (0);
11649
11650             if Operating_Mode = Generate_Code
11651               or else Ent_Kind = E_Generic_Function
11652               or else Ent_Kind = E_Generic_Procedure
11653               or else Ent_Kind = E_Generic_Package
11654             then
11655                Get_Name_String (Chars (Cunitent));
11656                Set_Casing (Mixed_Case);
11657                Write_Str (Name_Buffer (1 .. Name_Len));
11658                Write_Str (" is not supported in this configuration");
11659                Write_Eol;
11660                raise Unrecoverable_Error;
11661             end if;
11662          end Unimplemented_Unit;
11663
11664          ------------------------
11665          -- Universal_Aliasing --
11666          ------------------------
11667
11668          --  pragma Universal_Aliasing [([Entity =>] type_LOCAL_NAME)];
11669
11670          when Pragma_Universal_Aliasing => Universal_Alias : declare
11671             E_Id : Entity_Id;
11672
11673          begin
11674             GNAT_Pragma;
11675             Check_Arg_Count (1);
11676             Check_Optional_Identifier (Arg2, Name_Entity);
11677             Check_Arg_Is_Local_Name (Arg1);
11678             E_Id := Entity (Expression (Arg1));
11679
11680             if E_Id = Any_Type then
11681                return;
11682             elsif No (E_Id) or else not Is_Type (E_Id) then
11683                Error_Pragma_Arg ("pragma% requires type", Arg1);
11684             end if;
11685
11686             Set_Universal_Aliasing (Implementation_Base_Type (E_Id));
11687          end Universal_Alias;
11688
11689          --------------------
11690          -- Universal_Data --
11691          --------------------
11692
11693          --  pragma Universal_Data [(library_unit_NAME)];
11694
11695          when Pragma_Universal_Data =>
11696             GNAT_Pragma;
11697
11698             --  If this is a configuration pragma, then set the universal
11699             --  addressing option, otherwise confirm that the pragma satisfies
11700             --  the requirements of library unit pragma placement and leave it
11701             --  to the GNAAMP back end to detect the pragma (avoids transitive
11702             --  setting of the option due to withed units).
11703
11704             if Is_Configuration_Pragma then
11705                Universal_Addressing_On_AAMP := True;
11706             else
11707                Check_Valid_Library_Unit_Pragma;
11708             end if;
11709
11710             if not AAMP_On_Target then
11711                Error_Pragma ("?pragma% ignored (applies only to AAMP)");
11712             end if;
11713
11714          ----------------
11715          -- Unmodified --
11716          ----------------
11717
11718          --  pragma Unmodified (local_Name {, local_Name});
11719
11720          when Pragma_Unmodified => Unmodified : declare
11721             Arg_Node : Node_Id;
11722             Arg_Expr : Node_Id;
11723             Arg_Ent  : Entity_Id;
11724
11725          begin
11726             GNAT_Pragma;
11727             Check_At_Least_N_Arguments (1);
11728
11729             --  Loop through arguments
11730
11731             Arg_Node := Arg1;
11732             while Present (Arg_Node) loop
11733                Check_No_Identifier (Arg_Node);
11734
11735                --  Note: the analyze call done by Check_Arg_Is_Local_Name will
11736                --  in fact generate reference, so that the entity will have a
11737                --  reference, which will inhibit any warnings about it not
11738                --  being referenced, and also properly show up in the ali file
11739                --  as a reference. But this reference is recorded before the
11740                --  Has_Pragma_Unreferenced flag is set, so that no warning is
11741                --  generated for this reference.
11742
11743                Check_Arg_Is_Local_Name (Arg_Node);
11744                Arg_Expr := Get_Pragma_Arg (Arg_Node);
11745
11746                if Is_Entity_Name (Arg_Expr) then
11747                   Arg_Ent := Entity (Arg_Expr);
11748
11749                   if not Is_Assignable (Arg_Ent) then
11750                      Error_Pragma_Arg
11751                        ("pragma% can only be applied to a variable",
11752                         Arg_Expr);
11753                   else
11754                      Set_Has_Pragma_Unmodified (Arg_Ent);
11755                   end if;
11756                end if;
11757
11758                Next (Arg_Node);
11759             end loop;
11760          end Unmodified;
11761
11762          ------------------
11763          -- Unreferenced --
11764          ------------------
11765
11766          --  pragma Unreferenced (local_Name {, local_Name});
11767
11768          --    or when used in a context clause:
11769
11770          --  pragma Unreferenced (library_unit_NAME {, library_unit_NAME}
11771
11772          when Pragma_Unreferenced => Unreferenced : declare
11773             Arg_Node : Node_Id;
11774             Arg_Expr : Node_Id;
11775             Arg_Ent  : Entity_Id;
11776             Citem    : Node_Id;
11777
11778          begin
11779             GNAT_Pragma;
11780             Check_At_Least_N_Arguments (1);
11781
11782             --  Check case of appearing within context clause
11783
11784             if Is_In_Context_Clause then
11785
11786                --  The arguments must all be units mentioned in a with clause
11787                --  in the same context clause. Note we already checked (in
11788                --  Par.Prag) that the arguments are either identifiers or
11789                --  selected components.
11790
11791                Arg_Node := Arg1;
11792                while Present (Arg_Node) loop
11793                   Citem := First (List_Containing (N));
11794                   while Citem /= N loop
11795                      if Nkind (Citem) = N_With_Clause
11796                        and then Same_Name (Name (Citem), Expression (Arg_Node))
11797                      then
11798                         Set_Has_Pragma_Unreferenced
11799                           (Cunit_Entity
11800                              (Get_Source_Unit
11801                                 (Library_Unit (Citem))));
11802                         Set_Unit_Name (Expression (Arg_Node), Name (Citem));
11803                         exit;
11804                      end if;
11805
11806                      Next (Citem);
11807                   end loop;
11808
11809                   if Citem = N then
11810                      Error_Pragma_Arg
11811                        ("argument of pragma% is not with'ed unit", Arg_Node);
11812                   end if;
11813
11814                   Next (Arg_Node);
11815                end loop;
11816
11817             --  Case of not in list of context items
11818
11819             else
11820                Arg_Node := Arg1;
11821                while Present (Arg_Node) loop
11822                   Check_No_Identifier (Arg_Node);
11823
11824                   --  Note: the analyze call done by Check_Arg_Is_Local_Name
11825                   --  will in fact generate reference, so that the entity will
11826                   --  have a reference, which will inhibit any warnings about
11827                   --  it not being referenced, and also properly show up in the
11828                   --  ali file as a reference. But this reference is recorded
11829                   --  before the Has_Pragma_Unreferenced flag is set, so that
11830                   --  no warning is generated for this reference.
11831
11832                   Check_Arg_Is_Local_Name (Arg_Node);
11833                   Arg_Expr := Get_Pragma_Arg (Arg_Node);
11834
11835                   if Is_Entity_Name (Arg_Expr) then
11836                      Arg_Ent := Entity (Arg_Expr);
11837
11838                      --  If the entity is overloaded, the pragma applies to the
11839                      --  most recent overloading, as documented. In this case,
11840                      --  name resolution does not generate a reference, so it
11841                      --  must be done here explicitly.
11842
11843                      if Is_Overloaded (Arg_Expr) then
11844                         Generate_Reference (Arg_Ent, N);
11845                      end if;
11846
11847                      Set_Has_Pragma_Unreferenced (Arg_Ent);
11848                   end if;
11849
11850                   Next (Arg_Node);
11851                end loop;
11852             end if;
11853          end Unreferenced;
11854
11855          --------------------------
11856          -- Unreferenced_Objects --
11857          --------------------------
11858
11859          --  pragma Unreferenced_Objects (local_Name {, local_Name});
11860
11861          when Pragma_Unreferenced_Objects => Unreferenced_Objects : declare
11862             Arg_Node : Node_Id;
11863             Arg_Expr : Node_Id;
11864
11865          begin
11866             GNAT_Pragma;
11867             Check_At_Least_N_Arguments (1);
11868
11869             Arg_Node := Arg1;
11870             while Present (Arg_Node) loop
11871                Check_No_Identifier (Arg_Node);
11872                Check_Arg_Is_Local_Name (Arg_Node);
11873                Arg_Expr := Get_Pragma_Arg (Arg_Node);
11874
11875                if not Is_Entity_Name (Arg_Expr)
11876                  or else not Is_Type (Entity (Arg_Expr))
11877                then
11878                   Error_Pragma_Arg
11879                     ("argument for pragma% must be type or subtype", Arg_Node);
11880                end if;
11881
11882                Set_Has_Pragma_Unreferenced_Objects (Entity (Arg_Expr));
11883                Next (Arg_Node);
11884             end loop;
11885          end Unreferenced_Objects;
11886
11887          ------------------------------
11888          -- Unreserve_All_Interrupts --
11889          ------------------------------
11890
11891          --  pragma Unreserve_All_Interrupts;
11892
11893          when Pragma_Unreserve_All_Interrupts =>
11894             GNAT_Pragma;
11895             Check_Arg_Count (0);
11896
11897             if In_Extended_Main_Code_Unit (Main_Unit_Entity) then
11898                Unreserve_All_Interrupts := True;
11899             end if;
11900
11901          ----------------
11902          -- Unsuppress --
11903          ----------------
11904
11905          --  pragma Unsuppress (IDENTIFIER [, [On =>] NAME]);
11906
11907          when Pragma_Unsuppress =>
11908             Ada_2005_Pragma;
11909             Process_Suppress_Unsuppress (False);
11910
11911          -------------------
11912          -- Use_VADS_Size --
11913          -------------------
11914
11915          --  pragma Use_VADS_Size;
11916
11917          when Pragma_Use_VADS_Size =>
11918             GNAT_Pragma;
11919             Check_Arg_Count (0);
11920             Check_Valid_Configuration_Pragma;
11921             Use_VADS_Size := True;
11922
11923          ---------------------
11924          -- Validity_Checks --
11925          ---------------------
11926
11927          --  pragma Validity_Checks (On | Off | ALL_CHECKS | STRING_LITERAL);
11928
11929          when Pragma_Validity_Checks => Validity_Checks : declare
11930             A  : constant Node_Id   := Expression (Arg1);
11931             S  : String_Id;
11932             C  : Char_Code;
11933
11934          begin
11935             GNAT_Pragma;
11936             Check_Arg_Count (1);
11937             Check_No_Identifiers;
11938
11939             if Nkind (A) = N_String_Literal then
11940                S   := Strval (A);
11941
11942                declare
11943                   Slen    : constant Natural := Natural (String_Length (S));
11944                   Options : String (1 .. Slen);
11945                   J       : Natural;
11946
11947                begin
11948                   J := 1;
11949                   loop
11950                      C := Get_String_Char (S, Int (J));
11951                      exit when not In_Character_Range (C);
11952                      Options (J) := Get_Character (C);
11953
11954                      if J = Slen then
11955                         Set_Validity_Check_Options (Options);
11956                         exit;
11957                      else
11958                         J := J + 1;
11959                      end if;
11960                   end loop;
11961                end;
11962
11963             elsif Nkind (A) = N_Identifier then
11964
11965                if Chars (A) = Name_All_Checks then
11966                   Set_Validity_Check_Options ("a");
11967
11968                elsif Chars (A) = Name_On then
11969                   Validity_Checks_On := True;
11970
11971                elsif Chars (A) = Name_Off then
11972                   Validity_Checks_On := False;
11973
11974                end if;
11975             end if;
11976          end Validity_Checks;
11977
11978          --------------
11979          -- Volatile --
11980          --------------
11981
11982          --  pragma Volatile (LOCAL_NAME);
11983
11984          when Pragma_Volatile =>
11985             Process_Atomic_Shared_Volatile;
11986
11987          -------------------------
11988          -- Volatile_Components --
11989          -------------------------
11990
11991          --  pragma Volatile_Components (array_LOCAL_NAME);
11992
11993          --  Volatile is handled by the same circuit as Atomic_Components
11994
11995          --------------
11996          -- Warnings --
11997          --------------
11998
11999          --  pragma Warnings (On | Off);
12000          --  pragma Warnings (On | Off, LOCAL_NAME);
12001          --  pragma Warnings (static_string_EXPRESSION);
12002          --  pragma Warnings (On | Off, STRING_LITERAL);
12003
12004          when Pragma_Warnings => Warnings : begin
12005             GNAT_Pragma;
12006             Check_At_Least_N_Arguments (1);
12007             Check_No_Identifiers;
12008
12009             declare
12010                Argx : constant Node_Id := Get_Pragma_Arg (Arg1);
12011
12012             begin
12013                --  One argument case
12014
12015                if Arg_Count = 1 then
12016
12017                   --  On/Off one argument case was processed by parser
12018
12019                   if Nkind (Argx) = N_Identifier
12020                     and then
12021                       (Chars (Argx) = Name_On
12022                          or else
12023                        Chars (Argx) = Name_Off)
12024                   then
12025                      null;
12026
12027                   --  One argument case must be ON/OFF or static string expr
12028
12029                   elsif not Is_Static_String_Expression (Arg1) then
12030                      Error_Pragma_Arg
12031                        ("argument of pragma% must be On/Off or " &
12032                         "static string expression", Arg2);
12033
12034                   --  One argument string expression case
12035
12036                   else
12037                      declare
12038                         Lit : constant Node_Id   := Expr_Value_S (Argx);
12039                         Str : constant String_Id := Strval (Lit);
12040                         Len : constant Nat       := String_Length (Str);
12041                         C   : Char_Code;
12042                         J   : Nat;
12043                         OK  : Boolean;
12044                         Chr : Character;
12045
12046                      begin
12047                         J := 1;
12048                         while J <= Len loop
12049                            C := Get_String_Char (Str, J);
12050                            OK := In_Character_Range (C);
12051
12052                            if OK then
12053                               Chr := Get_Character (C);
12054
12055                               --  Dot case
12056
12057                               if J < Len and then Chr = '.' then
12058                                  J := J + 1;
12059                                  C := Get_String_Char (Str, J);
12060                                  Chr := Get_Character (C);
12061
12062                                  if not Set_Dot_Warning_Switch (Chr) then
12063                                     Error_Pragma_Arg
12064                                       ("invalid warning switch character " &
12065                                        '.' & Chr, Arg1);
12066                                  end if;
12067
12068                               --  Non-Dot case
12069
12070                               else
12071                                  OK := Set_Warning_Switch (Chr);
12072                               end if;
12073                            end if;
12074
12075                            if not OK then
12076                               Error_Pragma_Arg
12077                                 ("invalid warning switch character " & Chr,
12078                                  Arg1);
12079                            end if;
12080
12081                            J := J + 1;
12082                         end loop;
12083                      end;
12084                   end if;
12085
12086                   --  Two or more arguments (must be two)
12087
12088                else
12089                   Check_Arg_Is_One_Of (Arg1, Name_On, Name_Off);
12090                   Check_At_Most_N_Arguments (2);
12091
12092                   declare
12093                      E_Id : Node_Id;
12094                      E    : Entity_Id;
12095                      Err  : Boolean;
12096
12097                   begin
12098                      E_Id := Expression (Arg2);
12099                      Analyze (E_Id);
12100
12101                      --  In the expansion of an inlined body, a reference to
12102                      --  the formal may be wrapped in a conversion if the
12103                      --  actual is a conversion. Retrieve the real entity name.
12104
12105                      if (In_Instance_Body
12106                          or else In_Inlined_Body)
12107                        and then Nkind (E_Id) = N_Unchecked_Type_Conversion
12108                      then
12109                         E_Id := Expression (E_Id);
12110                      end if;
12111
12112                      --  Entity name case
12113
12114                      if Is_Entity_Name (E_Id) then
12115                         E := Entity (E_Id);
12116
12117                         if E = Any_Id then
12118                            return;
12119                         else
12120                            loop
12121                               Set_Warnings_Off
12122                                 (E, (Chars (Expression (Arg1)) = Name_Off));
12123
12124                               if Chars (Expression (Arg1)) = Name_Off
12125                                 and then Warn_On_Warnings_Off
12126                               then
12127                                  Warnings_Off_Pragmas.Append ((N, E));
12128                               end if;
12129
12130                               if Is_Enumeration_Type (E) then
12131                                  declare
12132                                     Lit : Entity_Id;
12133                                  begin
12134                                     Lit := First_Literal (E);
12135                                     while Present (Lit) loop
12136                                        Set_Warnings_Off (Lit);
12137                                        Next_Literal (Lit);
12138                                     end loop;
12139                                  end;
12140                               end if;
12141
12142                               exit when No (Homonym (E));
12143                               E := Homonym (E);
12144                            end loop;
12145                         end if;
12146
12147                      --  Error if not entity or static string literal case
12148
12149                      elsif not Is_Static_String_Expression (Arg2) then
12150                         Error_Pragma_Arg
12151                           ("second argument of pragma% must be entity " &
12152                            "name or static string expression", Arg2);
12153
12154                      --  String literal case
12155
12156                      else
12157                         String_To_Name_Buffer
12158                           (Strval (Expr_Value_S (Expression (Arg2))));
12159
12160                         --  Note on configuration pragma case: If this is a
12161                         --  configuration pragma, then for an OFF pragma, we
12162                         --  just set Config True in the call, which is all
12163                         --  that needs to be done. For the case of ON, this
12164                         --  is normally an error, unless it is canceling the
12165                         --  effect of a previous OFF pragma in the same file.
12166                         --  In any other case, an error will be signalled (ON
12167                         --  with no matching OFF).
12168
12169                         if Chars (Argx) = Name_Off then
12170                            Set_Specific_Warning_Off
12171                              (Loc, Name_Buffer (1 .. Name_Len),
12172                               Config => Is_Configuration_Pragma);
12173
12174                         elsif Chars (Argx) = Name_On then
12175                            Set_Specific_Warning_On
12176                              (Loc, Name_Buffer (1 .. Name_Len), Err);
12177
12178                            if Err then
12179                               Error_Msg
12180                                 ("?pragma Warnings On with no " &
12181                                  "matching Warnings Off",
12182                                  Loc);
12183                            end if;
12184                         end if;
12185                      end if;
12186                   end;
12187                end if;
12188             end;
12189          end Warnings;
12190
12191          -------------------
12192          -- Weak_External --
12193          -------------------
12194
12195          --  pragma Weak_External ([Entity =>] LOCAL_NAME);
12196
12197          when Pragma_Weak_External => Weak_External : declare
12198             Ent : Entity_Id;
12199
12200          begin
12201             GNAT_Pragma;
12202             Check_Arg_Count (1);
12203             Check_Optional_Identifier (Arg1, Name_Entity);
12204             Check_Arg_Is_Library_Level_Local_Name (Arg1);
12205             Ent := Entity (Expression (Arg1));
12206
12207             if Rep_Item_Too_Early (Ent, N) then
12208                return;
12209             else
12210                Ent := Underlying_Type (Ent);
12211             end if;
12212
12213             --  The only processing required is to link this item on to the
12214             --  list of rep items for the given entity. This is accomplished
12215             --  by the call to Rep_Item_Too_Late (when no error is detected
12216             --  and False is returned).
12217
12218             if Rep_Item_Too_Late (Ent, N) then
12219                return;
12220             else
12221                Set_Has_Gigi_Rep_Item (Ent);
12222             end if;
12223          end Weak_External;
12224
12225          -----------------------------
12226          -- Wide_Character_Encoding --
12227          -----------------------------
12228
12229          --  pragma Wide_Character_Encoding (IDENTIFIER);
12230
12231          when Pragma_Wide_Character_Encoding =>
12232             GNAT_Pragma;
12233
12234             --  Nothing to do, handled in parser. Note that we do not enforce
12235             --  configuration pragma placement, this pragma can appear at any
12236             --  place in the source, allowing mixed encodings within a single
12237             --  source program.
12238
12239             null;
12240
12241          --------------------
12242          -- Unknown_Pragma --
12243          --------------------
12244
12245          --  Should be impossible, since the case of an unknown pragma is
12246          --  separately processed before the case statement is entered.
12247
12248          when Unknown_Pragma =>
12249             raise Program_Error;
12250       end case;
12251
12252    exception
12253       when Pragma_Exit => null;
12254    end Analyze_Pragma;
12255
12256    -------------------
12257    -- Check_Enabled --
12258    -------------------
12259
12260    function Check_Enabled (Nam : Name_Id) return Boolean is
12261       PP : Node_Id;
12262
12263    begin
12264       PP := Opt.Check_Policy_List;
12265       loop
12266          if No (PP) then
12267             return Assertions_Enabled;
12268
12269          elsif
12270            Nam = Chars (Expression (First (Pragma_Argument_Associations (PP))))
12271          then
12272             case
12273               Chars (Expression (Last (Pragma_Argument_Associations (PP))))
12274             is
12275             when Name_On | Name_Check =>
12276                return True;
12277             when Name_Off | Name_Ignore =>
12278                return False;
12279             when others =>
12280                raise Program_Error;
12281             end case;
12282
12283          else
12284             PP := Next_Pragma (PP);
12285          end if;
12286       end loop;
12287    end Check_Enabled;
12288
12289    ---------------------------------
12290    -- Delay_Config_Pragma_Analyze --
12291    ---------------------------------
12292
12293    function Delay_Config_Pragma_Analyze (N : Node_Id) return Boolean is
12294    begin
12295       return Pragma_Name (N) = Name_Interrupt_State
12296                or else
12297              Pragma_Name (N) = Name_Priority_Specific_Dispatching;
12298    end Delay_Config_Pragma_Analyze;
12299
12300    -------------------------
12301    -- Get_Base_Subprogram --
12302    -------------------------
12303
12304    function Get_Base_Subprogram (Def_Id : Entity_Id) return Entity_Id is
12305       Result : Entity_Id;
12306
12307    begin
12308       --  Follow subprogram renaming chain
12309
12310       Result := Def_Id;
12311       while Is_Subprogram (Result)
12312         and then
12313           (Is_Generic_Instance (Result)
12314             or else Nkind (Parent (Declaration_Node (Result))) =
12315                                          N_Subprogram_Renaming_Declaration)
12316         and then Present (Alias (Result))
12317       loop
12318          Result := Alias (Result);
12319       end loop;
12320
12321       return Result;
12322    end Get_Base_Subprogram;
12323
12324    --------------------
12325    -- Get_Pragma_Arg --
12326    --------------------
12327
12328    function Get_Pragma_Arg (Arg : Node_Id) return Node_Id is
12329    begin
12330       if Nkind (Arg) = N_Pragma_Argument_Association then
12331          return Expression (Arg);
12332       else
12333          return Arg;
12334       end if;
12335    end Get_Pragma_Arg;
12336
12337    ----------------
12338    -- Initialize --
12339    ----------------
12340
12341    procedure Initialize is
12342    begin
12343       Externals.Init;
12344    end Initialize;
12345
12346    -----------------------------
12347    -- Is_Config_Static_String --
12348    -----------------------------
12349
12350    function Is_Config_Static_String (Arg : Node_Id) return Boolean is
12351
12352       function Add_Config_Static_String (Arg : Node_Id) return Boolean;
12353       --  This is an internal recursive function that is just like the outer
12354       --  function except that it adds the string to the name buffer rather
12355       --  than placing the string in the name buffer.
12356
12357       ------------------------------
12358       -- Add_Config_Static_String --
12359       ------------------------------
12360
12361       function Add_Config_Static_String (Arg : Node_Id) return Boolean is
12362          N : Node_Id;
12363          C : Char_Code;
12364
12365       begin
12366          N := Arg;
12367
12368          if Nkind (N) = N_Op_Concat then
12369             if Add_Config_Static_String (Left_Opnd (N)) then
12370                N := Right_Opnd (N);
12371             else
12372                return False;
12373             end if;
12374          end if;
12375
12376          if Nkind (N) /= N_String_Literal then
12377             Error_Msg_N ("string literal expected for pragma argument", N);
12378             return False;
12379
12380          else
12381             for J in 1 .. String_Length (Strval (N)) loop
12382                C := Get_String_Char (Strval (N), J);
12383
12384                if not In_Character_Range (C) then
12385                   Error_Msg
12386                     ("string literal contains invalid wide character",
12387                      Sloc (N) + 1 + Source_Ptr (J));
12388                   return False;
12389                end if;
12390
12391                Add_Char_To_Name_Buffer (Get_Character (C));
12392             end loop;
12393          end if;
12394
12395          return True;
12396       end Add_Config_Static_String;
12397
12398    --  Start of processing for Is_Config_Static_String
12399
12400    begin
12401
12402       Name_Len := 0;
12403       return Add_Config_Static_String (Arg);
12404    end Is_Config_Static_String;
12405
12406    -----------------------------------------
12407    -- Is_Non_Significant_Pragma_Reference --
12408    -----------------------------------------
12409
12410    --  This function makes use of the following static table which indicates
12411    --  whether a given pragma is significant. A value of -1 in this table
12412    --  indicates that the reference is significant. A value of zero indicates
12413    --  than appearance as any argument is insignificant, a positive value
12414    --  indicates that appearance in that parameter position is significant.
12415
12416    --  A value of 99 flags a special case requiring a special check (this is
12417    --  used for cases not covered by this standard encoding, e.g. pragma Check
12418    --  where the first argument is not significant, but the others are).
12419
12420    Sig_Flags : constant array (Pragma_Id) of Int :=
12421      (Pragma_AST_Entry                     => -1,
12422       Pragma_Abort_Defer                   => -1,
12423       Pragma_Ada_83                        => -1,
12424       Pragma_Ada_95                        => -1,
12425       Pragma_Ada_05                        => -1,
12426       Pragma_Ada_2005                      => -1,
12427       Pragma_All_Calls_Remote              => -1,
12428       Pragma_Annotate                      => -1,
12429       Pragma_Assert                        => -1,
12430       Pragma_Assertion_Policy              =>  0,
12431       Pragma_Assume_No_Invalid_Values      =>  0,
12432       Pragma_Asynchronous                  => -1,
12433       Pragma_Atomic                        =>  0,
12434       Pragma_Atomic_Components             =>  0,
12435       Pragma_Attach_Handler                => -1,
12436       Pragma_Check                         => 99,
12437       Pragma_Check_Name                    =>  0,
12438       Pragma_Check_Policy                  =>  0,
12439       Pragma_CIL_Constructor               => -1,
12440       Pragma_CPP_Class                     =>  0,
12441       Pragma_CPP_Constructor               =>  0,
12442       Pragma_CPP_Virtual                   =>  0,
12443       Pragma_CPP_Vtable                    =>  0,
12444       Pragma_C_Pass_By_Copy                =>  0,
12445       Pragma_Comment                       =>  0,
12446       Pragma_Common_Object                 => -1,
12447       Pragma_Compile_Time_Error            => -1,
12448       Pragma_Compile_Time_Warning          => -1,
12449       Pragma_Compiler_Unit                 =>  0,
12450       Pragma_Complete_Representation       =>  0,
12451       Pragma_Complex_Representation        =>  0,
12452       Pragma_Component_Alignment           => -1,
12453       Pragma_Controlled                    =>  0,
12454       Pragma_Convention                    =>  0,
12455       Pragma_Convention_Identifier         =>  0,
12456       Pragma_Debug                         => -1,
12457       Pragma_Debug_Policy                  =>  0,
12458       Pragma_Detect_Blocking               => -1,
12459       Pragma_Discard_Names                 =>  0,
12460       Pragma_Elaborate                     => -1,
12461       Pragma_Elaborate_All                 => -1,
12462       Pragma_Elaborate_Body                => -1,
12463       Pragma_Elaboration_Checks            => -1,
12464       Pragma_Eliminate                     => -1,
12465       Pragma_Export                        => -1,
12466       Pragma_Export_Exception              => -1,
12467       Pragma_Export_Function               => -1,
12468       Pragma_Export_Object                 => -1,
12469       Pragma_Export_Procedure              => -1,
12470       Pragma_Export_Value                  => -1,
12471       Pragma_Export_Valued_Procedure       => -1,
12472       Pragma_Extend_System                 => -1,
12473       Pragma_Extensions_Allowed            => -1,
12474       Pragma_External                      => -1,
12475       Pragma_Favor_Top_Level               => -1,
12476       Pragma_External_Name_Casing          => -1,
12477       Pragma_Fast_Math                     => -1,
12478       Pragma_Finalize_Storage_Only         =>  0,
12479       Pragma_Float_Representation          =>  0,
12480       Pragma_Ident                         => -1,
12481       Pragma_Implemented_By_Entry          => -1,
12482       Pragma_Implicit_Packing              =>  0,
12483       Pragma_Import                        => +2,
12484       Pragma_Import_Exception              =>  0,
12485       Pragma_Import_Function               =>  0,
12486       Pragma_Import_Object                 =>  0,
12487       Pragma_Import_Procedure              =>  0,
12488       Pragma_Import_Valued_Procedure       =>  0,
12489       Pragma_Initialize_Scalars            => -1,
12490       Pragma_Inline                        =>  0,
12491       Pragma_Inline_Always                 =>  0,
12492       Pragma_Inline_Generic                =>  0,
12493       Pragma_Inspection_Point              => -1,
12494       Pragma_Interface                     => +2,
12495       Pragma_Interface_Name                => +2,
12496       Pragma_Interrupt_Handler             => -1,
12497       Pragma_Interrupt_Priority            => -1,
12498       Pragma_Interrupt_State               => -1,
12499       Pragma_Java_Constructor              => -1,
12500       Pragma_Java_Interface                => -1,
12501       Pragma_Keep_Names                    =>  0,
12502       Pragma_License                       => -1,
12503       Pragma_Link_With                     => -1,
12504       Pragma_Linker_Alias                  => -1,
12505       Pragma_Linker_Constructor            => -1,
12506       Pragma_Linker_Destructor             => -1,
12507       Pragma_Linker_Options                => -1,
12508       Pragma_Linker_Section                => -1,
12509       Pragma_List                          => -1,
12510       Pragma_Locking_Policy                => -1,
12511       Pragma_Long_Float                    => -1,
12512       Pragma_Machine_Attribute             => -1,
12513       Pragma_Main                          => -1,
12514       Pragma_Main_Storage                  => -1,
12515       Pragma_Memory_Size                   => -1,
12516       Pragma_No_Return                     =>  0,
12517       Pragma_No_Body                       =>  0,
12518       Pragma_No_Run_Time                   => -1,
12519       Pragma_No_Strict_Aliasing            => -1,
12520       Pragma_Normalize_Scalars             => -1,
12521       Pragma_Obsolescent                   =>  0,
12522       Pragma_Optimize                      => -1,
12523       Pragma_Optimize_Alignment            => -1,
12524       Pragma_Pack                          =>  0,
12525       Pragma_Page                          => -1,
12526       Pragma_Passive                       => -1,
12527       Pragma_Preelaborable_Initialization  => -1,
12528       Pragma_Polling                       => -1,
12529       Pragma_Persistent_BSS                =>  0,
12530       Pragma_Postcondition                 => -1,
12531       Pragma_Precondition                  => -1,
12532       Pragma_Preelaborate                  => -1,
12533       Pragma_Preelaborate_05               => -1,
12534       Pragma_Priority                      => -1,
12535       Pragma_Priority_Specific_Dispatching => -1,
12536       Pragma_Profile                       =>  0,
12537       Pragma_Profile_Warnings              =>  0,
12538       Pragma_Propagate_Exceptions          => -1,
12539       Pragma_Psect_Object                  => -1,
12540       Pragma_Pure                          => -1,
12541       Pragma_Pure_05                       => -1,
12542       Pragma_Pure_Function                 => -1,
12543       Pragma_Queuing_Policy                => -1,
12544       Pragma_Ravenscar                     => -1,
12545       Pragma_Relative_Deadline             => -1,
12546       Pragma_Remote_Call_Interface         => -1,
12547       Pragma_Remote_Types                  => -1,
12548       Pragma_Restricted_Run_Time           => -1,
12549       Pragma_Restriction_Warnings          => -1,
12550       Pragma_Restrictions                  => -1,
12551       Pragma_Reviewable                    => -1,
12552       Pragma_Short_Circuit_And_Or          => -1,
12553       Pragma_Share_Generic                 => -1,
12554       Pragma_Shared                        => -1,
12555       Pragma_Shared_Passive                => -1,
12556       Pragma_Source_File_Name              => -1,
12557       Pragma_Source_File_Name_Project      => -1,
12558       Pragma_Source_Reference              => -1,
12559       Pragma_Storage_Size                  => -1,
12560       Pragma_Storage_Unit                  => -1,
12561       Pragma_Static_Elaboration_Desired    => -1,
12562       Pragma_Stream_Convert                => -1,
12563       Pragma_Style_Checks                  => -1,
12564       Pragma_Subtitle                      => -1,
12565       Pragma_Suppress                      =>  0,
12566       Pragma_Suppress_Exception_Locations  =>  0,
12567       Pragma_Suppress_All                  => -1,
12568       Pragma_Suppress_Debug_Info           =>  0,
12569       Pragma_Suppress_Initialization       =>  0,
12570       Pragma_System_Name                   => -1,
12571       Pragma_Task_Dispatching_Policy       => -1,
12572       Pragma_Task_Info                     => -1,
12573       Pragma_Task_Name                     => -1,
12574       Pragma_Task_Storage                  =>  0,
12575       Pragma_Thread_Local_Storage          =>  0,
12576       Pragma_Time_Slice                    => -1,
12577       Pragma_Title                         => -1,
12578       Pragma_Unchecked_Union               =>  0,
12579       Pragma_Unimplemented_Unit            => -1,
12580       Pragma_Universal_Aliasing            => -1,
12581       Pragma_Universal_Data                => -1,
12582       Pragma_Unmodified                    => -1,
12583       Pragma_Unreferenced                  => -1,
12584       Pragma_Unreferenced_Objects          => -1,
12585       Pragma_Unreserve_All_Interrupts      => -1,
12586       Pragma_Unsuppress                    =>  0,
12587       Pragma_Use_VADS_Size                 => -1,
12588       Pragma_Validity_Checks               => -1,
12589       Pragma_Volatile                      =>  0,
12590       Pragma_Volatile_Components           =>  0,
12591       Pragma_Warnings                      => -1,
12592       Pragma_Weak_External                 => -1,
12593       Pragma_Wide_Character_Encoding       =>  0,
12594       Unknown_Pragma                       =>  0);
12595
12596    function Is_Non_Significant_Pragma_Reference (N : Node_Id) return Boolean is
12597       Id : Pragma_Id;
12598       P  : Node_Id;
12599       C  : Int;
12600       A  : Node_Id;
12601
12602    begin
12603       P := Parent (N);
12604
12605       if Nkind (P) /= N_Pragma_Argument_Association then
12606          return False;
12607
12608       else
12609          Id := Get_Pragma_Id (Parent (P));
12610          C := Sig_Flags (Id);
12611
12612          case C is
12613             when -1 =>
12614                return False;
12615
12616             when 0 =>
12617                return True;
12618
12619             when 99 =>
12620                case Id is
12621
12622                   --  For pragma Check, the first argument is not significant,
12623                   --  the second and the third (if present) arguments are
12624                   --  significant.
12625
12626                   when Pragma_Check =>
12627                      return
12628                        P = First (Pragma_Argument_Associations (Parent (P)));
12629
12630                   when others =>
12631                      raise Program_Error;
12632                end case;
12633
12634             when others =>
12635                A := First (Pragma_Argument_Associations (Parent (P)));
12636                for J in 1 .. C - 1 loop
12637                   if No (A) then
12638                      return False;
12639                   end if;
12640
12641                   Next (A);
12642                end loop;
12643
12644                return A = P; -- is this wrong way round ???
12645          end case;
12646       end if;
12647    end Is_Non_Significant_Pragma_Reference;
12648
12649    ------------------------------
12650    -- Is_Pragma_String_Literal --
12651    ------------------------------
12652
12653    --  This function returns true if the corresponding pragma argument is a
12654    --  static string expression. These are the only cases in which string
12655    --  literals can appear as pragma arguments. We also allow a string literal
12656    --  as the first argument to pragma Assert (although it will of course
12657    --  always generate a type error).
12658
12659    function Is_Pragma_String_Literal (Par : Node_Id) return Boolean is
12660       Pragn : constant Node_Id := Parent (Par);
12661       Assoc : constant List_Id := Pragma_Argument_Associations (Pragn);
12662       Pname : constant Name_Id := Pragma_Name (Pragn);
12663       Argn  : Natural;
12664       N     : Node_Id;
12665
12666    begin
12667       Argn := 1;
12668       N := First (Assoc);
12669       loop
12670          exit when N = Par;
12671          Argn := Argn + 1;
12672          Next (N);
12673       end loop;
12674
12675       if Pname = Name_Assert then
12676          return True;
12677
12678       elsif Pname = Name_Export then
12679          return Argn > 2;
12680
12681       elsif Pname = Name_Ident then
12682          return Argn = 1;
12683
12684       elsif Pname = Name_Import then
12685          return Argn > 2;
12686
12687       elsif Pname = Name_Interface_Name then
12688          return Argn > 1;
12689
12690       elsif Pname = Name_Linker_Alias then
12691          return Argn = 2;
12692
12693       elsif Pname = Name_Linker_Section then
12694          return Argn = 2;
12695
12696       elsif Pname = Name_Machine_Attribute then
12697          return Argn = 2;
12698
12699       elsif Pname = Name_Source_File_Name then
12700          return True;
12701
12702       elsif Pname = Name_Source_Reference then
12703          return Argn = 2;
12704
12705       elsif Pname = Name_Title then
12706          return True;
12707
12708       elsif Pname = Name_Subtitle then
12709          return True;
12710
12711       else
12712          return False;
12713       end if;
12714    end Is_Pragma_String_Literal;
12715
12716    --------------------------------------
12717    -- Process_Compilation_Unit_Pragmas --
12718    --------------------------------------
12719
12720    procedure Process_Compilation_Unit_Pragmas (N : Node_Id) is
12721    begin
12722       --  A special check for pragma Suppress_All, a very strange DEC pragma,
12723       --  strange because it comes at the end of the unit. If we have a pragma
12724       --  Suppress_All in the Pragmas_After of the current unit, then we insert
12725       --  a pragma Suppress (All_Checks) at the start of the context clause to
12726       --  ensure the correct processing.
12727
12728       declare
12729          PA : constant List_Id := Pragmas_After (Aux_Decls_Node (N));
12730          P  : Node_Id;
12731
12732       begin
12733          if Present (PA) then
12734             P := First (PA);
12735             while Present (P) loop
12736                if Pragma_Name (P) = Name_Suppress_All then
12737                   Prepend_To (Context_Items (N),
12738                     Make_Pragma (Sloc (P),
12739                       Chars => Name_Suppress,
12740                       Pragma_Argument_Associations => New_List (
12741                         Make_Pragma_Argument_Association (Sloc (P),
12742                           Expression =>
12743                             Make_Identifier (Sloc (P),
12744                               Chars => Name_All_Checks)))));
12745                   exit;
12746                end if;
12747
12748                Next (P);
12749             end loop;
12750          end if;
12751       end;
12752    end Process_Compilation_Unit_Pragmas;
12753
12754    --------
12755    -- rv --
12756    --------
12757
12758    procedure rv is
12759    begin
12760       null;
12761    end rv;
12762
12763    --------------------------------
12764    -- Set_Encoded_Interface_Name --
12765    --------------------------------
12766
12767    procedure Set_Encoded_Interface_Name (E : Entity_Id; S : Node_Id) is
12768       Str : constant String_Id := Strval (S);
12769       Len : constant Int       := String_Length (Str);
12770       CC  : Char_Code;
12771       C   : Character;
12772       J   : Int;
12773
12774       Hex : constant array (0 .. 15) of Character := "0123456789abcdef";
12775
12776       procedure Encode;
12777       --  Stores encoded value of character code CC. The encoding we use an
12778       --  underscore followed by four lower case hex digits.
12779
12780       ------------
12781       -- Encode --
12782       ------------
12783
12784       procedure Encode is
12785       begin
12786          Store_String_Char (Get_Char_Code ('_'));
12787          Store_String_Char
12788            (Get_Char_Code (Hex (Integer (CC / 2 ** 12))));
12789          Store_String_Char
12790            (Get_Char_Code (Hex (Integer (CC / 2 ** 8 and 16#0F#))));
12791          Store_String_Char
12792            (Get_Char_Code (Hex (Integer (CC / 2 ** 4 and 16#0F#))));
12793          Store_String_Char
12794            (Get_Char_Code (Hex (Integer (CC and 16#0F#))));
12795       end Encode;
12796
12797    --  Start of processing for Set_Encoded_Interface_Name
12798
12799    begin
12800       --  If first character is asterisk, this is a link name, and we leave it
12801       --  completely unmodified. We also ignore null strings (the latter case
12802       --  happens only in error cases) and no encoding should occur for Java or
12803       --  AAMP interface names.
12804
12805       if Len = 0
12806         or else Get_String_Char (Str, 1) = Get_Char_Code ('*')
12807         or else VM_Target /= No_VM
12808         or else AAMP_On_Target
12809       then
12810          Set_Interface_Name (E, S);
12811
12812       else
12813          J := 1;
12814          loop
12815             CC := Get_String_Char (Str, J);
12816
12817             exit when not In_Character_Range (CC);
12818
12819             C := Get_Character (CC);
12820
12821             exit when C /= '_' and then C /= '$'
12822               and then C not in '0' .. '9'
12823               and then C not in 'a' .. 'z'
12824               and then C not in 'A' .. 'Z';
12825
12826             if J = Len then
12827                Set_Interface_Name (E, S);
12828                return;
12829
12830             else
12831                J := J + 1;
12832             end if;
12833          end loop;
12834
12835          --  Here we need to encode. The encoding we use as follows:
12836          --     three underscores  + four hex digits (lower case)
12837
12838          Start_String;
12839
12840          for J in 1 .. String_Length (Str) loop
12841             CC := Get_String_Char (Str, J);
12842
12843             if not In_Character_Range (CC) then
12844                Encode;
12845             else
12846                C := Get_Character (CC);
12847
12848                if C = '_' or else C = '$'
12849                  or else C in '0' .. '9'
12850                  or else C in 'a' .. 'z'
12851                  or else C in 'A' .. 'Z'
12852                then
12853                   Store_String_Char (CC);
12854                else
12855                   Encode;
12856                end if;
12857             end if;
12858          end loop;
12859
12860          Set_Interface_Name (E,
12861            Make_String_Literal (Sloc (S),
12862              Strval => End_String));
12863       end if;
12864    end Set_Encoded_Interface_Name;
12865
12866    -------------------
12867    -- Set_Unit_Name --
12868    -------------------
12869
12870    procedure Set_Unit_Name (N : Node_Id; With_Item : Node_Id) is
12871       Pref : Node_Id;
12872       Scop : Entity_Id;
12873
12874    begin
12875       if Nkind (N) = N_Identifier
12876         and then Nkind (With_Item) = N_Identifier
12877       then
12878          Set_Entity (N, Entity (With_Item));
12879
12880       elsif Nkind (N) = N_Selected_Component then
12881          Change_Selected_Component_To_Expanded_Name (N);
12882          Set_Entity (N, Entity (With_Item));
12883          Set_Entity (Selector_Name (N), Entity (N));
12884
12885          Pref := Prefix (N);
12886          Scop := Scope (Entity (N));
12887          while Nkind (Pref) = N_Selected_Component loop
12888             Change_Selected_Component_To_Expanded_Name (Pref);
12889             Set_Entity (Selector_Name (Pref), Scop);
12890             Set_Entity (Pref, Scop);
12891             Pref := Prefix (Pref);
12892             Scop := Scope (Scop);
12893          end loop;
12894
12895          Set_Entity (Pref, Scop);
12896       end if;
12897    end Set_Unit_Name;
12898
12899 end Sem_Prag;