OSDN Git Service

2011-08-05 Hristian Kirtchev <kirtchev@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / sem_attr.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             S E M _ A T T R                              --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2011, 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 with Ada.Characters.Latin_1; use Ada.Characters.Latin_1;
27
28 with Atree;    use Atree;
29 with Casing;   use Casing;
30 with Checks;   use Checks;
31 with Einfo;    use Einfo;
32 with Errout;   use Errout;
33 with Eval_Fat;
34 with Exp_Dist; use Exp_Dist;
35 with Exp_Util; use Exp_Util;
36 with Expander; use Expander;
37 with Freeze;   use Freeze;
38 with Gnatvsn;  use Gnatvsn;
39 with Itypes;   use Itypes;
40 with Lib;      use Lib;
41 with Lib.Xref; use Lib.Xref;
42 with Nlists;   use Nlists;
43 with Nmake;    use Nmake;
44 with Opt;      use Opt;
45 with Restrict; use Restrict;
46 with Rident;   use Rident;
47 with Rtsfind;  use Rtsfind;
48 with Sdefault; use Sdefault;
49 with Sem;      use Sem;
50 with Sem_Aux;  use Sem_Aux;
51 with Sem_Cat;  use Sem_Cat;
52 with Sem_Ch6;  use Sem_Ch6;
53 with Sem_Ch8;  use Sem_Ch8;
54 with Sem_Ch10; use Sem_Ch10;
55 with Sem_Dist; use Sem_Dist;
56 with Sem_Elim; use Sem_Elim;
57 with Sem_Eval; use Sem_Eval;
58 with Sem_Res;  use Sem_Res;
59 with Sem_Type; use Sem_Type;
60 with Sem_Util; use Sem_Util;
61 with Stand;    use Stand;
62 with Sinfo;    use Sinfo;
63 with Sinput;   use Sinput;
64 with Stringt;  use Stringt;
65 with Style;
66 with Stylesw;  use Stylesw;
67 with Targparm; use Targparm;
68 with Ttypes;   use Ttypes;
69 with Tbuild;   use Tbuild;
70 with Uintp;    use Uintp;
71 with Urealp;   use Urealp;
72
73 package body Sem_Attr is
74
75    True_Value  : constant Uint := Uint_1;
76    False_Value : constant Uint := Uint_0;
77    --  Synonyms to be used when these constants are used as Boolean values
78
79    Bad_Attribute : exception;
80    --  Exception raised if an error is detected during attribute processing,
81    --  used so that we can abandon the processing so we don't run into
82    --  trouble with cascaded errors.
83
84    --  The following array is the list of attributes defined in the Ada 83 RM
85    --  that are not included in Ada 95, but still get recognized in GNAT.
86
87    Attribute_83 : constant Attribute_Class_Array := Attribute_Class_Array'(
88       Attribute_Address                |
89       Attribute_Aft                    |
90       Attribute_Alignment              |
91       Attribute_Base                   |
92       Attribute_Callable               |
93       Attribute_Constrained            |
94       Attribute_Count                  |
95       Attribute_Delta                  |
96       Attribute_Digits                 |
97       Attribute_Emax                   |
98       Attribute_Epsilon                |
99       Attribute_First                  |
100       Attribute_First_Bit              |
101       Attribute_Fore                   |
102       Attribute_Image                  |
103       Attribute_Large                  |
104       Attribute_Last                   |
105       Attribute_Last_Bit               |
106       Attribute_Leading_Part           |
107       Attribute_Length                 |
108       Attribute_Machine_Emax           |
109       Attribute_Machine_Emin           |
110       Attribute_Machine_Mantissa       |
111       Attribute_Machine_Overflows      |
112       Attribute_Machine_Radix          |
113       Attribute_Machine_Rounds         |
114       Attribute_Mantissa               |
115       Attribute_Pos                    |
116       Attribute_Position               |
117       Attribute_Pred                   |
118       Attribute_Range                  |
119       Attribute_Safe_Emax              |
120       Attribute_Safe_Large             |
121       Attribute_Safe_Small             |
122       Attribute_Size                   |
123       Attribute_Small                  |
124       Attribute_Storage_Size           |
125       Attribute_Succ                   |
126       Attribute_Terminated             |
127       Attribute_Val                    |
128       Attribute_Value                  |
129       Attribute_Width                  => True,
130       others                           => False);
131
132    --  The following array is the list of attributes defined in the Ada 2005
133    --  RM which are not defined in Ada 95. These are recognized in Ada 95 mode,
134    --  but in Ada 95 they are considered to be implementation defined.
135
136    Attribute_05 : constant Attribute_Class_Array := Attribute_Class_Array'(
137       Attribute_Machine_Rounding       |
138       Attribute_Mod                    |
139       Attribute_Priority               |
140       Attribute_Stream_Size            |
141       Attribute_Wide_Wide_Width        => True,
142       others                           => False);
143
144    --  The following array contains all attributes that imply a modification
145    --  of their prefixes or result in an access value. Such prefixes can be
146    --  considered as lvalues.
147
148    Attribute_Name_Implies_Lvalue_Prefix : constant Attribute_Class_Array :=
149       Attribute_Class_Array'(
150       Attribute_Access                 |
151       Attribute_Address                |
152       Attribute_Input                  |
153       Attribute_Read                   |
154       Attribute_Unchecked_Access       |
155       Attribute_Unrestricted_Access    => True,
156       others                           => False);
157
158    -----------------------
159    -- Local_Subprograms --
160    -----------------------
161
162    procedure Eval_Attribute (N : Node_Id);
163    --  Performs compile time evaluation of attributes where possible, leaving
164    --  the Is_Static_Expression/Raises_Constraint_Error flags appropriately
165    --  set, and replacing the node with a literal node if the value can be
166    --  computed at compile time. All static attribute references are folded,
167    --  as well as a number of cases of non-static attributes that can always
168    --  be computed at compile time (e.g. floating-point model attributes that
169    --  are applied to non-static subtypes). Of course in such cases, the
170    --  Is_Static_Expression flag will not be set on the resulting literal.
171    --  Note that the only required action of this procedure is to catch the
172    --  static expression cases as described in the RM. Folding of other cases
173    --  is done where convenient, but some additional non-static folding is in
174    --  N_Expand_Attribute_Reference in cases where this is more convenient.
175
176    function Is_Anonymous_Tagged_Base
177      (Anon : Entity_Id;
178       Typ  : Entity_Id)
179       return Boolean;
180    --  For derived tagged types that constrain parent discriminants we build
181    --  an anonymous unconstrained base type. We need to recognize the relation
182    --  between the two when analyzing an access attribute for a constrained
183    --  component, before the full declaration for Typ has been analyzed, and
184    --  where therefore the prefix of the attribute does not match the enclosing
185    --  scope.
186
187    -----------------------
188    -- Analyze_Attribute --
189    -----------------------
190
191    procedure Analyze_Attribute (N : Node_Id) is
192       Loc     : constant Source_Ptr   := Sloc (N);
193       Aname   : constant Name_Id      := Attribute_Name (N);
194       P       : constant Node_Id      := Prefix (N);
195       Exprs   : constant List_Id      := Expressions (N);
196       Attr_Id : constant Attribute_Id := Get_Attribute_Id (Aname);
197       E1      : Node_Id;
198       E2      : Node_Id;
199
200       P_Type : Entity_Id;
201       --  Type of prefix after analysis
202
203       P_Base_Type : Entity_Id;
204       --  Base type of prefix after analysis
205
206       -----------------------
207       -- Local Subprograms --
208       -----------------------
209
210       procedure Analyze_Access_Attribute;
211       --  Used for Access, Unchecked_Access, Unrestricted_Access attributes.
212       --  Internally, Id distinguishes which of the three cases is involved.
213
214       procedure Bad_Attribute_For_Predicate;
215       --  Output error message for use of a predicate (First, Last, Range) not
216       --  allowed with a type that has predicates. If the type is a generic
217       --  actual, then the message is a warning, and we generate code to raise
218       --  program error with an appropriate reason. No error message is given
219       --  for internally generated uses of the attributes.
220       --  The legality rule only applies to scalar types, even though the
221       --  current AI mentions all subtypes.
222
223       procedure Check_Array_Or_Scalar_Type;
224       --  Common procedure used by First, Last, Range attribute to check
225       --  that the prefix is a constrained array or scalar type, or a name
226       --  of an array object, and that an argument appears only if appropriate
227       --  (i.e. only in the array case).
228
229       procedure Check_Array_Type;
230       --  Common semantic checks for all array attributes. Checks that the
231       --  prefix is a constrained array type or the name of an array object.
232       --  The error message for non-arrays is specialized appropriately.
233
234       procedure Check_Asm_Attribute;
235       --  Common semantic checks for Asm_Input and Asm_Output attributes
236
237       procedure Check_Component;
238       --  Common processing for Bit_Position, First_Bit, Last_Bit, and
239       --  Position. Checks prefix is an appropriate selected component.
240
241       procedure Check_Decimal_Fixed_Point_Type;
242       --  Check that prefix of attribute N is a decimal fixed-point type
243
244       procedure Check_Dereference;
245       --  If the prefix of attribute is an object of an access type, then
246       --  introduce an explicit dereference, and adjust P_Type accordingly.
247
248       procedure Check_Discrete_Type;
249       --  Verify that prefix of attribute N is a discrete type
250
251       procedure Check_E0;
252       --  Check that no attribute arguments are present
253
254       procedure Check_Either_E0_Or_E1;
255       --  Check that there are zero or one attribute arguments present
256
257       procedure Check_E1;
258       --  Check that exactly one attribute argument is present
259
260       procedure Check_E2;
261       --  Check that two attribute arguments are present
262
263       procedure Check_Enum_Image;
264       --  If the prefix type is an enumeration type, set all its literals
265       --  as referenced, since the image function could possibly end up
266       --  referencing any of the literals indirectly. Same for Enum_Val.
267
268       procedure Check_Fixed_Point_Type;
269       --  Verify that prefix of attribute N is a fixed type
270
271       procedure Check_Fixed_Point_Type_0;
272       --  Verify that prefix of attribute N is a fixed type and that
273       --  no attribute expressions are present
274
275       procedure Check_Floating_Point_Type;
276       --  Verify that prefix of attribute N is a float type
277
278       procedure Check_Floating_Point_Type_0;
279       --  Verify that prefix of attribute N is a float type and that
280       --  no attribute expressions are present
281
282       procedure Check_Floating_Point_Type_1;
283       --  Verify that prefix of attribute N is a float type and that
284       --  exactly one attribute expression is present
285
286       procedure Check_Floating_Point_Type_2;
287       --  Verify that prefix of attribute N is a float type and that
288       --  two attribute expressions are present
289
290       procedure Legal_Formal_Attribute;
291       --  Common processing for attributes Definite and Has_Discriminants.
292       --  Checks that prefix is generic indefinite formal type.
293
294       procedure Check_SPARK_Restriction_On_Attribute;
295       --  Issue an error in formal mode because attribute N is allowed
296
297       procedure Check_Integer_Type;
298       --  Verify that prefix of attribute N is an integer type
299
300       procedure Check_Modular_Integer_Type;
301       --  Verify that prefix of attribute N is a modular integer type
302
303       procedure Check_Not_CPP_Type;
304       --  Check that P (the prefix of the attribute) is not an CPP type
305       --  for which no Ada predefined primitive is available.
306
307       procedure Check_Not_Incomplete_Type;
308       --  Check that P (the prefix of the attribute) is not an incomplete
309       --  type or a private type for which no full view has been given.
310
311       procedure Check_Object_Reference (P : Node_Id);
312       --  Check that P (the prefix of the attribute) is an object reference
313
314       procedure Check_Program_Unit;
315       --  Verify that prefix of attribute N is a program unit
316
317       procedure Check_Real_Type;
318       --  Verify that prefix of attribute N is fixed or float type
319
320       procedure Check_Scalar_Type;
321       --  Verify that prefix of attribute N is a scalar type
322
323       procedure Check_Standard_Prefix;
324       --  Verify that prefix of attribute N is package Standard
325
326       procedure Check_Stream_Attribute (Nam : TSS_Name_Type);
327       --  Validity checking for stream attribute. Nam is the TSS name of the
328       --  corresponding possible defined attribute function (e.g. for the
329       --  Read attribute, Nam will be TSS_Stream_Read).
330
331       procedure Check_PolyORB_Attribute;
332       --  Validity checking for PolyORB/DSA attribute
333
334       procedure Check_Task_Prefix;
335       --  Verify that prefix of attribute N is a task or task type
336
337       procedure Check_Type;
338       --  Verify that the prefix of attribute N is a type
339
340       procedure Check_Unit_Name (Nod : Node_Id);
341       --  Check that Nod is of the form of a library unit name, i.e that
342       --  it is an identifier, or a selected component whose prefix is
343       --  itself of the form of a library unit name. Note that this is
344       --  quite different from Check_Program_Unit, since it only checks
345       --  the syntactic form of the name, not the semantic identity. This
346       --  is because it is used with attributes (Elab_Body, Elab_Spec,
347       --  UET_Address and Elaborated) which can refer to non-visible unit.
348
349       procedure Error_Attr (Msg : String; Error_Node : Node_Id);
350       pragma No_Return (Error_Attr);
351       procedure Error_Attr;
352       pragma No_Return (Error_Attr);
353       --  Posts error using Error_Msg_N at given node, sets type of attribute
354       --  node to Any_Type, and then raises Bad_Attribute to avoid any further
355       --  semantic processing. The message typically contains a % insertion
356       --  character which is replaced by the attribute name. The call with
357       --  no arguments is used when the caller has already generated the
358       --  required error messages.
359
360       procedure Error_Attr_P (Msg : String);
361       pragma No_Return (Error_Attr);
362       --  Like Error_Attr, but error is posted at the start of the prefix
363
364       procedure Standard_Attribute (Val : Int);
365       --  Used to process attributes whose prefix is package Standard which
366       --  yield values of type Universal_Integer. The attribute reference
367       --  node is rewritten with an integer literal of the given value.
368
369       procedure Unexpected_Argument (En : Node_Id);
370       --  Signal unexpected attribute argument (En is the argument)
371
372       procedure Validate_Non_Static_Attribute_Function_Call;
373       --  Called when processing an attribute that is a function call to a
374       --  non-static function, i.e. an attribute function that either takes
375       --  non-scalar arguments or returns a non-scalar result. Verifies that
376       --  such a call does not appear in a preelaborable context.
377
378       ------------------------------
379       -- Analyze_Access_Attribute --
380       ------------------------------
381
382       procedure Analyze_Access_Attribute is
383          Acc_Type : Entity_Id;
384
385          Scop : Entity_Id;
386          Typ  : Entity_Id;
387
388          function Build_Access_Object_Type (DT : Entity_Id) return Entity_Id;
389          --  Build an access-to-object type whose designated type is DT,
390          --  and whose Ekind is appropriate to the attribute type. The
391          --  type that is constructed is returned as the result.
392
393          procedure Build_Access_Subprogram_Type (P : Node_Id);
394          --  Build an access to subprogram whose designated type is the type of
395          --  the prefix. If prefix is overloaded, so is the node itself. The
396          --  result is stored in Acc_Type.
397
398          function OK_Self_Reference return Boolean;
399          --  An access reference whose prefix is a type can legally appear
400          --  within an aggregate, where it is obtained by expansion of
401          --  a defaulted aggregate. The enclosing aggregate that contains
402          --  the self-referenced is flagged so that the self-reference can
403          --  be expanded into a reference to the target object (see exp_aggr).
404
405          ------------------------------
406          -- Build_Access_Object_Type --
407          ------------------------------
408
409          function Build_Access_Object_Type (DT : Entity_Id) return Entity_Id is
410             Typ : constant Entity_Id :=
411                     New_Internal_Entity
412                       (E_Access_Attribute_Type, Current_Scope, Loc, 'A');
413          begin
414             Set_Etype                     (Typ, Typ);
415             Set_Is_Itype                  (Typ);
416             Set_Associated_Node_For_Itype (Typ, N);
417             Set_Directly_Designated_Type  (Typ, DT);
418             return Typ;
419          end Build_Access_Object_Type;
420
421          ----------------------------------
422          -- Build_Access_Subprogram_Type --
423          ----------------------------------
424
425          procedure Build_Access_Subprogram_Type (P : Node_Id) is
426             Index : Interp_Index;
427             It    : Interp;
428
429             procedure Check_Local_Access (E : Entity_Id);
430             --  Deal with possible access to local subprogram. If we have such
431             --  an access, we set a flag to kill all tracked values on any call
432             --  because this access value may be passed around, and any called
433             --  code might use it to access a local procedure which clobbers a
434             --  tracked value. If the scope is a loop or block, indicate that
435             --  value tracking is disabled for the enclosing subprogram.
436
437             function Get_Kind (E : Entity_Id) return Entity_Kind;
438             --  Distinguish between access to regular/protected subprograms
439
440             ------------------------
441             -- Check_Local_Access --
442             ------------------------
443
444             procedure Check_Local_Access (E : Entity_Id) is
445             begin
446                if not Is_Library_Level_Entity (E) then
447                   Set_Suppress_Value_Tracking_On_Call (Current_Scope);
448                   Set_Suppress_Value_Tracking_On_Call
449                     (Nearest_Dynamic_Scope (Current_Scope));
450                end if;
451             end Check_Local_Access;
452
453             --------------
454             -- Get_Kind --
455             --------------
456
457             function Get_Kind (E : Entity_Id) return Entity_Kind is
458             begin
459                if Convention (E) = Convention_Protected then
460                   return E_Access_Protected_Subprogram_Type;
461                else
462                   return E_Access_Subprogram_Type;
463                end if;
464             end Get_Kind;
465
466          --  Start of processing for Build_Access_Subprogram_Type
467
468          begin
469             --  In the case of an access to subprogram, use the name of the
470             --  subprogram itself as the designated type. Type-checking in
471             --  this case compares the signatures of the designated types.
472
473             --  Note: This fragment of the tree is temporarily malformed
474             --  because the correct tree requires an E_Subprogram_Type entity
475             --  as the designated type. In most cases this designated type is
476             --  later overridden by the semantics with the type imposed by the
477             --  context during the resolution phase. In the specific case of
478             --  the expression Address!(Prim'Unrestricted_Access), used to
479             --  initialize slots of dispatch tables, this work will be done by
480             --  the expander (see Exp_Aggr).
481
482             --  The reason to temporarily add this kind of node to the tree
483             --  instead of a proper E_Subprogram_Type itype, is the following:
484             --  in case of errors found in the source file we report better
485             --  error messages. For example, instead of generating the
486             --  following error:
487
488             --      "expected access to subprogram with profile
489             --       defined at line X"
490
491             --  we currently generate:
492
493             --      "expected access to function Z defined at line X"
494
495             Set_Etype (N, Any_Type);
496
497             if not Is_Overloaded (P) then
498                Check_Local_Access (Entity (P));
499
500                if not Is_Intrinsic_Subprogram (Entity (P)) then
501                   Acc_Type := Create_Itype (Get_Kind (Entity (P)), N);
502                   Set_Is_Public (Acc_Type, False);
503                   Set_Etype (Acc_Type, Acc_Type);
504                   Set_Convention (Acc_Type, Convention (Entity (P)));
505                   Set_Directly_Designated_Type (Acc_Type, Entity (P));
506                   Set_Etype (N, Acc_Type);
507                   Freeze_Before (N, Acc_Type);
508                end if;
509
510             else
511                Get_First_Interp (P, Index, It);
512                while Present (It.Nam) loop
513                   Check_Local_Access (It.Nam);
514
515                   if not Is_Intrinsic_Subprogram (It.Nam) then
516                      Acc_Type := Create_Itype (Get_Kind (It.Nam), N);
517                      Set_Is_Public (Acc_Type, False);
518                      Set_Etype (Acc_Type, Acc_Type);
519                      Set_Convention (Acc_Type, Convention (It.Nam));
520                      Set_Directly_Designated_Type (Acc_Type, It.Nam);
521                      Add_One_Interp (N, Acc_Type, Acc_Type);
522                      Freeze_Before (N, Acc_Type);
523                   end if;
524
525                   Get_Next_Interp (Index, It);
526                end loop;
527             end if;
528
529             --  Cannot be applied to intrinsic. Looking at the tests above,
530             --  the only way Etype (N) can still be set to Any_Type is if
531             --  Is_Intrinsic_Subprogram was True for some referenced entity.
532
533             if Etype (N) = Any_Type then
534                Error_Attr_P ("prefix of % attribute cannot be intrinsic");
535             end if;
536          end Build_Access_Subprogram_Type;
537
538          ----------------------
539          -- OK_Self_Reference --
540          ----------------------
541
542          function OK_Self_Reference return Boolean is
543             Par : Node_Id;
544
545          begin
546             Par := Parent (N);
547             while Present (Par)
548               and then
549                (Nkind (Par) = N_Component_Association
550                  or else Nkind (Par) in N_Subexpr)
551             loop
552                if Nkind_In (Par, N_Aggregate, N_Extension_Aggregate) then
553                   if Etype (Par) = Typ then
554                      Set_Has_Self_Reference (Par);
555                      return True;
556                   end if;
557                end if;
558
559                Par := Parent (Par);
560             end loop;
561
562             --  No enclosing aggregate, or not a self-reference
563
564             return False;
565          end OK_Self_Reference;
566
567       --  Start of processing for Analyze_Access_Attribute
568
569       begin
570          Check_SPARK_Restriction_On_Attribute;
571          Check_E0;
572
573          if Nkind (P) = N_Character_Literal then
574             Error_Attr_P
575               ("prefix of % attribute cannot be enumeration literal");
576          end if;
577
578          --  Case of access to subprogram
579
580          if Is_Entity_Name (P)
581            and then Is_Overloadable (Entity (P))
582          then
583             if Has_Pragma_Inline_Always (Entity (P)) then
584                Error_Attr_P
585                  ("prefix of % attribute cannot be Inline_Always subprogram");
586             end if;
587
588             if Aname = Name_Unchecked_Access then
589                Error_Attr ("attribute% cannot be applied to a subprogram", P);
590             end if;
591
592             --  Issue an error if the prefix denotes an eliminated subprogram
593
594             Check_For_Eliminated_Subprogram (P, Entity (P));
595
596             --  Check for obsolescent subprogram reference
597
598             Check_Obsolescent_2005_Entity (Entity (P), P);
599
600             --  Build the appropriate subprogram type
601
602             Build_Access_Subprogram_Type (P);
603
604             --  For unrestricted access, kill current values, since this
605             --  attribute allows a reference to a local subprogram that
606             --  could modify local variables to be passed out of scope
607
608             if Aname = Name_Unrestricted_Access then
609
610                --  Do not kill values on nodes initializing dispatch tables
611                --  slots. The construct Prim_Ptr!(Prim'Unrestricted_Access)
612                --  is currently generated by the expander only for this
613                --  purpose. Done to keep the quality of warnings currently
614                --  generated by the compiler (otherwise any declaration of
615                --  a tagged type cleans constant indications from its scope).
616
617                if Nkind (Parent (N)) = N_Unchecked_Type_Conversion
618                  and then (Etype (Parent (N)) = RTE (RE_Prim_Ptr)
619                              or else
620                            Etype (Parent (N)) = RTE (RE_Size_Ptr))
621                  and then Is_Dispatching_Operation
622                             (Directly_Designated_Type (Etype (N)))
623                then
624                   null;
625                else
626                   Kill_Current_Values;
627                end if;
628             end if;
629
630             return;
631
632          --  Component is an operation of a protected type
633
634          elsif Nkind (P) = N_Selected_Component
635            and then Is_Overloadable (Entity (Selector_Name (P)))
636          then
637             if Ekind (Entity (Selector_Name (P))) = E_Entry then
638                Error_Attr_P ("prefix of % attribute must be subprogram");
639             end if;
640
641             Build_Access_Subprogram_Type (Selector_Name (P));
642             return;
643          end if;
644
645          --  Deal with incorrect reference to a type, but note that some
646          --  accesses are allowed: references to the current type instance,
647          --  or in Ada 2005 self-referential pointer in a default-initialized
648          --  aggregate.
649
650          if Is_Entity_Name (P) then
651             Typ := Entity (P);
652
653             --  The reference may appear in an aggregate that has been expanded
654             --  into a loop. Locate scope of type definition, if any.
655
656             Scop := Current_Scope;
657             while Ekind (Scop) = E_Loop loop
658                Scop := Scope (Scop);
659             end loop;
660
661             if Is_Type (Typ) then
662
663                --  OK if we are within the scope of a limited type
664                --  let's mark the component as having per object constraint
665
666                if Is_Anonymous_Tagged_Base (Scop, Typ) then
667                   Typ := Scop;
668                   Set_Entity (P, Typ);
669                   Set_Etype  (P, Typ);
670                end if;
671
672                if Typ = Scop then
673                   declare
674                      Q : Node_Id := Parent (N);
675
676                   begin
677                      while Present (Q)
678                        and then Nkind (Q) /= N_Component_Declaration
679                      loop
680                         Q := Parent (Q);
681                      end loop;
682
683                      if Present (Q) then
684                         Set_Has_Per_Object_Constraint
685                           (Defining_Identifier (Q), True);
686                      end if;
687                   end;
688
689                   if Nkind (P) = N_Expanded_Name then
690                      Error_Msg_F
691                        ("current instance prefix must be a direct name", P);
692                   end if;
693
694                   --  If a current instance attribute appears in a component
695                   --  constraint it must appear alone; other contexts (spec-
696                   --  expressions, within a task body) are not subject to this
697                   --  restriction.
698
699                   if not In_Spec_Expression
700                     and then not Has_Completion (Scop)
701                     and then not
702                       Nkind_In (Parent (N), N_Discriminant_Association,
703                                             N_Index_Or_Discriminant_Constraint)
704                   then
705                      Error_Msg_N
706                        ("current instance attribute must appear alone", N);
707                   end if;
708
709                   if Is_CPP_Class (Root_Type (Typ)) then
710                      Error_Msg_N
711                        ("?current instance unsupported for derivations of "
712                         & "'C'P'P types", N);
713                   end if;
714
715                --  OK if we are in initialization procedure for the type
716                --  in question, in which case the reference to the type
717                --  is rewritten as a reference to the current object.
718
719                elsif Ekind (Scop) = E_Procedure
720                  and then Is_Init_Proc (Scop)
721                  and then Etype (First_Formal (Scop)) = Typ
722                then
723                   Rewrite (N,
724                     Make_Attribute_Reference (Loc,
725                       Prefix         => Make_Identifier (Loc, Name_uInit),
726                       Attribute_Name => Name_Unrestricted_Access));
727                   Analyze (N);
728                   return;
729
730                --  OK if a task type, this test needs sharpening up ???
731
732                elsif Is_Task_Type (Typ) then
733                   null;
734
735                --  OK if self-reference in an aggregate in Ada 2005, and
736                --  the reference comes from a copied default expression.
737
738                --  Note that we check legality of self-reference even if the
739                --  expression comes from source, e.g. when a single component
740                --  association in an aggregate has a box association.
741
742                elsif Ada_Version >= Ada_2005
743                  and then OK_Self_Reference
744                then
745                   null;
746
747                --  OK if reference to current instance of a protected object
748
749                elsif Is_Protected_Self_Reference (P) then
750                   null;
751
752                --  Otherwise we have an error case
753
754                else
755                   Error_Attr ("% attribute cannot be applied to type", P);
756                   return;
757                end if;
758             end if;
759          end if;
760
761          --  If we fall through, we have a normal access to object case.
762          --  Unrestricted_Access is legal wherever an allocator would be
763          --  legal, so its Etype is set to E_Allocator. The expected type
764          --  of the other attributes is a general access type, and therefore
765          --  we label them with E_Access_Attribute_Type.
766
767          if not Is_Overloaded (P) then
768             Acc_Type := Build_Access_Object_Type (P_Type);
769             Set_Etype (N, Acc_Type);
770          else
771             declare
772                Index : Interp_Index;
773                It    : Interp;
774             begin
775                Set_Etype (N, Any_Type);
776                Get_First_Interp (P, Index, It);
777                while Present (It.Typ) loop
778                   Acc_Type := Build_Access_Object_Type (It.Typ);
779                   Add_One_Interp (N, Acc_Type, Acc_Type);
780                   Get_Next_Interp (Index, It);
781                end loop;
782             end;
783          end if;
784
785          --  Special cases when we can find a prefix that is an entity name
786
787          declare
788             PP  : Node_Id;
789             Ent : Entity_Id;
790
791          begin
792             PP := P;
793             loop
794                if Is_Entity_Name (PP) then
795                   Ent := Entity (PP);
796
797                   --  If we have an access to an object, and the attribute
798                   --  comes from source, then set the object as potentially
799                   --  source modified. We do this because the resulting access
800                   --  pointer can be used to modify the variable, and we might
801                   --  not detect this, leading to some junk warnings.
802
803                   Set_Never_Set_In_Source (Ent, False);
804
805                   --  Mark entity as address taken, and kill current values
806
807                   Set_Address_Taken (Ent);
808                   Kill_Current_Values (Ent);
809                   exit;
810
811                elsif Nkind_In (PP, N_Selected_Component,
812                                    N_Indexed_Component)
813                then
814                   PP := Prefix (PP);
815
816                else
817                   exit;
818                end if;
819             end loop;
820          end;
821
822          --  Check for aliased view unless unrestricted case. We allow a
823          --  nonaliased prefix when within an instance because the prefix may
824          --  have been a tagged formal object, which is defined to be aliased
825          --  even when the actual might not be (other instance cases will have
826          --  been caught in the generic). Similarly, within an inlined body we
827          --  know that the attribute is legal in the original subprogram, and
828          --  therefore legal in the expansion.
829
830          if Aname /= Name_Unrestricted_Access
831            and then not Is_Aliased_View (P)
832            and then not In_Instance
833            and then not In_Inlined_Body
834          then
835             Error_Attr_P ("prefix of % attribute must be aliased");
836          end if;
837       end Analyze_Access_Attribute;
838
839       ---------------------------------
840       -- Bad_Attribute_For_Predicate --
841       ---------------------------------
842
843       procedure Bad_Attribute_For_Predicate is
844       begin
845          if Is_Scalar_Type (P_Type)
846            and then  Comes_From_Source (N)
847          then
848             Error_Msg_Name_1 := Aname;
849             Bad_Predicated_Subtype_Use
850               ("type& has predicates, attribute % not allowed", N, P_Type);
851          end if;
852       end Bad_Attribute_For_Predicate;
853
854       --------------------------------
855       -- Check_Array_Or_Scalar_Type --
856       --------------------------------
857
858       procedure Check_Array_Or_Scalar_Type is
859          Index : Entity_Id;
860
861          D : Int;
862          --  Dimension number for array attributes
863
864       begin
865          --  Case of string literal or string literal subtype. These cases
866          --  cannot arise from legal Ada code, but the expander is allowed
867          --  to generate them. They require special handling because string
868          --  literal subtypes do not have standard bounds (the whole idea
869          --  of these subtypes is to avoid having to generate the bounds)
870
871          if Ekind (P_Type) = E_String_Literal_Subtype then
872             Set_Etype (N, Etype (First_Index (P_Base_Type)));
873             return;
874
875          --  Scalar types
876
877          elsif Is_Scalar_Type (P_Type) then
878             Check_Type;
879
880             if Present (E1) then
881                Error_Attr ("invalid argument in % attribute", E1);
882             else
883                Set_Etype (N, P_Base_Type);
884                return;
885             end if;
886
887          --  The following is a special test to allow 'First to apply to
888          --  private scalar types if the attribute comes from generated
889          --  code. This occurs in the case of Normalize_Scalars code.
890
891          elsif Is_Private_Type (P_Type)
892            and then Present (Full_View (P_Type))
893            and then Is_Scalar_Type (Full_View (P_Type))
894            and then not Comes_From_Source (N)
895          then
896             Set_Etype (N, Implementation_Base_Type (P_Type));
897
898          --  Array types other than string literal subtypes handled above
899
900          else
901             Check_Array_Type;
902
903             --  We know prefix is an array type, or the name of an array
904             --  object, and that the expression, if present, is static
905             --  and within the range of the dimensions of the type.
906
907             pragma Assert (Is_Array_Type (P_Type));
908             Index := First_Index (P_Base_Type);
909
910             if No (E1) then
911
912                --  First dimension assumed
913
914                Set_Etype (N, Base_Type (Etype (Index)));
915
916             else
917                D := UI_To_Int (Intval (E1));
918
919                for J in 1 .. D - 1 loop
920                   Next_Index (Index);
921                end loop;
922
923                Set_Etype (N, Base_Type (Etype (Index)));
924                Set_Etype (E1, Standard_Integer);
925             end if;
926          end if;
927       end Check_Array_Or_Scalar_Type;
928
929       ----------------------
930       -- Check_Array_Type --
931       ----------------------
932
933       procedure Check_Array_Type is
934          D : Int;
935          --  Dimension number for array attributes
936
937       begin
938          --  If the type is a string literal type, then this must be generated
939          --  internally, and no further check is required on its legality.
940
941          if Ekind (P_Type) = E_String_Literal_Subtype then
942             return;
943
944          --  If the type is a composite, it is an illegal aggregate, no point
945          --  in going on.
946
947          elsif P_Type = Any_Composite then
948             raise Bad_Attribute;
949          end if;
950
951          --  Normal case of array type or subtype
952
953          Check_Either_E0_Or_E1;
954          Check_Dereference;
955
956          if Is_Array_Type (P_Type) then
957             if not Is_Constrained (P_Type)
958               and then Is_Entity_Name (P)
959               and then Is_Type (Entity (P))
960             then
961                --  Note: we do not call Error_Attr here, since we prefer to
962                --  continue, using the relevant index type of the array,
963                --  even though it is unconstrained. This gives better error
964                --  recovery behavior.
965
966                Error_Msg_Name_1 := Aname;
967                Error_Msg_F
968                  ("prefix for % attribute must be constrained array", P);
969             end if;
970
971             D := Number_Dimensions (P_Type);
972
973          else
974             if Is_Private_Type (P_Type) then
975                Error_Attr_P ("prefix for % attribute may not be private type");
976
977             elsif Is_Access_Type (P_Type)
978               and then Is_Array_Type (Designated_Type (P_Type))
979               and then Is_Entity_Name (P)
980               and then Is_Type (Entity (P))
981             then
982                Error_Attr_P ("prefix of % attribute cannot be access type");
983
984             elsif Attr_Id = Attribute_First
985                     or else
986                   Attr_Id = Attribute_Last
987             then
988                Error_Attr ("invalid prefix for % attribute", P);
989
990             else
991                Error_Attr_P ("prefix for % attribute must be array");
992             end if;
993          end if;
994
995          if Present (E1) then
996             Resolve (E1, Any_Integer);
997             Set_Etype (E1, Standard_Integer);
998
999             if not Is_Static_Expression (E1)
1000               or else Raises_Constraint_Error (E1)
1001             then
1002                Flag_Non_Static_Expr
1003                  ("expression for dimension must be static!", E1);
1004                Error_Attr;
1005
1006             elsif  UI_To_Int (Expr_Value (E1)) > D
1007               or else UI_To_Int (Expr_Value (E1)) < 1
1008             then
1009                Error_Attr ("invalid dimension number for array type", E1);
1010             end if;
1011          end if;
1012
1013          if (Style_Check and Style_Check_Array_Attribute_Index)
1014            and then Comes_From_Source (N)
1015          then
1016             Style.Check_Array_Attribute_Index (N, E1, D);
1017          end if;
1018       end Check_Array_Type;
1019
1020       -------------------------
1021       -- Check_Asm_Attribute --
1022       -------------------------
1023
1024       procedure Check_Asm_Attribute is
1025       begin
1026          Check_Type;
1027          Check_E2;
1028
1029          --  Check first argument is static string expression
1030
1031          Analyze_And_Resolve (E1, Standard_String);
1032
1033          if Etype (E1) = Any_Type then
1034             return;
1035
1036          elsif not Is_OK_Static_Expression (E1) then
1037             Flag_Non_Static_Expr
1038               ("constraint argument must be static string expression!", E1);
1039             Error_Attr;
1040          end if;
1041
1042          --  Check second argument is right type
1043
1044          Analyze_And_Resolve (E2, Entity (P));
1045
1046          --  Note: that is all we need to do, we don't need to check
1047          --  that it appears in a correct context. The Ada type system
1048          --  will do that for us.
1049
1050       end Check_Asm_Attribute;
1051
1052       ---------------------
1053       -- Check_Component --
1054       ---------------------
1055
1056       procedure Check_Component is
1057       begin
1058          Check_E0;
1059
1060          if Nkind (P) /= N_Selected_Component
1061            or else
1062              (Ekind (Entity (Selector_Name (P))) /= E_Component
1063                and then
1064               Ekind (Entity (Selector_Name (P))) /= E_Discriminant)
1065          then
1066             Error_Attr_P ("prefix for % attribute must be selected component");
1067          end if;
1068       end Check_Component;
1069
1070       ------------------------------------
1071       -- Check_Decimal_Fixed_Point_Type --
1072       ------------------------------------
1073
1074       procedure Check_Decimal_Fixed_Point_Type is
1075       begin
1076          Check_Type;
1077
1078          if not Is_Decimal_Fixed_Point_Type (P_Type) then
1079             Error_Attr_P ("prefix of % attribute must be decimal type");
1080          end if;
1081       end Check_Decimal_Fixed_Point_Type;
1082
1083       -----------------------
1084       -- Check_Dereference --
1085       -----------------------
1086
1087       procedure Check_Dereference is
1088       begin
1089
1090          --  Case of a subtype mark
1091
1092          if Is_Entity_Name (P)
1093            and then Is_Type (Entity (P))
1094          then
1095             return;
1096          end if;
1097
1098          --  Case of an expression
1099
1100          Resolve (P);
1101
1102          if Is_Access_Type (P_Type) then
1103
1104             --  If there is an implicit dereference, then we must freeze
1105             --  the designated type of the access type, since the type of
1106             --  the referenced array is this type (see AI95-00106).
1107
1108             --  As done elsewhere, freezing must not happen when pre-analyzing
1109             --  a pre- or postcondition or a default value for an object or
1110             --  for a formal parameter.
1111
1112             if not In_Spec_Expression then
1113                Freeze_Before (N, Designated_Type (P_Type));
1114             end if;
1115
1116             Rewrite (P,
1117               Make_Explicit_Dereference (Sloc (P),
1118                 Prefix => Relocate_Node (P)));
1119
1120             Analyze_And_Resolve (P);
1121             P_Type := Etype (P);
1122
1123             if P_Type = Any_Type then
1124                raise Bad_Attribute;
1125             end if;
1126
1127             P_Base_Type := Base_Type (P_Type);
1128          end if;
1129       end Check_Dereference;
1130
1131       -------------------------
1132       -- Check_Discrete_Type --
1133       -------------------------
1134
1135       procedure Check_Discrete_Type is
1136       begin
1137          Check_Type;
1138
1139          if not Is_Discrete_Type (P_Type) then
1140             Error_Attr_P ("prefix of % attribute must be discrete type");
1141          end if;
1142       end Check_Discrete_Type;
1143
1144       --------------
1145       -- Check_E0 --
1146       --------------
1147
1148       procedure Check_E0 is
1149       begin
1150          if Present (E1) then
1151             Unexpected_Argument (E1);
1152          end if;
1153       end Check_E0;
1154
1155       --------------
1156       -- Check_E1 --
1157       --------------
1158
1159       procedure Check_E1 is
1160       begin
1161          Check_Either_E0_Or_E1;
1162
1163          if No (E1) then
1164
1165             --  Special-case attributes that are functions and that appear as
1166             --  the prefix of another attribute. Error is posted on parent.
1167
1168             if Nkind (Parent (N)) = N_Attribute_Reference
1169               and then (Attribute_Name (Parent (N)) = Name_Address
1170                           or else
1171                         Attribute_Name (Parent (N)) = Name_Code_Address
1172                           or else
1173                         Attribute_Name (Parent (N)) = Name_Access)
1174             then
1175                Error_Msg_Name_1 := Attribute_Name (Parent (N));
1176                Error_Msg_N ("illegal prefix for % attribute", Parent (N));
1177                Set_Etype (Parent (N), Any_Type);
1178                Set_Entity (Parent (N), Any_Type);
1179                raise Bad_Attribute;
1180
1181             else
1182                Error_Attr ("missing argument for % attribute", N);
1183             end if;
1184          end if;
1185       end Check_E1;
1186
1187       --------------
1188       -- Check_E2 --
1189       --------------
1190
1191       procedure Check_E2 is
1192       begin
1193          if No (E1) then
1194             Error_Attr ("missing arguments for % attribute (2 required)", N);
1195          elsif No (E2) then
1196             Error_Attr ("missing argument for % attribute (2 required)", N);
1197          end if;
1198       end Check_E2;
1199
1200       ---------------------------
1201       -- Check_Either_E0_Or_E1 --
1202       ---------------------------
1203
1204       procedure Check_Either_E0_Or_E1 is
1205       begin
1206          if Present (E2) then
1207             Unexpected_Argument (E2);
1208          end if;
1209       end Check_Either_E0_Or_E1;
1210
1211       ----------------------
1212       -- Check_Enum_Image --
1213       ----------------------
1214
1215       procedure Check_Enum_Image is
1216          Lit : Entity_Id;
1217       begin
1218          if Is_Enumeration_Type (P_Base_Type) then
1219             Lit := First_Literal (P_Base_Type);
1220             while Present (Lit) loop
1221                Set_Referenced (Lit);
1222                Next_Literal (Lit);
1223             end loop;
1224          end if;
1225       end Check_Enum_Image;
1226
1227       ----------------------------
1228       -- Check_Fixed_Point_Type --
1229       ----------------------------
1230
1231       procedure Check_Fixed_Point_Type is
1232       begin
1233          Check_Type;
1234
1235          if not Is_Fixed_Point_Type (P_Type) then
1236             Error_Attr_P ("prefix of % attribute must be fixed point type");
1237          end if;
1238       end Check_Fixed_Point_Type;
1239
1240       ------------------------------
1241       -- Check_Fixed_Point_Type_0 --
1242       ------------------------------
1243
1244       procedure Check_Fixed_Point_Type_0 is
1245       begin
1246          Check_Fixed_Point_Type;
1247          Check_E0;
1248       end Check_Fixed_Point_Type_0;
1249
1250       -------------------------------
1251       -- Check_Floating_Point_Type --
1252       -------------------------------
1253
1254       procedure Check_Floating_Point_Type is
1255       begin
1256          Check_Type;
1257
1258          if not Is_Floating_Point_Type (P_Type) then
1259             Error_Attr_P ("prefix of % attribute must be float type");
1260          end if;
1261       end Check_Floating_Point_Type;
1262
1263       ---------------------------------
1264       -- Check_Floating_Point_Type_0 --
1265       ---------------------------------
1266
1267       procedure Check_Floating_Point_Type_0 is
1268       begin
1269          Check_Floating_Point_Type;
1270          Check_E0;
1271       end Check_Floating_Point_Type_0;
1272
1273       ---------------------------------
1274       -- Check_Floating_Point_Type_1 --
1275       ---------------------------------
1276
1277       procedure Check_Floating_Point_Type_1 is
1278       begin
1279          Check_Floating_Point_Type;
1280          Check_E1;
1281       end Check_Floating_Point_Type_1;
1282
1283       ---------------------------------
1284       -- Check_Floating_Point_Type_2 --
1285       ---------------------------------
1286
1287       procedure Check_Floating_Point_Type_2 is
1288       begin
1289          Check_Floating_Point_Type;
1290          Check_E2;
1291       end Check_Floating_Point_Type_2;
1292
1293       ------------------------
1294       -- Check_Integer_Type --
1295       ------------------------
1296
1297       procedure Check_Integer_Type is
1298       begin
1299          Check_Type;
1300
1301          if not Is_Integer_Type (P_Type) then
1302             Error_Attr_P ("prefix of % attribute must be integer type");
1303          end if;
1304       end Check_Integer_Type;
1305
1306       --------------------------------
1307       -- Check_Modular_Integer_Type --
1308       --------------------------------
1309
1310       procedure Check_Modular_Integer_Type is
1311       begin
1312          Check_Type;
1313
1314          if not Is_Modular_Integer_Type (P_Type) then
1315             Error_Attr_P
1316               ("prefix of % attribute must be modular integer type");
1317          end if;
1318       end Check_Modular_Integer_Type;
1319
1320       ------------------------
1321       -- Check_Not_CPP_Type --
1322       ------------------------
1323
1324       procedure Check_Not_CPP_Type is
1325       begin
1326          if Is_Tagged_Type (Etype (P))
1327            and then Convention (Etype (P)) = Convention_CPP
1328            and then Is_CPP_Class (Root_Type (Etype (P)))
1329          then
1330             Error_Attr_P
1331               ("invalid use of % attribute with 'C'P'P tagged type");
1332          end if;
1333       end Check_Not_CPP_Type;
1334
1335       -------------------------------
1336       -- Check_Not_Incomplete_Type --
1337       -------------------------------
1338
1339       procedure Check_Not_Incomplete_Type is
1340          E   : Entity_Id;
1341          Typ : Entity_Id;
1342
1343       begin
1344          --  Ada 2005 (AI-50217, AI-326): If the prefix is an explicit
1345          --  dereference we have to check wrong uses of incomplete types
1346          --  (other wrong uses are checked at their freezing point).
1347
1348          --  Example 1: Limited-with
1349
1350          --    limited with Pkg;
1351          --    package P is
1352          --       type Acc is access Pkg.T;
1353          --       X : Acc;
1354          --       S : Integer := X.all'Size;                    -- ERROR
1355          --    end P;
1356
1357          --  Example 2: Tagged incomplete
1358
1359          --     type T is tagged;
1360          --     type Acc is access all T;
1361          --     X : Acc;
1362          --     S : constant Integer := X.all'Size;             -- ERROR
1363          --     procedure Q (Obj : Integer := X.all'Alignment); -- ERROR
1364
1365          if Ada_Version >= Ada_2005
1366            and then Nkind (P) = N_Explicit_Dereference
1367          then
1368             E := P;
1369             while Nkind (E) = N_Explicit_Dereference loop
1370                E := Prefix (E);
1371             end loop;
1372
1373             Typ := Etype (E);
1374
1375             if From_With_Type (Typ) then
1376                Error_Attr_P
1377                  ("prefix of % attribute cannot be an incomplete type");
1378
1379             else
1380                if Is_Access_Type (Typ) then
1381                   Typ := Directly_Designated_Type (Typ);
1382                end if;
1383
1384                if Is_Class_Wide_Type (Typ) then
1385                   Typ := Root_Type (Typ);
1386                end if;
1387
1388                --  A legal use of a shadow entity occurs only when the unit
1389                --  where the non-limited view resides is imported via a regular
1390                --  with clause in the current body. Such references to shadow
1391                --  entities may occur in subprogram formals.
1392
1393                if Is_Incomplete_Type (Typ)
1394                  and then From_With_Type (Typ)
1395                  and then Present (Non_Limited_View (Typ))
1396                  and then Is_Legal_Shadow_Entity_In_Body (Typ)
1397                then
1398                   Typ := Non_Limited_View (Typ);
1399                end if;
1400
1401                if Ekind (Typ) = E_Incomplete_Type
1402                  and then No (Full_View (Typ))
1403                then
1404                   Error_Attr_P
1405                     ("prefix of % attribute cannot be an incomplete type");
1406                end if;
1407             end if;
1408          end if;
1409
1410          if not Is_Entity_Name (P)
1411            or else not Is_Type (Entity (P))
1412            or else In_Spec_Expression
1413          then
1414             return;
1415          else
1416             Check_Fully_Declared (P_Type, P);
1417          end if;
1418       end Check_Not_Incomplete_Type;
1419
1420       ----------------------------
1421       -- Check_Object_Reference --
1422       ----------------------------
1423
1424       procedure Check_Object_Reference (P : Node_Id) is
1425          Rtyp : Entity_Id;
1426
1427       begin
1428          --  If we need an object, and we have a prefix that is the name of
1429          --  a function entity, convert it into a function call.
1430
1431          if Is_Entity_Name (P)
1432            and then Ekind (Entity (P)) = E_Function
1433          then
1434             Rtyp := Etype (Entity (P));
1435
1436             Rewrite (P,
1437               Make_Function_Call (Sloc (P),
1438                 Name => Relocate_Node (P)));
1439
1440             Analyze_And_Resolve (P, Rtyp);
1441
1442          --  Otherwise we must have an object reference
1443
1444          elsif not Is_Object_Reference (P) then
1445             Error_Attr_P ("prefix of % attribute must be object");
1446          end if;
1447       end Check_Object_Reference;
1448
1449       ----------------------------
1450       -- Check_PolyORB_Attribute --
1451       ----------------------------
1452
1453       procedure Check_PolyORB_Attribute is
1454       begin
1455          Validate_Non_Static_Attribute_Function_Call;
1456
1457          Check_Type;
1458          Check_Not_CPP_Type;
1459
1460          if Get_PCS_Name /= Name_PolyORB_DSA then
1461             Error_Attr
1462               ("attribute% requires the 'Poly'O'R'B 'P'C'S", N);
1463          end if;
1464       end Check_PolyORB_Attribute;
1465
1466       ------------------------
1467       -- Check_Program_Unit --
1468       ------------------------
1469
1470       procedure Check_Program_Unit is
1471       begin
1472          if Is_Entity_Name (P) then
1473             declare
1474                K : constant Entity_Kind := Ekind (Entity (P));
1475                T : constant Entity_Id   := Etype (Entity (P));
1476
1477             begin
1478                if K in Subprogram_Kind
1479                  or else K in Task_Kind
1480                  or else K in Protected_Kind
1481                  or else K = E_Package
1482                  or else K in Generic_Unit_Kind
1483                  or else (K = E_Variable
1484                             and then
1485                               (Is_Task_Type (T)
1486                                  or else
1487                                Is_Protected_Type (T)))
1488                then
1489                   return;
1490                end if;
1491             end;
1492          end if;
1493
1494          Error_Attr_P ("prefix of % attribute must be program unit");
1495       end Check_Program_Unit;
1496
1497       ---------------------
1498       -- Check_Real_Type --
1499       ---------------------
1500
1501       procedure Check_Real_Type is
1502       begin
1503          Check_Type;
1504
1505          if not Is_Real_Type (P_Type) then
1506             Error_Attr_P ("prefix of % attribute must be real type");
1507          end if;
1508       end Check_Real_Type;
1509
1510       -----------------------
1511       -- Check_Scalar_Type --
1512       -----------------------
1513
1514       procedure Check_Scalar_Type is
1515       begin
1516          Check_Type;
1517
1518          if not Is_Scalar_Type (P_Type) then
1519             Error_Attr_P ("prefix of % attribute must be scalar type");
1520          end if;
1521       end Check_Scalar_Type;
1522
1523       ------------------------------------------
1524       -- Check_SPARK_Restriction_On_Attribute --
1525       ------------------------------------------
1526
1527       procedure Check_SPARK_Restriction_On_Attribute is
1528       begin
1529          Error_Msg_Name_1 := Aname;
1530          Check_SPARK_Restriction ("attribute % is not allowed", P);
1531       end Check_SPARK_Restriction_On_Attribute;
1532
1533       ---------------------------
1534       -- Check_Standard_Prefix --
1535       ---------------------------
1536
1537       procedure Check_Standard_Prefix is
1538       begin
1539          Check_E0;
1540
1541          if Nkind (P) /= N_Identifier
1542            or else Chars (P) /= Name_Standard
1543          then
1544             Error_Attr ("only allowed prefix for % attribute is Standard", P);
1545          end if;
1546       end Check_Standard_Prefix;
1547
1548       ----------------------------
1549       -- Check_Stream_Attribute --
1550       ----------------------------
1551
1552       procedure Check_Stream_Attribute (Nam : TSS_Name_Type) is
1553          Etyp : Entity_Id;
1554          Btyp : Entity_Id;
1555
1556          In_Shared_Var_Procs : Boolean;
1557          --  True when compiling the body of System.Shared_Storage.
1558          --  Shared_Var_Procs. For this runtime package (always compiled in
1559          --  GNAT mode), we allow stream attributes references for limited
1560          --  types for the case where shared passive objects are implemented
1561          --  using stream attributes, which is the default in GNAT's persistent
1562          --  storage implementation.
1563
1564       begin
1565          Validate_Non_Static_Attribute_Function_Call;
1566
1567          --  With the exception of 'Input, Stream attributes are procedures,
1568          --  and can only appear at the position of procedure calls. We check
1569          --  for this here, before they are rewritten, to give a more precise
1570          --  diagnostic.
1571
1572          if Nam = TSS_Stream_Input then
1573             null;
1574
1575          elsif Is_List_Member (N)
1576            and then not Nkind_In (Parent (N), N_Procedure_Call_Statement,
1577                                               N_Aggregate)
1578          then
1579             null;
1580
1581          else
1582             Error_Attr
1583               ("invalid context for attribute%, which is a procedure", N);
1584          end if;
1585
1586          Check_Type;
1587          Btyp := Implementation_Base_Type (P_Type);
1588
1589          --  Stream attributes not allowed on limited types unless the
1590          --  attribute reference was generated by the expander (in which
1591          --  case the underlying type will be used, as described in Sinfo),
1592          --  or the attribute was specified explicitly for the type itself
1593          --  or one of its ancestors (taking visibility rules into account if
1594          --  in Ada 2005 mode), or a pragma Stream_Convert applies to Btyp
1595          --  (with no visibility restriction).
1596
1597          declare
1598             Gen_Body : constant Node_Id := Enclosing_Generic_Body (N);
1599          begin
1600             if Present (Gen_Body) then
1601                In_Shared_Var_Procs :=
1602                  Is_RTE (Corresponding_Spec (Gen_Body), RE_Shared_Var_Procs);
1603             else
1604                In_Shared_Var_Procs := False;
1605             end if;
1606          end;
1607
1608          if (Comes_From_Source (N)
1609               and then not (In_Shared_Var_Procs or In_Instance))
1610            and then not Stream_Attribute_Available (P_Type, Nam)
1611            and then not Has_Rep_Pragma (Btyp, Name_Stream_Convert)
1612          then
1613             Error_Msg_Name_1 := Aname;
1614
1615             if Is_Limited_Type (P_Type) then
1616                Error_Msg_NE
1617                  ("limited type& has no% attribute", P, P_Type);
1618                Explain_Limited_Type (P_Type, P);
1619             else
1620                Error_Msg_NE
1621                  ("attribute% for type& is not available", P, P_Type);
1622             end if;
1623          end if;
1624
1625          --  Check restriction violations
1626
1627          --  First check the No_Streams restriction, which prohibits the use
1628          --  of explicit stream attributes in the source program. We do not
1629          --  prevent the occurrence of stream attributes in generated code,
1630          --  for instance those generated implicitly for dispatching purposes.
1631
1632          if Comes_From_Source (N) then
1633             Check_Restriction (No_Streams, P);
1634          end if;
1635
1636          --  AI05-0057: if restriction No_Default_Stream_Attributes is active,
1637          --  it is illegal to use a predefined elementary type stream attribute
1638          --  either by itself, or more importantly as part of the attribute
1639          --  subprogram for a composite type.
1640
1641          if Restriction_Active (No_Default_Stream_Attributes) then
1642             declare
1643                T : Entity_Id;
1644
1645             begin
1646                if Nam = TSS_Stream_Input
1647                     or else
1648                   Nam = TSS_Stream_Read
1649                then
1650                   T :=
1651                     Type_Without_Stream_Operation (P_Type, TSS_Stream_Read);
1652                else
1653                   T :=
1654                     Type_Without_Stream_Operation (P_Type, TSS_Stream_Write);
1655                end if;
1656
1657                if Present (T) then
1658                   Check_Restriction (No_Default_Stream_Attributes, N);
1659
1660                   Error_Msg_NE
1661                     ("missing user-defined Stream Read or Write for type&",
1662                       N, T);
1663                   if not Is_Elementary_Type (P_Type) then
1664                      Error_Msg_NE
1665                      ("\which is a component of type&", N, P_Type);
1666                   end if;
1667                end if;
1668             end;
1669          end if;
1670
1671          --  Check special case of Exception_Id and Exception_Occurrence which
1672          --  are not allowed for restriction No_Exception_Registration.
1673
1674          if Restriction_Check_Required (No_Exception_Registration)
1675            and then (Is_RTE (P_Type, RE_Exception_Id)
1676                        or else
1677                      Is_RTE (P_Type, RE_Exception_Occurrence))
1678          then
1679             Check_Restriction (No_Exception_Registration, P);
1680          end if;
1681
1682          --  Here we must check that the first argument is an access type
1683          --  that is compatible with Ada.Streams.Root_Stream_Type'Class.
1684
1685          Analyze_And_Resolve (E1);
1686          Etyp := Etype (E1);
1687
1688          --  Note: the double call to Root_Type here is needed because the
1689          --  root type of a class-wide type is the corresponding type (e.g.
1690          --  X for X'Class, and we really want to go to the root.)
1691
1692          if not Is_Access_Type (Etyp)
1693            or else Root_Type (Root_Type (Designated_Type (Etyp))) /=
1694                      RTE (RE_Root_Stream_Type)
1695          then
1696             Error_Attr
1697               ("expected access to Ada.Streams.Root_Stream_Type''Class", E1);
1698          end if;
1699
1700          --  Check that the second argument is of the right type if there is
1701          --  one (the Input attribute has only one argument so this is skipped)
1702
1703          if Present (E2) then
1704             Analyze (E2);
1705
1706             if Nam = TSS_Stream_Read
1707               and then not Is_OK_Variable_For_Out_Formal (E2)
1708             then
1709                Error_Attr
1710                  ("second argument of % attribute must be a variable", E2);
1711             end if;
1712
1713             Resolve (E2, P_Type);
1714          end if;
1715
1716          Check_Not_CPP_Type;
1717       end Check_Stream_Attribute;
1718
1719       -----------------------
1720       -- Check_Task_Prefix --
1721       -----------------------
1722
1723       procedure Check_Task_Prefix is
1724       begin
1725          Analyze (P);
1726
1727          --  Ada 2005 (AI-345): Attribute 'Terminated can be applied to
1728          --  task interface class-wide types.
1729
1730          if Is_Task_Type (Etype (P))
1731            or else (Is_Access_Type (Etype (P))
1732                       and then Is_Task_Type (Designated_Type (Etype (P))))
1733            or else (Ada_Version >= Ada_2005
1734                       and then Ekind (Etype (P)) = E_Class_Wide_Type
1735                       and then Is_Interface (Etype (P))
1736                       and then Is_Task_Interface (Etype (P)))
1737          then
1738             Resolve (P);
1739
1740          else
1741             if Ada_Version >= Ada_2005 then
1742                Error_Attr_P
1743                  ("prefix of % attribute must be a task or a task " &
1744                   "interface class-wide object");
1745
1746             else
1747                Error_Attr_P ("prefix of % attribute must be a task");
1748             end if;
1749          end if;
1750       end Check_Task_Prefix;
1751
1752       ----------------
1753       -- Check_Type --
1754       ----------------
1755
1756       --  The possibilities are an entity name denoting a type, or an
1757       --  attribute reference that denotes a type (Base or Class). If
1758       --  the type is incomplete, replace it with its full view.
1759
1760       procedure Check_Type is
1761       begin
1762          if not Is_Entity_Name (P)
1763            or else not Is_Type (Entity (P))
1764          then
1765             Error_Attr_P ("prefix of % attribute must be a type");
1766
1767          elsif Is_Protected_Self_Reference (P) then
1768             Error_Attr_P
1769               ("prefix of % attribute denotes current instance "
1770                & "(RM 9.4(21/2))");
1771
1772          elsif Ekind (Entity (P)) = E_Incomplete_Type
1773             and then Present (Full_View (Entity (P)))
1774          then
1775             P_Type := Full_View (Entity (P));
1776             Set_Entity (P, P_Type);
1777          end if;
1778       end Check_Type;
1779
1780       ---------------------
1781       -- Check_Unit_Name --
1782       ---------------------
1783
1784       procedure Check_Unit_Name (Nod : Node_Id) is
1785       begin
1786          if Nkind (Nod) = N_Identifier then
1787             return;
1788
1789          elsif Nkind_In (Nod, N_Selected_Component, N_Expanded_Name) then
1790             Check_Unit_Name (Prefix (Nod));
1791
1792             if Nkind (Selector_Name (Nod)) = N_Identifier then
1793                return;
1794             end if;
1795          end if;
1796
1797          Error_Attr ("argument for % attribute must be unit name", P);
1798       end Check_Unit_Name;
1799
1800       ----------------
1801       -- Error_Attr --
1802       ----------------
1803
1804       procedure Error_Attr is
1805       begin
1806          Set_Etype (N, Any_Type);
1807          Set_Entity (N, Any_Type);
1808          raise Bad_Attribute;
1809       end Error_Attr;
1810
1811       procedure Error_Attr (Msg : String; Error_Node : Node_Id) is
1812       begin
1813          Error_Msg_Name_1 := Aname;
1814          Error_Msg_N (Msg, Error_Node);
1815          Error_Attr;
1816       end Error_Attr;
1817
1818       ------------------
1819       -- Error_Attr_P --
1820       ------------------
1821
1822       procedure Error_Attr_P (Msg : String) is
1823       begin
1824          Error_Msg_Name_1 := Aname;
1825          Error_Msg_F (Msg, P);
1826          Error_Attr;
1827       end Error_Attr_P;
1828
1829       ----------------------------
1830       -- Legal_Formal_Attribute --
1831       ----------------------------
1832
1833       procedure Legal_Formal_Attribute is
1834       begin
1835          Check_E0;
1836
1837          if not Is_Entity_Name (P)
1838            or else not Is_Type (Entity (P))
1839          then
1840             Error_Attr_P ("prefix of % attribute must be generic type");
1841
1842          elsif Is_Generic_Actual_Type (Entity (P))
1843            or else In_Instance
1844            or else In_Inlined_Body
1845          then
1846             null;
1847
1848          elsif Is_Generic_Type (Entity (P)) then
1849             if not Is_Indefinite_Subtype (Entity (P)) then
1850                Error_Attr_P
1851                  ("prefix of % attribute must be indefinite generic type");
1852             end if;
1853
1854          else
1855             Error_Attr_P
1856               ("prefix of % attribute must be indefinite generic type");
1857          end if;
1858
1859          Set_Etype (N, Standard_Boolean);
1860       end Legal_Formal_Attribute;
1861
1862       ------------------------
1863       -- Standard_Attribute --
1864       ------------------------
1865
1866       procedure Standard_Attribute (Val : Int) is
1867       begin
1868          Check_Standard_Prefix;
1869          Rewrite (N, Make_Integer_Literal (Loc, Val));
1870          Analyze (N);
1871       end Standard_Attribute;
1872
1873       -------------------------
1874       -- Unexpected Argument --
1875       -------------------------
1876
1877       procedure Unexpected_Argument (En : Node_Id) is
1878       begin
1879          Error_Attr ("unexpected argument for % attribute", En);
1880       end Unexpected_Argument;
1881
1882       -------------------------------------------------
1883       -- Validate_Non_Static_Attribute_Function_Call --
1884       -------------------------------------------------
1885
1886       --  This function should be moved to Sem_Dist ???
1887
1888       procedure Validate_Non_Static_Attribute_Function_Call is
1889       begin
1890          if In_Preelaborated_Unit
1891            and then not In_Subprogram_Or_Concurrent_Unit
1892          then
1893             Flag_Non_Static_Expr
1894               ("non-static function call in preelaborated unit!", N);
1895          end if;
1896       end Validate_Non_Static_Attribute_Function_Call;
1897
1898    --   Start of processing for Analyze_Attribute
1899
1900    begin
1901       --  Immediate return if unrecognized attribute (already diagnosed
1902       --  by parser, so there is nothing more that we need to do)
1903
1904       if not Is_Attribute_Name (Aname) then
1905          raise Bad_Attribute;
1906       end if;
1907
1908       --  Deal with Ada 83 issues
1909
1910       if Comes_From_Source (N) then
1911          if not Attribute_83 (Attr_Id) then
1912             if Ada_Version = Ada_83 and then Comes_From_Source (N) then
1913                Error_Msg_Name_1 := Aname;
1914                Error_Msg_N ("(Ada 83) attribute% is not standard?", N);
1915             end if;
1916
1917             if Attribute_Impl_Def (Attr_Id) then
1918                Check_Restriction (No_Implementation_Attributes, N);
1919             end if;
1920          end if;
1921       end if;
1922
1923       --  Deal with Ada 2005 attributes that are
1924
1925       if Attribute_05 (Attr_Id) and then Ada_Version < Ada_2005 then
1926          Check_Restriction (No_Implementation_Attributes, N);
1927       end if;
1928
1929       --   Remote access to subprogram type access attribute reference needs
1930       --   unanalyzed copy for tree transformation. The analyzed copy is used
1931       --   for its semantic information (whether prefix is a remote subprogram
1932       --   name), the unanalyzed copy is used to construct new subtree rooted
1933       --   with N_Aggregate which represents a fat pointer aggregate.
1934
1935       if Aname = Name_Access then
1936          Discard_Node (Copy_Separate_Tree (N));
1937       end if;
1938
1939       --  Analyze prefix and exit if error in analysis. If the prefix is an
1940       --  incomplete type, use full view if available. Note that there are
1941       --  some attributes for which we do not analyze the prefix, since the
1942       --  prefix is not a normal name.
1943
1944       if Aname /= Name_Elab_Body
1945            and then
1946          Aname /= Name_Elab_Spec
1947            and then
1948          Aname /= Name_UET_Address
1949            and then
1950          Aname /= Name_Enabled
1951       then
1952          Analyze (P);
1953          P_Type := Etype (P);
1954
1955          if Is_Entity_Name (P)
1956            and then Present (Entity (P))
1957            and then Is_Type (Entity (P))
1958          then
1959             if Ekind (Entity (P)) = E_Incomplete_Type then
1960                P_Type := Get_Full_View (P_Type);
1961                Set_Entity (P, P_Type);
1962                Set_Etype  (P, P_Type);
1963
1964             elsif Entity (P) = Current_Scope
1965               and then Is_Record_Type (Entity (P))
1966             then
1967                --  Use of current instance within the type. Verify that if the
1968                --  attribute appears within a constraint, it  yields an access
1969                --  type, other uses are illegal.
1970
1971                declare
1972                   Par : Node_Id;
1973
1974                begin
1975                   Par := Parent (N);
1976                   while Present (Par)
1977                     and then Nkind (Parent (Par)) /= N_Component_Definition
1978                   loop
1979                      Par := Parent (Par);
1980                   end loop;
1981
1982                   if Present (Par)
1983                     and then Nkind (Par) = N_Subtype_Indication
1984                   then
1985                      if Attr_Id /= Attribute_Access
1986                        and then Attr_Id /= Attribute_Unchecked_Access
1987                        and then Attr_Id /= Attribute_Unrestricted_Access
1988                      then
1989                         Error_Msg_N
1990                           ("in a constraint the current instance can only"
1991                              & " be used with an access attribute", N);
1992                      end if;
1993                   end if;
1994                end;
1995             end if;
1996          end if;
1997
1998          if P_Type = Any_Type then
1999             raise Bad_Attribute;
2000          end if;
2001
2002          P_Base_Type := Base_Type (P_Type);
2003       end if;
2004
2005       --  Analyze expressions that may be present, exiting if an error occurs
2006
2007       if No (Exprs) then
2008          E1 := Empty;
2009          E2 := Empty;
2010
2011       else
2012          E1 := First (Exprs);
2013          Analyze (E1);
2014
2015          --  Check for missing/bad expression (result of previous error)
2016
2017          if No (E1) or else Etype (E1) = Any_Type then
2018             raise Bad_Attribute;
2019          end if;
2020
2021          E2 := Next (E1);
2022
2023          if Present (E2) then
2024             Analyze (E2);
2025
2026             if Etype (E2) = Any_Type then
2027                raise Bad_Attribute;
2028             end if;
2029
2030             if Present (Next (E2)) then
2031                Unexpected_Argument (Next (E2));
2032             end if;
2033          end if;
2034       end if;
2035
2036       --  Ada 2005 (AI-345): Ensure that the compiler gives exactly the current
2037       --  output compiling in Ada 95 mode for the case of ambiguous prefixes.
2038
2039       if Ada_Version < Ada_2005
2040         and then Is_Overloaded (P)
2041         and then Aname /= Name_Access
2042         and then Aname /= Name_Address
2043         and then Aname /= Name_Code_Address
2044         and then Aname /= Name_Count
2045         and then Aname /= Name_Result
2046         and then Aname /= Name_Unchecked_Access
2047       then
2048          Error_Attr ("ambiguous prefix for % attribute", P);
2049
2050       elsif Ada_Version >= Ada_2005
2051         and then Is_Overloaded (P)
2052         and then Aname /= Name_Access
2053         and then Aname /= Name_Address
2054         and then Aname /= Name_Code_Address
2055         and then Aname /= Name_Result
2056         and then Aname /= Name_Unchecked_Access
2057       then
2058          --  Ada 2005 (AI-345): Since protected and task types have primitive
2059          --  entry wrappers, the attributes Count, Caller and AST_Entry require
2060          --  a context check
2061
2062          if Ada_Version >= Ada_2005
2063            and then (Aname = Name_Count
2064                       or else Aname = Name_Caller
2065                       or else Aname = Name_AST_Entry)
2066          then
2067             declare
2068                Count : Natural := 0;
2069                I     : Interp_Index;
2070                It    : Interp;
2071
2072             begin
2073                Get_First_Interp (P, I, It);
2074                while Present (It.Nam) loop
2075                   if Comes_From_Source (It.Nam) then
2076                      Count := Count + 1;
2077                   else
2078                      Remove_Interp (I);
2079                   end if;
2080
2081                   Get_Next_Interp (I, It);
2082                end loop;
2083
2084                if Count > 1 then
2085                   Error_Attr ("ambiguous prefix for % attribute", P);
2086                else
2087                   Set_Is_Overloaded (P, False);
2088                end if;
2089             end;
2090
2091          else
2092             Error_Attr ("ambiguous prefix for % attribute", P);
2093          end if;
2094       end if;
2095
2096       --  In SPARK, attributes of private types are only allowed if the full
2097       --  type declaration is visible.
2098
2099       if Is_Entity_Name (P)
2100         and then Present (Entity (P))  --  needed in some cases
2101         and then Is_Type (Entity (P))
2102         and then Is_Private_Type (P_Type)
2103         and then not In_Open_Scopes (Scope (P_Type))
2104         and then not In_Spec_Expression
2105       then
2106          Check_SPARK_Restriction ("invisible attribute of type", N);
2107       end if;
2108
2109       --  Remaining processing depends on attribute
2110
2111       case Attr_Id is
2112
2113          --  Attributes related to Ada2012 iterators (Placeholder).
2114
2115          when Attribute_Constant_Indexing => null;
2116          when Attribute_Default_Iterator => null;
2117          when Attribute_Implicit_Dereference => null;
2118          when Attribute_Iterator_Element => null;
2119          when Attribute_Variable_Indexing => null;
2120
2121       ------------------
2122       -- Abort_Signal --
2123       ------------------
2124
2125       when Attribute_Abort_Signal =>
2126          Check_Standard_Prefix;
2127          Rewrite (N, New_Reference_To (Stand.Abort_Signal, Loc));
2128          Analyze (N);
2129
2130       ------------
2131       -- Access --
2132       ------------
2133
2134       when Attribute_Access =>
2135          Analyze_Access_Attribute;
2136
2137       -------------
2138       -- Address --
2139       -------------
2140
2141       when Attribute_Address =>
2142          Check_E0;
2143
2144          --  Check for some junk cases, where we have to allow the address
2145          --  attribute but it does not make much sense, so at least for now
2146          --  just replace with Null_Address.
2147
2148          --  We also do this if the prefix is a reference to the AST_Entry
2149          --  attribute. If expansion is active, the attribute will be
2150          --  replaced by a function call, and address will work fine and
2151          --  get the proper value, but if expansion is not active, then
2152          --  the check here allows proper semantic analysis of the reference.
2153
2154          --  An Address attribute created by expansion is legal even when it
2155          --  applies to other entity-denoting expressions.
2156
2157          if Is_Protected_Self_Reference (P) then
2158
2159             --  Address attribute on a protected object self reference is legal
2160
2161             null;
2162
2163          elsif Is_Entity_Name (P) then
2164             declare
2165                Ent : constant Entity_Id := Entity (P);
2166
2167             begin
2168                if Is_Subprogram (Ent) then
2169                   Set_Address_Taken (Ent);
2170                   Kill_Current_Values (Ent);
2171
2172                   --  An Address attribute is accepted when generated by the
2173                   --  compiler for dispatching operation, and an error is
2174                   --  issued once the subprogram is frozen (to avoid confusing
2175                   --  errors about implicit uses of Address in the dispatch
2176                   --  table initialization).
2177
2178                   if Has_Pragma_Inline_Always (Entity (P))
2179                     and then Comes_From_Source (P)
2180                   then
2181                      Error_Attr_P
2182                        ("prefix of % attribute cannot be Inline_Always" &
2183                         " subprogram");
2184
2185                   --  It is illegal to apply 'Address to an intrinsic
2186                   --  subprogram. This is now formalized in AI05-0095.
2187                   --  In an instance, an attempt to obtain 'Address of an
2188                   --  intrinsic subprogram (e.g the renaming of a predefined
2189                   --  operator that is an actual) raises Program_Error.
2190
2191                   elsif Convention (Ent) = Convention_Intrinsic then
2192                      if In_Instance then
2193                         Rewrite (N,
2194                           Make_Raise_Program_Error (Loc,
2195                             Reason => PE_Address_Of_Intrinsic));
2196
2197                      else
2198                         Error_Msg_N
2199                          ("cannot take Address of intrinsic subprogram", N);
2200                      end if;
2201
2202                   --  Issue an error if prefix denotes an eliminated subprogram
2203
2204                   else
2205                      Check_For_Eliminated_Subprogram (P, Ent);
2206                   end if;
2207
2208                elsif Is_Object (Ent)
2209                  or else Ekind (Ent) = E_Label
2210                then
2211                   Set_Address_Taken (Ent);
2212
2213                --  If we have an address of an object, and the attribute
2214                --  comes from source, then set the object as potentially
2215                --  source modified. We do this because the resulting address
2216                --  can potentially be used to modify the variable and we
2217                --  might not detect this, leading to some junk warnings.
2218
2219                   Set_Never_Set_In_Source (Ent, False);
2220
2221                elsif (Is_Concurrent_Type (Etype (Ent))
2222                        and then Etype (Ent) = Base_Type (Ent))
2223                  or else Ekind (Ent) = E_Package
2224                  or else Is_Generic_Unit (Ent)
2225                then
2226                   Rewrite (N,
2227                     New_Occurrence_Of (RTE (RE_Null_Address), Sloc (N)));
2228
2229                else
2230                   Error_Attr ("invalid prefix for % attribute", P);
2231                end if;
2232             end;
2233
2234          elsif Nkind (P) = N_Attribute_Reference
2235            and then Attribute_Name (P) = Name_AST_Entry
2236          then
2237             Rewrite (N,
2238               New_Occurrence_Of (RTE (RE_Null_Address), Sloc (N)));
2239
2240          elsif Is_Object_Reference (P) then
2241             null;
2242
2243          elsif Nkind (P) = N_Selected_Component
2244            and then Is_Subprogram (Entity (Selector_Name (P)))
2245          then
2246             null;
2247
2248          --  What exactly are we allowing here ??? and is this properly
2249          --  documented in the sinfo documentation for this node ???
2250
2251          elsif not Comes_From_Source (N) then
2252             null;
2253
2254          else
2255             Error_Attr ("invalid prefix for % attribute", P);
2256          end if;
2257
2258          Set_Etype (N, RTE (RE_Address));
2259
2260       ------------------
2261       -- Address_Size --
2262       ------------------
2263
2264       when Attribute_Address_Size =>
2265          Standard_Attribute (System_Address_Size);
2266
2267       --------------
2268       -- Adjacent --
2269       --------------
2270
2271       when Attribute_Adjacent =>
2272          Check_Floating_Point_Type_2;
2273          Set_Etype (N, P_Base_Type);
2274          Resolve (E1, P_Base_Type);
2275          Resolve (E2, P_Base_Type);
2276
2277       ---------
2278       -- Aft --
2279       ---------
2280
2281       when Attribute_Aft =>
2282          Check_Fixed_Point_Type_0;
2283          Set_Etype (N, Universal_Integer);
2284
2285       ---------------
2286       -- Alignment --
2287       ---------------
2288
2289       when Attribute_Alignment =>
2290
2291          --  Don't we need more checking here, cf Size ???
2292
2293          Check_E0;
2294          Check_Not_Incomplete_Type;
2295          Check_Not_CPP_Type;
2296          Set_Etype (N, Universal_Integer);
2297
2298       ---------------
2299       -- Asm_Input --
2300       ---------------
2301
2302       when Attribute_Asm_Input =>
2303          Check_Asm_Attribute;
2304
2305          --  The back-end may need to take the address of E2
2306
2307          if Is_Entity_Name (E2) then
2308             Set_Address_Taken (Entity (E2));
2309          end if;
2310
2311          Set_Etype (N, RTE (RE_Asm_Input_Operand));
2312
2313       ----------------
2314       -- Asm_Output --
2315       ----------------
2316
2317       when Attribute_Asm_Output =>
2318          Check_Asm_Attribute;
2319
2320          if Etype (E2) = Any_Type then
2321             return;
2322
2323          elsif Aname = Name_Asm_Output then
2324             if not Is_Variable (E2) then
2325                Error_Attr
2326                  ("second argument for Asm_Output is not variable", E2);
2327             end if;
2328          end if;
2329
2330          Note_Possible_Modification (E2, Sure => True);
2331
2332          --  The back-end may need to take the address of E2
2333
2334          if Is_Entity_Name (E2) then
2335             Set_Address_Taken (Entity (E2));
2336          end if;
2337
2338          Set_Etype (N, RTE (RE_Asm_Output_Operand));
2339
2340       ---------------
2341       -- AST_Entry --
2342       ---------------
2343
2344       when Attribute_AST_Entry => AST_Entry : declare
2345          Ent  : Entity_Id;
2346          Pref : Node_Id;
2347          Ptyp : Entity_Id;
2348
2349          Indexed : Boolean;
2350          --  Indicates if entry family index is present. Note the coding
2351          --  here handles the entry family case, but in fact it cannot be
2352          --  executed currently, because pragma AST_Entry does not permit
2353          --  the specification of an entry family.
2354
2355          procedure Bad_AST_Entry;
2356          --  Signal a bad AST_Entry pragma
2357
2358          function OK_Entry (E : Entity_Id) return Boolean;
2359          --  Checks that E is of an appropriate entity kind for an entry
2360          --  (i.e. E_Entry if Index is False, or E_Entry_Family if Index
2361          --  is set True for the entry family case). In the True case,
2362          --  makes sure that Is_AST_Entry is set on the entry.
2363
2364          -------------------
2365          -- Bad_AST_Entry --
2366          -------------------
2367
2368          procedure Bad_AST_Entry is
2369          begin
2370             Error_Attr_P ("prefix for % attribute must be task entry");
2371          end Bad_AST_Entry;
2372
2373          --------------
2374          -- OK_Entry --
2375          --------------
2376
2377          function OK_Entry (E : Entity_Id) return Boolean is
2378             Result : Boolean;
2379
2380          begin
2381             if Indexed then
2382                Result := (Ekind (E) = E_Entry_Family);
2383             else
2384                Result := (Ekind (E) = E_Entry);
2385             end if;
2386
2387             if Result then
2388                if not Is_AST_Entry (E) then
2389                   Error_Msg_Name_2 := Aname;
2390                   Error_Attr ("% attribute requires previous % pragma", P);
2391                end if;
2392             end if;
2393
2394             return Result;
2395          end OK_Entry;
2396
2397       --  Start of processing for AST_Entry
2398
2399       begin
2400          Check_VMS (N);
2401          Check_E0;
2402
2403          --  Deal with entry family case
2404
2405          if Nkind (P) = N_Indexed_Component then
2406             Pref := Prefix (P);
2407             Indexed := True;
2408          else
2409             Pref := P;
2410             Indexed := False;
2411          end if;
2412
2413          Ptyp := Etype (Pref);
2414
2415          if Ptyp = Any_Type or else Error_Posted (Pref) then
2416             return;
2417          end if;
2418
2419          --  If the prefix is a selected component whose prefix is of an
2420          --  access type, then introduce an explicit dereference.
2421          --  ??? Could we reuse Check_Dereference here?
2422
2423          if Nkind (Pref) = N_Selected_Component
2424            and then Is_Access_Type (Ptyp)
2425          then
2426             Rewrite (Pref,
2427               Make_Explicit_Dereference (Sloc (Pref),
2428                 Relocate_Node (Pref)));
2429             Analyze_And_Resolve (Pref, Designated_Type (Ptyp));
2430          end if;
2431
2432          --  Prefix can be of the form a.b, where a is a task object
2433          --  and b is one of the entries of the corresponding task type.
2434
2435          if Nkind (Pref) = N_Selected_Component
2436            and then OK_Entry (Entity (Selector_Name (Pref)))
2437            and then Is_Object_Reference (Prefix (Pref))
2438            and then Is_Task_Type (Etype (Prefix (Pref)))
2439          then
2440             null;
2441
2442          --  Otherwise the prefix must be an entry of a containing task,
2443          --  or of a variable of the enclosing task type.
2444
2445          else
2446             if Nkind_In (Pref, N_Identifier, N_Expanded_Name) then
2447                Ent := Entity (Pref);
2448
2449                if not OK_Entry (Ent)
2450                  or else not In_Open_Scopes (Scope (Ent))
2451                then
2452                   Bad_AST_Entry;
2453                end if;
2454
2455             else
2456                Bad_AST_Entry;
2457             end if;
2458          end if;
2459
2460          Set_Etype (N, RTE (RE_AST_Handler));
2461       end AST_Entry;
2462
2463       ----------
2464       -- Base --
2465       ----------
2466
2467       --  Note: when the base attribute appears in the context of a subtype
2468       --  mark, the analysis is done by Sem_Ch8.Find_Type, rather than by
2469       --  the following circuit.
2470
2471       when Attribute_Base => Base : declare
2472          Typ : Entity_Id;
2473
2474       begin
2475          Check_E0;
2476          Find_Type (P);
2477          Typ := Entity (P);
2478
2479          if Ada_Version >= Ada_95
2480            and then not Is_Scalar_Type (Typ)
2481            and then not Is_Generic_Type (Typ)
2482          then
2483             Error_Attr_P ("prefix of Base attribute must be scalar type");
2484
2485          elsif Sloc (Typ) = Standard_Location
2486            and then Base_Type (Typ) = Typ
2487            and then Warn_On_Redundant_Constructs
2488          then
2489             Error_Msg_NE -- CODEFIX
2490               ("?redundant attribute, & is its own base type", N, Typ);
2491          end if;
2492
2493          if Nkind (Parent (N)) /= N_Attribute_Reference then
2494             Error_Msg_Name_1 := Aname;
2495             Check_SPARK_Restriction
2496               ("attribute% is only allowed as prefix of another attribute", P);
2497          end if;
2498
2499          Set_Etype (N, Base_Type (Entity (P)));
2500          Set_Entity (N, Base_Type (Entity (P)));
2501          Rewrite (N, New_Reference_To (Entity (N), Loc));
2502          Analyze (N);
2503       end Base;
2504
2505       ---------
2506       -- Bit --
2507       ---------
2508
2509       when Attribute_Bit => Bit :
2510       begin
2511          Check_E0;
2512
2513          if not Is_Object_Reference (P) then
2514             Error_Attr_P ("prefix for % attribute must be object");
2515
2516          --  What about the access object cases ???
2517
2518          else
2519             null;
2520          end if;
2521
2522          Set_Etype (N, Universal_Integer);
2523       end Bit;
2524
2525       ---------------
2526       -- Bit_Order --
2527       ---------------
2528
2529       when Attribute_Bit_Order => Bit_Order :
2530       begin
2531          Check_E0;
2532          Check_Type;
2533
2534          if not Is_Record_Type (P_Type) then
2535             Error_Attr_P ("prefix of % attribute must be record type");
2536          end if;
2537
2538          if Bytes_Big_Endian xor Reverse_Bit_Order (P_Type) then
2539             Rewrite (N,
2540               New_Occurrence_Of (RTE (RE_High_Order_First), Loc));
2541          else
2542             Rewrite (N,
2543               New_Occurrence_Of (RTE (RE_Low_Order_First), Loc));
2544          end if;
2545
2546          Set_Etype (N, RTE (RE_Bit_Order));
2547          Resolve (N);
2548
2549          --  Reset incorrect indication of staticness
2550
2551          Set_Is_Static_Expression (N, False);
2552       end Bit_Order;
2553
2554       ------------------
2555       -- Bit_Position --
2556       ------------------
2557
2558       --  Note: in generated code, we can have a Bit_Position attribute
2559       --  applied to a (naked) record component (i.e. the prefix is an
2560       --  identifier that references an E_Component or E_Discriminant
2561       --  entity directly, and this is interpreted as expected by Gigi.
2562       --  The following code will not tolerate such usage, but when the
2563       --  expander creates this special case, it marks it as analyzed
2564       --  immediately and sets an appropriate type.
2565
2566       when Attribute_Bit_Position =>
2567          if Comes_From_Source (N) then
2568             Check_Component;
2569          end if;
2570
2571          Set_Etype (N, Universal_Integer);
2572
2573       ------------------
2574       -- Body_Version --
2575       ------------------
2576
2577       when Attribute_Body_Version =>
2578          Check_E0;
2579          Check_Program_Unit;
2580          Set_Etype (N, RTE (RE_Version_String));
2581
2582       --------------
2583       -- Callable --
2584       --------------
2585
2586       when Attribute_Callable =>
2587          Check_E0;
2588          Set_Etype (N, Standard_Boolean);
2589          Check_Task_Prefix;
2590
2591       ------------
2592       -- Caller --
2593       ------------
2594
2595       when Attribute_Caller => Caller : declare
2596          Ent        : Entity_Id;
2597          S          : Entity_Id;
2598
2599       begin
2600          Check_E0;
2601
2602          if Nkind_In (P, N_Identifier, N_Expanded_Name) then
2603             Ent := Entity (P);
2604
2605             if not Is_Entry (Ent) then
2606                Error_Attr ("invalid entry name", N);
2607             end if;
2608
2609          else
2610             Error_Attr ("invalid entry name", N);
2611             return;
2612          end if;
2613
2614          for J in reverse 0 .. Scope_Stack.Last loop
2615             S := Scope_Stack.Table (J).Entity;
2616
2617             if S = Scope (Ent) then
2618                Error_Attr ("Caller must appear in matching accept or body", N);
2619             elsif S = Ent then
2620                exit;
2621             end if;
2622          end loop;
2623
2624          Set_Etype (N, RTE (RO_AT_Task_Id));
2625       end Caller;
2626
2627       -------------
2628       -- Ceiling --
2629       -------------
2630
2631       when Attribute_Ceiling =>
2632          Check_Floating_Point_Type_1;
2633          Set_Etype (N, P_Base_Type);
2634          Resolve (E1, P_Base_Type);
2635
2636       -----------
2637       -- Class --
2638       -----------
2639
2640       when Attribute_Class =>
2641          Check_Restriction (No_Dispatch, N);
2642          Check_E0;
2643          Find_Type (N);
2644
2645          --  Applying Class to untagged incomplete type is obsolescent in Ada
2646          --  2005. Note that we can't test Is_Tagged_Type here on P_Type, since
2647          --  this flag gets set by Find_Type in this situation.
2648
2649          if Restriction_Check_Required (No_Obsolescent_Features)
2650            and then Ada_Version >= Ada_2005
2651            and then Ekind (P_Type) = E_Incomplete_Type
2652          then
2653             declare
2654                DN : constant Node_Id := Declaration_Node (P_Type);
2655             begin
2656                if Nkind (DN) = N_Incomplete_Type_Declaration
2657                  and then not Tagged_Present (DN)
2658                then
2659                   Check_Restriction (No_Obsolescent_Features, P);
2660                end if;
2661             end;
2662          end if;
2663
2664       ------------------
2665       -- Code_Address --
2666       ------------------
2667
2668       when Attribute_Code_Address =>
2669          Check_E0;
2670
2671          if Nkind (P) = N_Attribute_Reference
2672            and then (Attribute_Name (P) = Name_Elab_Body
2673                        or else
2674                      Attribute_Name (P) = Name_Elab_Spec)
2675          then
2676             null;
2677
2678          elsif not Is_Entity_Name (P)
2679            or else (Ekind (Entity (P)) /= E_Function
2680                       and then
2681                     Ekind (Entity (P)) /= E_Procedure)
2682          then
2683             Error_Attr ("invalid prefix for % attribute", P);
2684             Set_Address_Taken (Entity (P));
2685
2686          --  Issue an error if the prefix denotes an eliminated subprogram
2687
2688          else
2689             Check_For_Eliminated_Subprogram (P, Entity (P));
2690          end if;
2691
2692          Set_Etype (N, RTE (RE_Address));
2693
2694       ----------------------
2695       -- Compiler_Version --
2696       ----------------------
2697
2698       when Attribute_Compiler_Version =>
2699          Check_E0;
2700          Check_Standard_Prefix;
2701          Rewrite (N, Make_String_Literal (Loc, "GNAT " & Gnat_Version_String));
2702          Analyze_And_Resolve (N, Standard_String);
2703
2704       --------------------
2705       -- Component_Size --
2706       --------------------
2707
2708       when Attribute_Component_Size =>
2709          Check_E0;
2710          Set_Etype (N, Universal_Integer);
2711
2712          --  Note: unlike other array attributes, unconstrained arrays are OK
2713
2714          if Is_Array_Type (P_Type) and then not Is_Constrained (P_Type) then
2715             null;
2716          else
2717             Check_Array_Type;
2718          end if;
2719
2720       -------------
2721       -- Compose --
2722       -------------
2723
2724       when Attribute_Compose =>
2725          Check_Floating_Point_Type_2;
2726          Set_Etype (N, P_Base_Type);
2727          Resolve (E1, P_Base_Type);
2728          Resolve (E2, Any_Integer);
2729
2730       -----------------
2731       -- Constrained --
2732       -----------------
2733
2734       when Attribute_Constrained =>
2735          Check_E0;
2736          Set_Etype (N, Standard_Boolean);
2737
2738          --  Case from RM J.4(2) of constrained applied to private type
2739
2740          if Is_Entity_Name (P) and then Is_Type (Entity (P)) then
2741             Check_Restriction (No_Obsolescent_Features, P);
2742
2743             if Warn_On_Obsolescent_Feature then
2744                Error_Msg_N
2745                  ("constrained for private type is an " &
2746                   "obsolescent feature (RM J.4)?", N);
2747             end if;
2748
2749             --  If we are within an instance, the attribute must be legal
2750             --  because it was valid in the generic unit. Ditto if this is
2751             --  an inlining of a function declared in an instance.
2752
2753             if In_Instance
2754               or else In_Inlined_Body
2755             then
2756                return;
2757
2758             --  For sure OK if we have a real private type itself, but must
2759             --  be completed, cannot apply Constrained to incomplete type.
2760
2761             elsif Is_Private_Type (Entity (P)) then
2762
2763                --  Note: this is one of the Annex J features that does not
2764                --  generate a warning from -gnatwj, since in fact it seems
2765                --  very useful, and is used in the GNAT runtime.
2766
2767                Check_Not_Incomplete_Type;
2768                return;
2769             end if;
2770
2771          --  Normal (non-obsolescent case) of application to object of
2772          --  a discriminated type.
2773
2774          else
2775             Check_Object_Reference (P);
2776
2777             --  If N does not come from source, then we allow the
2778             --  the attribute prefix to be of a private type whose
2779             --  full type has discriminants. This occurs in cases
2780             --  involving expanded calls to stream attributes.
2781
2782             if not Comes_From_Source (N) then
2783                P_Type := Underlying_Type (P_Type);
2784             end if;
2785
2786             --  Must have discriminants or be an access type designating
2787             --  a type with discriminants. If it is a classwide type is ???
2788             --  has unknown discriminants.
2789
2790             if Has_Discriminants (P_Type)
2791                or else Has_Unknown_Discriminants (P_Type)
2792                or else
2793                  (Is_Access_Type (P_Type)
2794                    and then Has_Discriminants (Designated_Type (P_Type)))
2795             then
2796                return;
2797
2798             --  Also allow an object of a generic type if extensions allowed
2799             --  and allow this for any type at all.
2800
2801             elsif (Is_Generic_Type (P_Type)
2802                      or else Is_Generic_Actual_Type (P_Type))
2803               and then Extensions_Allowed
2804             then
2805                return;
2806             end if;
2807          end if;
2808
2809          --  Fall through if bad prefix
2810
2811          Error_Attr_P
2812            ("prefix of % attribute must be object of discriminated type");
2813
2814       ---------------
2815       -- Copy_Sign --
2816       ---------------
2817
2818       when Attribute_Copy_Sign =>
2819          Check_Floating_Point_Type_2;
2820          Set_Etype (N, P_Base_Type);
2821          Resolve (E1, P_Base_Type);
2822          Resolve (E2, P_Base_Type);
2823
2824       -----------
2825       -- Count --
2826       -----------
2827
2828       when Attribute_Count => Count :
2829       declare
2830          Ent : Entity_Id;
2831          S   : Entity_Id;
2832          Tsk : Entity_Id;
2833
2834       begin
2835          Check_E0;
2836
2837          if Nkind_In (P, N_Identifier, N_Expanded_Name) then
2838             Ent := Entity (P);
2839
2840             if Ekind (Ent) /= E_Entry then
2841                Error_Attr ("invalid entry name", N);
2842             end if;
2843
2844          elsif Nkind (P) = N_Indexed_Component then
2845             if not Is_Entity_Name (Prefix (P))
2846               or else  No (Entity (Prefix (P)))
2847               or else Ekind (Entity (Prefix (P))) /= E_Entry_Family
2848             then
2849                if Nkind (Prefix (P)) = N_Selected_Component
2850                  and then Present (Entity (Selector_Name (Prefix (P))))
2851                  and then Ekind (Entity (Selector_Name (Prefix (P)))) =
2852                                                              E_Entry_Family
2853                then
2854                   Error_Attr
2855                     ("attribute % must apply to entry of current task", P);
2856
2857                else
2858                   Error_Attr ("invalid entry family name", P);
2859                end if;
2860                return;
2861
2862             else
2863                Ent := Entity (Prefix (P));
2864             end if;
2865
2866          elsif Nkind (P) = N_Selected_Component
2867            and then Present (Entity (Selector_Name (P)))
2868            and then Ekind (Entity (Selector_Name (P))) = E_Entry
2869          then
2870             Error_Attr
2871               ("attribute % must apply to entry of current task", P);
2872
2873          else
2874             Error_Attr ("invalid entry name", N);
2875             return;
2876          end if;
2877
2878          for J in reverse 0 .. Scope_Stack.Last loop
2879             S := Scope_Stack.Table (J).Entity;
2880
2881             if S = Scope (Ent) then
2882                if Nkind (P) = N_Expanded_Name then
2883                   Tsk := Entity (Prefix (P));
2884
2885                   --  The prefix denotes either the task type, or else a
2886                   --  single task whose task type is being analyzed.
2887
2888                   if (Is_Type (Tsk)
2889                       and then Tsk = S)
2890
2891                     or else (not Is_Type (Tsk)
2892                       and then Etype (Tsk) = S
2893                       and then not (Comes_From_Source (S)))
2894                   then
2895                      null;
2896                   else
2897                      Error_Attr
2898                        ("Attribute % must apply to entry of current task", N);
2899                   end if;
2900                end if;
2901
2902                exit;
2903
2904             elsif Ekind (Scope (Ent)) in Task_Kind
2905               and then
2906                 not Ekind_In (S, E_Loop, E_Block, E_Entry, E_Entry_Family)
2907             then
2908                Error_Attr ("Attribute % cannot appear in inner unit", N);
2909
2910             elsif Ekind (Scope (Ent)) = E_Protected_Type
2911               and then not Has_Completion (Scope (Ent))
2912             then
2913                Error_Attr ("attribute % can only be used inside body", N);
2914             end if;
2915          end loop;
2916
2917          if Is_Overloaded (P) then
2918             declare
2919                Index : Interp_Index;
2920                It    : Interp;
2921
2922             begin
2923                Get_First_Interp (P, Index, It);
2924
2925                while Present (It.Nam) loop
2926                   if It.Nam = Ent then
2927                      null;
2928
2929                   --  Ada 2005 (AI-345): Do not consider primitive entry
2930                   --  wrappers generated for task or protected types.
2931
2932                   elsif Ada_Version >= Ada_2005
2933                     and then not Comes_From_Source (It.Nam)
2934                   then
2935                      null;
2936
2937                   else
2938                      Error_Attr ("ambiguous entry name", N);
2939                   end if;
2940
2941                   Get_Next_Interp (Index, It);
2942                end loop;
2943             end;
2944          end if;
2945
2946          Set_Etype (N, Universal_Integer);
2947       end Count;
2948
2949       -----------------------
2950       -- Default_Bit_Order --
2951       -----------------------
2952
2953       when Attribute_Default_Bit_Order => Default_Bit_Order :
2954       begin
2955          Check_Standard_Prefix;
2956
2957          if Bytes_Big_Endian then
2958             Rewrite (N,
2959               Make_Integer_Literal (Loc, False_Value));
2960          else
2961             Rewrite (N,
2962               Make_Integer_Literal (Loc, True_Value));
2963          end if;
2964
2965          Set_Etype (N, Universal_Integer);
2966          Set_Is_Static_Expression (N);
2967       end Default_Bit_Order;
2968
2969       --------------
2970       -- Definite --
2971       --------------
2972
2973       when Attribute_Definite =>
2974          Legal_Formal_Attribute;
2975
2976       -----------
2977       -- Delta --
2978       -----------
2979
2980       when Attribute_Delta =>
2981          Check_Fixed_Point_Type_0;
2982          Set_Etype (N, Universal_Real);
2983
2984       ------------
2985       -- Denorm --
2986       ------------
2987
2988       when Attribute_Denorm =>
2989          Check_Floating_Point_Type_0;
2990          Set_Etype (N, Standard_Boolean);
2991
2992       ------------
2993       -- Digits --
2994       ------------
2995
2996       when Attribute_Digits =>
2997          Check_E0;
2998          Check_Type;
2999
3000          if not Is_Floating_Point_Type (P_Type)
3001            and then not Is_Decimal_Fixed_Point_Type (P_Type)
3002          then
3003             Error_Attr_P
3004               ("prefix of % attribute must be float or decimal type");
3005          end if;
3006
3007          Set_Etype (N, Universal_Integer);
3008
3009       ---------------
3010       -- Elab_Body --
3011       ---------------
3012
3013       --  Also handles processing for Elab_Spec
3014
3015       when Attribute_Elab_Body | Attribute_Elab_Spec =>
3016          Check_E0;
3017          Check_Unit_Name (P);
3018          Set_Etype (N, Standard_Void_Type);
3019
3020          --  We have to manually call the expander in this case to get
3021          --  the necessary expansion (normally attributes that return
3022          --  entities are not expanded).
3023
3024          Expand (N);
3025
3026       ---------------
3027       -- Elab_Spec --
3028       ---------------
3029
3030       --  Shares processing with Elab_Body
3031
3032       ----------------
3033       -- Elaborated --
3034       ----------------
3035
3036       when Attribute_Elaborated =>
3037          Check_E0;
3038          Check_Unit_Name (P);
3039          Set_Etype (N, Standard_Boolean);
3040
3041       ----------
3042       -- Emax --
3043       ----------
3044
3045       when Attribute_Emax =>
3046          Check_Floating_Point_Type_0;
3047          Set_Etype (N, Universal_Integer);
3048
3049       -------------
3050       -- Enabled --
3051       -------------
3052
3053       when Attribute_Enabled =>
3054          Check_Either_E0_Or_E1;
3055
3056          if Present (E1) then
3057             if not Is_Entity_Name (E1) or else No (Entity (E1)) then
3058                Error_Msg_N ("entity name expected for Enabled attribute", E1);
3059                E1 := Empty;
3060             end if;
3061          end if;
3062
3063          if Nkind (P) /= N_Identifier then
3064             Error_Msg_N ("identifier expected (check name)", P);
3065          elsif Get_Check_Id (Chars (P)) = No_Check_Id then
3066             Error_Msg_N ("& is not a recognized check name", P);
3067          end if;
3068
3069          Set_Etype (N, Standard_Boolean);
3070
3071       --------------
3072       -- Enum_Rep --
3073       --------------
3074
3075       when Attribute_Enum_Rep => Enum_Rep : declare
3076       begin
3077          if Present (E1) then
3078             Check_E1;
3079             Check_Discrete_Type;
3080             Resolve (E1, P_Base_Type);
3081
3082          else
3083             if not Is_Entity_Name (P)
3084               or else (not Is_Object (Entity (P))
3085                          and then
3086                        Ekind (Entity (P)) /= E_Enumeration_Literal)
3087             then
3088                Error_Attr_P
3089                  ("prefix of % attribute must be " &
3090                   "discrete type/object or enum literal");
3091             end if;
3092          end if;
3093
3094          Set_Etype (N, Universal_Integer);
3095       end Enum_Rep;
3096
3097       --------------
3098       -- Enum_Val --
3099       --------------
3100
3101       when Attribute_Enum_Val => Enum_Val : begin
3102          Check_E1;
3103          Check_Type;
3104
3105          if not Is_Enumeration_Type (P_Type) then
3106             Error_Attr_P ("prefix of % attribute must be enumeration type");
3107          end if;
3108
3109          --  If the enumeration type has a standard representation, the effect
3110          --  is the same as 'Val, so rewrite the attribute as a 'Val.
3111
3112          if not Has_Non_Standard_Rep (P_Base_Type) then
3113             Rewrite (N,
3114               Make_Attribute_Reference (Loc,
3115                 Prefix         => Relocate_Node (Prefix (N)),
3116                 Attribute_Name => Name_Val,
3117                 Expressions    => New_List (Relocate_Node (E1))));
3118             Analyze_And_Resolve (N, P_Base_Type);
3119
3120          --  Non-standard representation case (enumeration with holes)
3121
3122          else
3123             Check_Enum_Image;
3124             Resolve (E1, Any_Integer);
3125             Set_Etype (N, P_Base_Type);
3126          end if;
3127       end Enum_Val;
3128
3129       -------------
3130       -- Epsilon --
3131       -------------
3132
3133       when Attribute_Epsilon =>
3134          Check_Floating_Point_Type_0;
3135          Set_Etype (N, Universal_Real);
3136
3137       --------------
3138       -- Exponent --
3139       --------------
3140
3141       when Attribute_Exponent =>
3142          Check_Floating_Point_Type_1;
3143          Set_Etype (N, Universal_Integer);
3144          Resolve (E1, P_Base_Type);
3145
3146       ------------------
3147       -- External_Tag --
3148       ------------------
3149
3150       when Attribute_External_Tag =>
3151          Check_E0;
3152          Check_Type;
3153
3154          Set_Etype (N, Standard_String);
3155
3156          if not Is_Tagged_Type (P_Type) then
3157             Error_Attr_P ("prefix of % attribute must be tagged");
3158          end if;
3159
3160       ---------------
3161       -- Fast_Math --
3162       ---------------
3163
3164       when Attribute_Fast_Math =>
3165          Check_Standard_Prefix;
3166
3167          if Opt.Fast_Math then
3168             Rewrite (N, New_Occurrence_Of (Standard_True, Loc));
3169          else
3170             Rewrite (N, New_Occurrence_Of (Standard_False, Loc));
3171          end if;
3172
3173       -----------
3174       -- First --
3175       -----------
3176
3177       when Attribute_First =>
3178          Check_Array_Or_Scalar_Type;
3179          Bad_Attribute_For_Predicate;
3180
3181       ---------------
3182       -- First_Bit --
3183       ---------------
3184
3185       when Attribute_First_Bit =>
3186          Check_Component;
3187          Set_Etype (N, Universal_Integer);
3188
3189       -----------------
3190       -- Fixed_Value --
3191       -----------------
3192
3193       when Attribute_Fixed_Value =>
3194          Check_E1;
3195          Check_Fixed_Point_Type;
3196          Resolve (E1, Any_Integer);
3197          Set_Etype (N, P_Base_Type);
3198
3199       -----------
3200       -- Floor --
3201       -----------
3202
3203       when Attribute_Floor =>
3204          Check_Floating_Point_Type_1;
3205          Set_Etype (N, P_Base_Type);
3206          Resolve (E1, P_Base_Type);
3207
3208       ----------
3209       -- Fore --
3210       ----------
3211
3212       when Attribute_Fore =>
3213          Check_Fixed_Point_Type_0;
3214          Set_Etype (N, Universal_Integer);
3215
3216       --------------
3217       -- Fraction --
3218       --------------
3219
3220       when Attribute_Fraction =>
3221          Check_Floating_Point_Type_1;
3222          Set_Etype (N, P_Base_Type);
3223          Resolve (E1, P_Base_Type);
3224
3225       --------------
3226       -- From_Any --
3227       --------------
3228
3229       when Attribute_From_Any =>
3230          Check_E1;
3231          Check_PolyORB_Attribute;
3232          Set_Etype (N, P_Base_Type);
3233
3234       -----------------------
3235       -- Has_Access_Values --
3236       -----------------------
3237
3238       when Attribute_Has_Access_Values =>
3239          Check_Type;
3240          Check_E0;
3241          Set_Etype (N, Standard_Boolean);
3242
3243       -----------------------
3244       -- Has_Tagged_Values --
3245       -----------------------
3246
3247       when Attribute_Has_Tagged_Values =>
3248          Check_Type;
3249          Check_E0;
3250          Set_Etype (N, Standard_Boolean);
3251
3252       -----------------------
3253       -- Has_Discriminants --
3254       -----------------------
3255
3256       when Attribute_Has_Discriminants =>
3257          Legal_Formal_Attribute;
3258
3259       --------------
3260       -- Identity --
3261       --------------
3262
3263       when Attribute_Identity =>
3264          Check_E0;
3265          Analyze (P);
3266
3267          if Etype (P) =  Standard_Exception_Type then
3268             Set_Etype (N, RTE (RE_Exception_Id));
3269
3270          --  Ada 2005 (AI-345): Attribute 'Identity may be applied to
3271          --  task interface class-wide types.
3272
3273          elsif Is_Task_Type (Etype (P))
3274            or else (Is_Access_Type (Etype (P))
3275                       and then Is_Task_Type (Designated_Type (Etype (P))))
3276            or else (Ada_Version >= Ada_2005
3277                       and then Ekind (Etype (P)) = E_Class_Wide_Type
3278                       and then Is_Interface (Etype (P))
3279                       and then Is_Task_Interface (Etype (P)))
3280          then
3281             Resolve (P);
3282             Set_Etype (N, RTE (RO_AT_Task_Id));
3283
3284          else
3285             if Ada_Version >= Ada_2005 then
3286                Error_Attr_P
3287                  ("prefix of % attribute must be an exception, a " &
3288                   "task or a task interface class-wide object");
3289             else
3290                Error_Attr_P
3291                  ("prefix of % attribute must be a task or an exception");
3292             end if;
3293          end if;
3294
3295       -----------
3296       -- Image --
3297       -----------
3298
3299       when Attribute_Image => Image :
3300       begin
3301          Check_SPARK_Restriction_On_Attribute;
3302          Check_Scalar_Type;
3303          Set_Etype (N, Standard_String);
3304
3305          if Is_Real_Type (P_Type) then
3306             if Ada_Version = Ada_83 and then Comes_From_Source (N) then
3307                Error_Msg_Name_1 := Aname;
3308                Error_Msg_N
3309                  ("(Ada 83) % attribute not allowed for real types", N);
3310             end if;
3311          end if;
3312
3313          if Is_Enumeration_Type (P_Type) then
3314             Check_Restriction (No_Enumeration_Maps, N);
3315          end if;
3316
3317          Check_E1;
3318          Resolve (E1, P_Base_Type);
3319          Check_Enum_Image;
3320          Validate_Non_Static_Attribute_Function_Call;
3321       end Image;
3322
3323       ---------
3324       -- Img --
3325       ---------
3326
3327       when Attribute_Img => Img :
3328       begin
3329          Check_E0;
3330          Set_Etype (N, Standard_String);
3331
3332          if not Is_Scalar_Type (P_Type)
3333            or else (Is_Entity_Name (P) and then Is_Type (Entity (P)))
3334          then
3335             Error_Attr_P
3336               ("prefix of % attribute must be scalar object name");
3337          end if;
3338
3339          Check_Enum_Image;
3340       end Img;
3341
3342       -----------
3343       -- Input --
3344       -----------
3345
3346       when Attribute_Input =>
3347          Check_E1;
3348          Check_Stream_Attribute (TSS_Stream_Input);
3349          Set_Etype (N, P_Base_Type);
3350
3351       -------------------
3352       -- Integer_Value --
3353       -------------------
3354
3355       when Attribute_Integer_Value =>
3356          Check_E1;
3357          Check_Integer_Type;
3358          Resolve (E1, Any_Fixed);
3359
3360          --  Signal an error if argument type is not a specific fixed-point
3361          --  subtype. An error has been signalled already if the argument
3362          --  was not of a fixed-point type.
3363
3364          if Etype (E1) = Any_Fixed and then not Error_Posted (E1) then
3365             Error_Attr ("argument of % must be of a fixed-point type", E1);
3366          end if;
3367
3368          Set_Etype (N, P_Base_Type);
3369
3370       -------------------
3371       -- Invalid_Value --
3372       -------------------
3373
3374       when Attribute_Invalid_Value =>
3375          Check_E0;
3376          Check_Scalar_Type;
3377          Set_Etype (N, P_Base_Type);
3378          Invalid_Value_Used := True;
3379
3380       -----------
3381       -- Large --
3382       -----------
3383
3384       when Attribute_Large =>
3385          Check_E0;
3386          Check_Real_Type;
3387          Set_Etype (N, Universal_Real);
3388
3389       ----------
3390       -- Last --
3391       ----------
3392
3393       when Attribute_Last =>
3394          Check_Array_Or_Scalar_Type;
3395          Bad_Attribute_For_Predicate;
3396
3397       --------------
3398       -- Last_Bit --
3399       --------------
3400
3401       when Attribute_Last_Bit =>
3402          Check_Component;
3403          Set_Etype (N, Universal_Integer);
3404
3405       ------------------
3406       -- Leading_Part --
3407       ------------------
3408
3409       when Attribute_Leading_Part =>
3410          Check_Floating_Point_Type_2;
3411          Set_Etype (N, P_Base_Type);
3412          Resolve (E1, P_Base_Type);
3413          Resolve (E2, Any_Integer);
3414
3415       ------------
3416       -- Length --
3417       ------------
3418
3419       when Attribute_Length =>
3420          Check_Array_Type;
3421          Set_Etype (N, Universal_Integer);
3422
3423       -------------
3424       -- Machine --
3425       -------------
3426
3427       when Attribute_Machine =>
3428          Check_Floating_Point_Type_1;
3429          Set_Etype (N, P_Base_Type);
3430          Resolve (E1, P_Base_Type);
3431
3432       ------------------
3433       -- Machine_Emax --
3434       ------------------
3435
3436       when Attribute_Machine_Emax =>
3437          Check_Floating_Point_Type_0;
3438          Set_Etype (N, Universal_Integer);
3439
3440       ------------------
3441       -- Machine_Emin --
3442       ------------------
3443
3444       when Attribute_Machine_Emin =>
3445          Check_Floating_Point_Type_0;
3446          Set_Etype (N, Universal_Integer);
3447
3448       ----------------------
3449       -- Machine_Mantissa --
3450       ----------------------
3451
3452       when Attribute_Machine_Mantissa =>
3453          Check_Floating_Point_Type_0;
3454          Set_Etype (N, Universal_Integer);
3455
3456       -----------------------
3457       -- Machine_Overflows --
3458       -----------------------
3459
3460       when Attribute_Machine_Overflows =>
3461          Check_Real_Type;
3462          Check_E0;
3463          Set_Etype (N, Standard_Boolean);
3464
3465       -------------------
3466       -- Machine_Radix --
3467       -------------------
3468
3469       when Attribute_Machine_Radix =>
3470          Check_Real_Type;
3471          Check_E0;
3472          Set_Etype (N, Universal_Integer);
3473
3474       ----------------------
3475       -- Machine_Rounding --
3476       ----------------------
3477
3478       when Attribute_Machine_Rounding =>
3479          Check_Floating_Point_Type_1;
3480          Set_Etype (N, P_Base_Type);
3481          Resolve (E1, P_Base_Type);
3482
3483       --------------------
3484       -- Machine_Rounds --
3485       --------------------
3486
3487       when Attribute_Machine_Rounds =>
3488          Check_Real_Type;
3489          Check_E0;
3490          Set_Etype (N, Standard_Boolean);
3491
3492       ------------------
3493       -- Machine_Size --
3494       ------------------
3495
3496       when Attribute_Machine_Size =>
3497          Check_E0;
3498          Check_Type;
3499          Check_Not_Incomplete_Type;
3500          Set_Etype (N, Universal_Integer);
3501
3502       --------------
3503       -- Mantissa --
3504       --------------
3505
3506       when Attribute_Mantissa =>
3507          Check_E0;
3508          Check_Real_Type;
3509          Set_Etype (N, Universal_Integer);
3510
3511       ---------
3512       -- Max --
3513       ---------
3514
3515       when Attribute_Max =>
3516          Check_E2;
3517          Check_Scalar_Type;
3518          Resolve (E1, P_Base_Type);
3519          Resolve (E2, P_Base_Type);
3520          Set_Etype (N, P_Base_Type);
3521
3522       ----------------------------------
3523       -- Max_Alignment_For_Allocation --
3524       -- Max_Size_In_Storage_Elements --
3525       ----------------------------------
3526
3527       when Attribute_Max_Alignment_For_Allocation |
3528         Attribute_Max_Size_In_Storage_Elements =>
3529          Check_E0;
3530          Check_Type;
3531          Check_Not_Incomplete_Type;
3532          Set_Etype (N, Universal_Integer);
3533
3534       -----------------------
3535       -- Maximum_Alignment --
3536       -----------------------
3537
3538       when Attribute_Maximum_Alignment =>
3539          Standard_Attribute (Ttypes.Maximum_Alignment);
3540
3541       --------------------
3542       -- Mechanism_Code --
3543       --------------------
3544
3545       when Attribute_Mechanism_Code =>
3546          if not Is_Entity_Name (P)
3547            or else not Is_Subprogram (Entity (P))
3548          then
3549             Error_Attr_P ("prefix of % attribute must be subprogram");
3550          end if;
3551
3552          Check_Either_E0_Or_E1;
3553
3554          if Present (E1) then
3555             Resolve (E1, Any_Integer);
3556             Set_Etype (E1, Standard_Integer);
3557
3558             if not Is_Static_Expression (E1) then
3559                Flag_Non_Static_Expr
3560                  ("expression for parameter number must be static!", E1);
3561                Error_Attr;
3562
3563             elsif UI_To_Int (Intval (E1)) > Number_Formals (Entity (P))
3564               or else UI_To_Int (Intval (E1)) < 0
3565             then
3566                Error_Attr ("invalid parameter number for % attribute", E1);
3567             end if;
3568          end if;
3569
3570          Set_Etype (N, Universal_Integer);
3571
3572       ---------
3573       -- Min --
3574       ---------
3575
3576       when Attribute_Min =>
3577          Check_E2;
3578          Check_Scalar_Type;
3579          Resolve (E1, P_Base_Type);
3580          Resolve (E2, P_Base_Type);
3581          Set_Etype (N, P_Base_Type);
3582
3583       ---------
3584       -- Mod --
3585       ---------
3586
3587       when Attribute_Mod =>
3588
3589          --  Note: this attribute is only allowed in Ada 2005 mode, but
3590          --  we do not need to test that here, since Mod is only recognized
3591          --  as an attribute name in Ada 2005 mode during the parse.
3592
3593          Check_E1;
3594          Check_Modular_Integer_Type;
3595          Resolve (E1, Any_Integer);
3596          Set_Etype (N, P_Base_Type);
3597
3598       -----------
3599       -- Model --
3600       -----------
3601
3602       when Attribute_Model =>
3603          Check_Floating_Point_Type_1;
3604          Set_Etype (N, P_Base_Type);
3605          Resolve (E1, P_Base_Type);
3606
3607       ----------------
3608       -- Model_Emin --
3609       ----------------
3610
3611       when Attribute_Model_Emin =>
3612          Check_Floating_Point_Type_0;
3613          Set_Etype (N, Universal_Integer);
3614
3615       -------------------
3616       -- Model_Epsilon --
3617       -------------------
3618
3619       when Attribute_Model_Epsilon =>
3620          Check_Floating_Point_Type_0;
3621          Set_Etype (N, Universal_Real);
3622
3623       --------------------
3624       -- Model_Mantissa --
3625       --------------------
3626
3627       when Attribute_Model_Mantissa =>
3628          Check_Floating_Point_Type_0;
3629          Set_Etype (N, Universal_Integer);
3630
3631       -----------------
3632       -- Model_Small --
3633       -----------------
3634
3635       when Attribute_Model_Small =>
3636          Check_Floating_Point_Type_0;
3637          Set_Etype (N, Universal_Real);
3638
3639       -------------
3640       -- Modulus --
3641       -------------
3642
3643       when Attribute_Modulus =>
3644          Check_E0;
3645          Check_Modular_Integer_Type;
3646          Set_Etype (N, Universal_Integer);
3647
3648       --------------------
3649       -- Null_Parameter --
3650       --------------------
3651
3652       when Attribute_Null_Parameter => Null_Parameter : declare
3653          Parnt  : constant Node_Id := Parent (N);
3654          GParnt : constant Node_Id := Parent (Parnt);
3655
3656          procedure Bad_Null_Parameter (Msg : String);
3657          --  Used if bad Null parameter attribute node is found. Issues
3658          --  given error message, and also sets the type to Any_Type to
3659          --  avoid blowups later on from dealing with a junk node.
3660
3661          procedure Must_Be_Imported (Proc_Ent : Entity_Id);
3662          --  Called to check that Proc_Ent is imported subprogram
3663
3664          ------------------------
3665          -- Bad_Null_Parameter --
3666          ------------------------
3667
3668          procedure Bad_Null_Parameter (Msg : String) is
3669          begin
3670             Error_Msg_N (Msg, N);
3671             Set_Etype (N, Any_Type);
3672          end Bad_Null_Parameter;
3673
3674          ----------------------
3675          -- Must_Be_Imported --
3676          ----------------------
3677
3678          procedure Must_Be_Imported (Proc_Ent : Entity_Id) is
3679             Pent : constant Entity_Id := Ultimate_Alias (Proc_Ent);
3680
3681          begin
3682             --  Ignore check if procedure not frozen yet (we will get
3683             --  another chance when the default parameter is reanalyzed)
3684
3685             if not Is_Frozen (Pent) then
3686                return;
3687
3688             elsif not Is_Imported (Pent) then
3689                Bad_Null_Parameter
3690                  ("Null_Parameter can only be used with imported subprogram");
3691
3692             else
3693                return;
3694             end if;
3695          end Must_Be_Imported;
3696
3697       --  Start of processing for Null_Parameter
3698
3699       begin
3700          Check_Type;
3701          Check_E0;
3702          Set_Etype (N, P_Type);
3703
3704          --  Case of attribute used as default expression
3705
3706          if Nkind (Parnt) = N_Parameter_Specification then
3707             Must_Be_Imported (Defining_Entity (GParnt));
3708
3709          --  Case of attribute used as actual for subprogram (positional)
3710
3711          elsif Nkind_In (Parnt, N_Procedure_Call_Statement,
3712                                 N_Function_Call)
3713             and then Is_Entity_Name (Name (Parnt))
3714          then
3715             Must_Be_Imported (Entity (Name (Parnt)));
3716
3717          --  Case of attribute used as actual for subprogram (named)
3718
3719          elsif Nkind (Parnt) = N_Parameter_Association
3720            and then Nkind_In (GParnt, N_Procedure_Call_Statement,
3721                                       N_Function_Call)
3722            and then Is_Entity_Name (Name (GParnt))
3723          then
3724             Must_Be_Imported (Entity (Name (GParnt)));
3725
3726          --  Not an allowed case
3727
3728          else
3729             Bad_Null_Parameter
3730               ("Null_Parameter must be actual or default parameter");
3731          end if;
3732       end Null_Parameter;
3733
3734       -----------------
3735       -- Object_Size --
3736       -----------------
3737
3738       when Attribute_Object_Size =>
3739          Check_E0;
3740          Check_Type;
3741          Check_Not_Incomplete_Type;
3742          Set_Etype (N, Universal_Integer);
3743
3744       ---------
3745       -- Old --
3746       ---------
3747
3748       when Attribute_Old =>
3749
3750          --  The attribute reference is a primary. If expressions follow, the
3751          --  attribute reference is an indexable object, so rewrite the node
3752          --  accordingly.
3753
3754          if Present (E1) then
3755             Rewrite (N,
3756               Make_Indexed_Component (Loc,
3757                 Prefix      =>
3758                   Make_Attribute_Reference (Loc,
3759                     Prefix         => Relocate_Node (Prefix (N)),
3760                     Attribute_Name => Name_Old),
3761                 Expressions => Expressions (N)));
3762
3763             Analyze (N);
3764             return;
3765          end if;
3766
3767          Check_E0;
3768          Set_Etype (N, P_Type);
3769
3770          if No (Current_Subprogram) then
3771             Error_Attr ("attribute % can only appear within subprogram", N);
3772          end if;
3773
3774          if Is_Limited_Type (P_Type) then
3775             Error_Attr ("attribute % cannot apply to limited objects", P);
3776          end if;
3777
3778          if Is_Entity_Name (P)
3779            and then Is_Constant_Object (Entity (P))
3780          then
3781             Error_Msg_N
3782               ("?attribute Old applied to constant has no effect", P);
3783          end if;
3784
3785          --  Check that the expression does not refer to local entities
3786
3787          Check_Local : declare
3788             Subp : Entity_Id := Current_Subprogram;
3789
3790             function Process (N : Node_Id) return Traverse_Result;
3791             --  Check that N does not contain references to local variables or
3792             --  other local entities of Subp.
3793
3794             -------------
3795             -- Process --
3796             -------------
3797
3798             function Process (N : Node_Id) return Traverse_Result is
3799             begin
3800                if Is_Entity_Name (N)
3801                  and then Present (Entity (N))
3802                  and then not Is_Formal (Entity (N))
3803                  and then Enclosing_Subprogram (Entity (N)) = Subp
3804                then
3805                   Error_Msg_Node_1 := Entity (N);
3806                   Error_Attr
3807                     ("attribute % cannot refer to local variable&", N);
3808                end if;
3809
3810                return OK;
3811             end Process;
3812
3813             procedure Check_No_Local is new Traverse_Proc;
3814
3815          --  Start of processing for Check_Local
3816
3817          begin
3818             Check_No_Local (P);
3819
3820             if In_Parameter_Specification (P) then
3821
3822                --  We have additional restrictions on using 'Old in parameter
3823                --  specifications.
3824
3825                if Present (Enclosing_Subprogram (Current_Subprogram)) then
3826
3827                   --  Check that there is no reference to the enclosing
3828                   --  subprogram local variables. Otherwise, we might end up
3829                   --  being called from the enclosing subprogram and thus using
3830                   --  'Old on a local variable which is not defined at entry
3831                   --  time.
3832
3833                   Subp := Enclosing_Subprogram (Current_Subprogram);
3834                   Check_No_Local (P);
3835
3836                else
3837                   --  We must prevent default expression of library-level
3838                   --  subprogram from using 'Old, as the subprogram may be
3839                   --  used in elaboration code for which there is no enclosing
3840                   --  subprogram.
3841
3842                   Error_Attr
3843                     ("attribute % can only appear within subprogram", N);
3844                end if;
3845             end if;
3846          end Check_Local;
3847
3848       ------------
3849       -- Output --
3850       ------------
3851
3852       when Attribute_Output =>
3853          Check_E2;
3854          Check_Stream_Attribute (TSS_Stream_Output);
3855          Set_Etype (N, Standard_Void_Type);
3856          Resolve (N, Standard_Void_Type);
3857
3858       ------------------
3859       -- Partition_ID --
3860       ------------------
3861
3862       when Attribute_Partition_ID => Partition_Id :
3863       begin
3864          Check_E0;
3865
3866          if P_Type /= Any_Type then
3867             if not Is_Library_Level_Entity (Entity (P)) then
3868                Error_Attr_P
3869                  ("prefix of % attribute must be library-level entity");
3870
3871             --  The defining entity of prefix should not be declared inside a
3872             --  Pure unit. RM E.1(8). Is_Pure was set during declaration.
3873
3874             elsif Is_Entity_Name (P)
3875               and then Is_Pure (Entity (P))
3876             then
3877                Error_Attr_P ("prefix of% attribute must not be declared pure");
3878             end if;
3879          end if;
3880
3881          Set_Etype (N, Universal_Integer);
3882       end Partition_Id;
3883
3884       -------------------------
3885       -- Passed_By_Reference --
3886       -------------------------
3887
3888       when Attribute_Passed_By_Reference =>
3889          Check_E0;
3890          Check_Type;
3891          Set_Etype (N, Standard_Boolean);
3892
3893       ------------------
3894       -- Pool_Address --
3895       ------------------
3896
3897       when Attribute_Pool_Address =>
3898          Check_E0;
3899          Set_Etype (N, RTE (RE_Address));
3900
3901       ---------
3902       -- Pos --
3903       ---------
3904
3905       when Attribute_Pos =>
3906          Check_Discrete_Type;
3907          Check_E1;
3908
3909          if Is_Boolean_Type (P_Type) then
3910             Error_Msg_Name_1 := Aname;
3911             Error_Msg_Name_2 := Chars (P_Type);
3912             Check_SPARK_Restriction
3913               ("attribute% is not allowed for type%", P);
3914          end if;
3915
3916          Resolve (E1, P_Base_Type);
3917          Set_Etype (N, Universal_Integer);
3918
3919       --------------
3920       -- Position --
3921       --------------
3922
3923       when Attribute_Position =>
3924          Check_Component;
3925          Set_Etype (N, Universal_Integer);
3926
3927       ----------
3928       -- Pred --
3929       ----------
3930
3931       when Attribute_Pred =>
3932          Check_Scalar_Type;
3933          Check_E1;
3934
3935          if Is_Real_Type (P_Type) or else Is_Boolean_Type (P_Type) then
3936             Error_Msg_Name_1 := Aname;
3937             Error_Msg_Name_2 := Chars (P_Type);
3938             Check_SPARK_Restriction
3939               ("attribute% is not allowed for type%", P);
3940          end if;
3941
3942          Resolve (E1, P_Base_Type);
3943          Set_Etype (N, P_Base_Type);
3944
3945          --  Nothing to do for real type case
3946
3947          if Is_Real_Type (P_Type) then
3948             null;
3949
3950          --  If not modular type, test for overflow check required
3951
3952          else
3953             if not Is_Modular_Integer_Type (P_Type)
3954               and then not Range_Checks_Suppressed (P_Base_Type)
3955             then
3956                Enable_Range_Check (E1);
3957             end if;
3958          end if;
3959
3960       --------------
3961       -- Priority --
3962       --------------
3963
3964       --  Ada 2005 (AI-327): Dynamic ceiling priorities
3965
3966       when Attribute_Priority =>
3967          if Ada_Version < Ada_2005 then
3968             Error_Attr ("% attribute is allowed only in Ada 2005 mode", P);
3969          end if;
3970
3971          Check_E0;
3972
3973          --  The prefix must be a protected object (AARM D.5.2 (2/2))
3974
3975          Analyze (P);
3976
3977          if Is_Protected_Type (Etype (P))
3978            or else (Is_Access_Type (Etype (P))
3979                       and then Is_Protected_Type (Designated_Type (Etype (P))))
3980          then
3981             Resolve (P, Etype (P));
3982          else
3983             Error_Attr_P ("prefix of % attribute must be a protected object");
3984          end if;
3985
3986          Set_Etype (N, Standard_Integer);
3987
3988          --  Must be called from within a protected procedure or entry of the
3989          --  protected object.
3990
3991          declare
3992             S : Entity_Id;
3993
3994          begin
3995             S := Current_Scope;
3996             while S /= Etype (P)
3997                and then S /= Standard_Standard
3998             loop
3999                S := Scope (S);
4000             end loop;
4001
4002             if S = Standard_Standard then
4003                Error_Attr ("the attribute % is only allowed inside protected "
4004                            & "operations", P);
4005             end if;
4006          end;
4007
4008          Validate_Non_Static_Attribute_Function_Call;
4009
4010       -----------
4011       -- Range --
4012       -----------
4013
4014       when Attribute_Range =>
4015          Check_Array_Or_Scalar_Type;
4016          Bad_Attribute_For_Predicate;
4017
4018          if Ada_Version = Ada_83
4019            and then Is_Scalar_Type (P_Type)
4020            and then Comes_From_Source (N)
4021          then
4022             Error_Attr
4023               ("(Ada 83) % attribute not allowed for scalar type", P);
4024          end if;
4025
4026       ------------
4027       -- Result --
4028       ------------
4029
4030       when Attribute_Result => Result : declare
4031          CS : Entity_Id;
4032          --  The enclosing scope, excluding loops for quantified expressions
4033
4034          PS : Entity_Id;
4035          --  During analysis, CS is the postcondition subprogram and PS the
4036          --  source subprogram to which the postcondition applies. During
4037          --  pre-analysis, CS is the scope of the subprogram declaration.
4038
4039          Prag : Node_Id;
4040          --  During pre-analysis, Prag is the enclosing pragma node if any
4041
4042       begin
4043          --  Find enclosing scopes, excluding loops
4044
4045          CS := Current_Scope;
4046          while Ekind (CS) = E_Loop loop
4047             CS := Scope (CS);
4048          end loop;
4049
4050          PS := Scope (CS);
4051
4052          --  If the enclosing subprogram is always inlined, the enclosing
4053          --  postcondition will not be propagated to the expanded call.
4054
4055          if not In_Spec_Expression
4056            and then Has_Pragma_Inline_Always (PS)
4057            and then Warn_On_Redundant_Constructs
4058          then
4059             Error_Msg_N
4060               ("postconditions on inlined functions not enforced?", N);
4061          end if;
4062
4063          --  If we are in the scope of a function and in Spec_Expression mode,
4064          --  this is likely the prescan of the postcondition pragma, and we
4065          --  just set the proper type. If there is an error it will be caught
4066          --  when the real Analyze call is done.
4067
4068          if Ekind (CS) = E_Function
4069            and then In_Spec_Expression
4070          then
4071             --  Check OK prefix
4072
4073             if Chars (CS) /= Chars (P) then
4074                Error_Msg_Name_1 := Name_Result;
4075
4076                Error_Msg_NE
4077                  ("incorrect prefix for % attribute, expected &", P, CS);
4078                Error_Attr;
4079             end if;
4080
4081             --  Check in postcondition of function
4082
4083             Prag := N;
4084             while not Nkind_In (Prag, N_Pragma,
4085                                       N_Function_Specification,
4086                                       N_Subprogram_Body)
4087             loop
4088                Prag := Parent (Prag);
4089             end loop;
4090
4091             if Nkind (Prag) /= N_Pragma then
4092                Error_Attr
4093                  ("% attribute can only appear in postcondition of function",
4094                   P);
4095
4096             elsif Get_Pragma_Id (Prag) = Pragma_Test_Case then
4097                declare
4098                   Arg_Ens : constant Node_Id :=
4099                               Get_Ensures_From_Test_Case_Pragma (Prag);
4100                   Arg     : Node_Id;
4101
4102                begin
4103                   Arg := N;
4104                   while Arg /= Prag and Arg /= Arg_Ens loop
4105                      Arg := Parent (Arg);
4106                   end loop;
4107
4108                   if Arg /= Arg_Ens then
4109                      Error_Attr ("% attribute misplaced inside Test_Case", P);
4110                   end if;
4111                end;
4112
4113             elsif Get_Pragma_Id (Prag) /= Pragma_Postcondition then
4114                Error_Attr
4115                  ("% attribute can only appear in postcondition of function",
4116                   P);
4117             end if;
4118
4119             --  The attribute reference is a primary. If expressions follow,
4120             --  the attribute reference is really an indexable object, so
4121             --  rewrite and analyze as an indexed component.
4122
4123             if Present (E1) then
4124                Rewrite (N,
4125                  Make_Indexed_Component (Loc,
4126                    Prefix      =>
4127                      Make_Attribute_Reference (Loc,
4128                        Prefix         => Relocate_Node (Prefix (N)),
4129                        Attribute_Name => Name_Result),
4130                    Expressions => Expressions (N)));
4131                Analyze (N);
4132                return;
4133             end if;
4134
4135             Set_Etype (N, Etype (CS));
4136
4137             --  If several functions with that name are visible,
4138             --  the intended one is the current scope.
4139
4140             if Is_Overloaded (P) then
4141                Set_Entity (P, CS);
4142                Set_Is_Overloaded (P, False);
4143             end if;
4144
4145          --  Body case, where we must be inside a generated _Postcondition
4146          --  procedure, and the prefix must be on the scope stack, or else
4147          --  the attribute use is definitely misplaced. The condition itself
4148          --  may have generated transient scopes, and is not necessarily the
4149          --  current one.
4150
4151          else
4152             while Present (CS) and then CS /= Standard_Standard loop
4153                if Chars (CS) = Name_uPostconditions then
4154                   exit;
4155                else
4156                   CS := Scope (CS);
4157                end if;
4158             end loop;
4159
4160             PS := Scope (CS);
4161
4162             if Chars (CS) = Name_uPostconditions
4163               and then Ekind (PS) = E_Function
4164             then
4165                --  Check OK prefix
4166
4167                if Nkind_In (P, N_Identifier, N_Operator_Symbol)
4168                  and then Chars (P) = Chars (PS)
4169                then
4170                   null;
4171
4172                --  Within an instance, the prefix designates the local renaming
4173                --  of the original generic.
4174
4175                elsif Is_Entity_Name (P)
4176                  and then Ekind (Entity (P)) = E_Function
4177                  and then Present (Alias (Entity (P)))
4178                  and then Chars (Alias (Entity (P))) = Chars (PS)
4179                then
4180                   null;
4181
4182                else
4183                   Error_Msg_NE
4184                     ("incorrect prefix for % attribute, expected &", P, PS);
4185                   Error_Attr;
4186                end if;
4187
4188                Rewrite (N, Make_Identifier (Sloc (N), Name_uResult));
4189                Analyze_And_Resolve (N, Etype (PS));
4190
4191             else
4192                Error_Attr
4193                  ("% attribute can only appear in postcondition of function",
4194                   P);
4195             end if;
4196          end if;
4197       end Result;
4198
4199       ------------------
4200       -- Range_Length --
4201       ------------------
4202
4203       when Attribute_Range_Length =>
4204          Check_E0;
4205          Check_Discrete_Type;
4206          Set_Etype (N, Universal_Integer);
4207
4208       ----------
4209       -- Read --
4210       ----------
4211
4212       when Attribute_Read =>
4213          Check_E2;
4214          Check_Stream_Attribute (TSS_Stream_Read);
4215          Set_Etype (N, Standard_Void_Type);
4216          Resolve (N, Standard_Void_Type);
4217          Note_Possible_Modification (E2, Sure => True);
4218
4219       ---------
4220       -- Ref --
4221       ---------
4222
4223       when Attribute_Ref =>
4224          Check_E1;
4225          Analyze (P);
4226
4227          if Nkind (P) /= N_Expanded_Name
4228            or else not Is_RTE (P_Type, RE_Address)
4229          then
4230             Error_Attr_P ("prefix of % attribute must be System.Address");
4231          end if;
4232
4233          Analyze_And_Resolve (E1, Any_Integer);
4234          Set_Etype (N, RTE (RE_Address));
4235
4236       ---------------
4237       -- Remainder --
4238       ---------------
4239
4240       when Attribute_Remainder =>
4241          Check_Floating_Point_Type_2;
4242          Set_Etype (N, P_Base_Type);
4243          Resolve (E1, P_Base_Type);
4244          Resolve (E2, P_Base_Type);
4245
4246       -----------
4247       -- Round --
4248       -----------
4249
4250       when Attribute_Round =>
4251          Check_E1;
4252          Check_Decimal_Fixed_Point_Type;
4253          Set_Etype (N, P_Base_Type);
4254
4255          --  Because the context is universal_real (3.5.10(12)) it is a legal
4256          --  context for a universal fixed expression. This is the only
4257          --  attribute whose functional description involves U_R.
4258
4259          if Etype (E1) = Universal_Fixed then
4260             declare
4261                Conv : constant Node_Id := Make_Type_Conversion (Loc,
4262                   Subtype_Mark => New_Occurrence_Of (Universal_Real, Loc),
4263                   Expression   => Relocate_Node (E1));
4264
4265             begin
4266                Rewrite (E1, Conv);
4267                Analyze (E1);
4268             end;
4269          end if;
4270
4271          Resolve (E1, Any_Real);
4272
4273       --------------
4274       -- Rounding --
4275       --------------
4276
4277       when Attribute_Rounding =>
4278          Check_Floating_Point_Type_1;
4279          Set_Etype (N, P_Base_Type);
4280          Resolve (E1, P_Base_Type);
4281
4282       ---------------
4283       -- Safe_Emax --
4284       ---------------
4285
4286       when Attribute_Safe_Emax =>
4287          Check_Floating_Point_Type_0;
4288          Set_Etype (N, Universal_Integer);
4289
4290       ----------------
4291       -- Safe_First --
4292       ----------------
4293
4294       when Attribute_Safe_First =>
4295          Check_Floating_Point_Type_0;
4296          Set_Etype (N, Universal_Real);
4297
4298       ----------------
4299       -- Safe_Large --
4300       ----------------
4301
4302       when Attribute_Safe_Large =>
4303          Check_E0;
4304          Check_Real_Type;
4305          Set_Etype (N, Universal_Real);
4306
4307       ---------------
4308       -- Safe_Last --
4309       ---------------
4310
4311       when Attribute_Safe_Last =>
4312          Check_Floating_Point_Type_0;
4313          Set_Etype (N, Universal_Real);
4314
4315       ----------------
4316       -- Safe_Small --
4317       ----------------
4318
4319       when Attribute_Safe_Small =>
4320          Check_E0;
4321          Check_Real_Type;
4322          Set_Etype (N, Universal_Real);
4323
4324       -----------
4325       -- Scale --
4326       -----------
4327
4328       when Attribute_Scale =>
4329          Check_E0;
4330          Check_Decimal_Fixed_Point_Type;
4331          Set_Etype (N, Universal_Integer);
4332
4333       -------------
4334       -- Scaling --
4335       -------------
4336
4337       when Attribute_Scaling =>
4338          Check_Floating_Point_Type_2;
4339          Set_Etype (N, P_Base_Type);
4340          Resolve (E1, P_Base_Type);
4341
4342       ------------------
4343       -- Signed_Zeros --
4344       ------------------
4345
4346       when Attribute_Signed_Zeros =>
4347          Check_Floating_Point_Type_0;
4348          Set_Etype (N, Standard_Boolean);
4349
4350       ----------
4351       -- Size --
4352       ----------
4353
4354       when Attribute_Size | Attribute_VADS_Size => Size :
4355       begin
4356          Check_E0;
4357
4358          --  If prefix is parameterless function call, rewrite and resolve
4359          --  as such.
4360
4361          if Is_Entity_Name (P)
4362            and then Ekind (Entity (P)) = E_Function
4363          then
4364             Resolve (P);
4365
4366          --  Similar processing for a protected function call
4367
4368          elsif Nkind (P) = N_Selected_Component
4369            and then Ekind (Entity (Selector_Name (P))) = E_Function
4370          then
4371             Resolve (P);
4372          end if;
4373
4374          if Is_Object_Reference (P) then
4375             Check_Object_Reference (P);
4376
4377          elsif Is_Entity_Name (P)
4378            and then (Is_Type (Entity (P))
4379                        or else Ekind (Entity (P)) = E_Enumeration_Literal)
4380          then
4381             null;
4382
4383          elsif Nkind (P) = N_Type_Conversion
4384            and then not Comes_From_Source (P)
4385          then
4386             null;
4387
4388          else
4389             Error_Attr_P ("invalid prefix for % attribute");
4390          end if;
4391
4392          Check_Not_Incomplete_Type;
4393          Check_Not_CPP_Type;
4394          Set_Etype (N, Universal_Integer);
4395       end Size;
4396
4397       -----------
4398       -- Small --
4399       -----------
4400
4401       when Attribute_Small =>
4402          Check_E0;
4403          Check_Real_Type;
4404          Set_Etype (N, Universal_Real);
4405
4406       ------------------
4407       -- Storage_Pool --
4408       ------------------
4409
4410       when Attribute_Storage_Pool => Storage_Pool :
4411       begin
4412          Check_E0;
4413
4414          if Is_Access_Type (P_Type) then
4415             if Ekind (P_Type) = E_Access_Subprogram_Type then
4416                Error_Attr_P
4417                  ("cannot use % attribute for access-to-subprogram type");
4418             end if;
4419
4420             --  Set appropriate entity
4421
4422             if Present (Associated_Storage_Pool (Root_Type (P_Type))) then
4423                Set_Entity (N, Associated_Storage_Pool (Root_Type (P_Type)));
4424             else
4425                Set_Entity (N, RTE (RE_Global_Pool_Object));
4426             end if;
4427
4428             Set_Etype (N, Class_Wide_Type (RTE (RE_Root_Storage_Pool)));
4429
4430             --  Validate_Remote_Access_To_Class_Wide_Type for attribute
4431             --  Storage_Pool since this attribute is not defined for such
4432             --  types (RM E.2.3(22)).
4433
4434             Validate_Remote_Access_To_Class_Wide_Type (N);
4435
4436          else
4437             Error_Attr_P ("prefix of % attribute must be access type");
4438          end if;
4439       end Storage_Pool;
4440
4441       ------------------
4442       -- Storage_Size --
4443       ------------------
4444
4445       when Attribute_Storage_Size => Storage_Size :
4446       begin
4447          Check_E0;
4448
4449          if Is_Task_Type (P_Type) then
4450             Set_Etype (N, Universal_Integer);
4451
4452             --  Use with tasks is an obsolescent feature
4453
4454             Check_Restriction (No_Obsolescent_Features, P);
4455
4456          elsif Is_Access_Type (P_Type) then
4457             if Ekind (P_Type) = E_Access_Subprogram_Type then
4458                Error_Attr_P
4459                  ("cannot use % attribute for access-to-subprogram type");
4460             end if;
4461
4462             if Is_Entity_Name (P)
4463               and then Is_Type (Entity (P))
4464             then
4465                Check_Type;
4466                Set_Etype (N, Universal_Integer);
4467
4468                --   Validate_Remote_Access_To_Class_Wide_Type for attribute
4469                --   Storage_Size since this attribute is not defined for
4470                --   such types (RM E.2.3(22)).
4471
4472                Validate_Remote_Access_To_Class_Wide_Type (N);
4473
4474             --  The prefix is allowed to be an implicit dereference
4475             --  of an access value designating a task.
4476
4477             else
4478                Check_Task_Prefix;
4479                Set_Etype (N, Universal_Integer);
4480             end if;
4481
4482          else
4483             Error_Attr_P ("prefix of % attribute must be access or task type");
4484          end if;
4485       end Storage_Size;
4486
4487       ------------------
4488       -- Storage_Unit --
4489       ------------------
4490
4491       when Attribute_Storage_Unit =>
4492          Standard_Attribute (Ttypes.System_Storage_Unit);
4493
4494       -----------------
4495       -- Stream_Size --
4496       -----------------
4497
4498       when Attribute_Stream_Size =>
4499          Check_E0;
4500          Check_Type;
4501
4502          if Is_Entity_Name (P)
4503            and then Is_Elementary_Type (Entity (P))
4504          then
4505             Set_Etype (N, Universal_Integer);
4506          else
4507             Error_Attr_P ("invalid prefix for % attribute");
4508          end if;
4509
4510       ---------------
4511       -- Stub_Type --
4512       ---------------
4513
4514       when Attribute_Stub_Type =>
4515          Check_Type;
4516          Check_E0;
4517
4518          if Is_Remote_Access_To_Class_Wide_Type (P_Type) then
4519             Rewrite (N,
4520               New_Occurrence_Of (Corresponding_Stub_Type (P_Type), Loc));
4521          else
4522             Error_Attr_P
4523               ("prefix of% attribute must be remote access to classwide");
4524          end if;
4525
4526       ----------
4527       -- Succ --
4528       ----------
4529
4530       when Attribute_Succ =>
4531          Check_Scalar_Type;
4532          Check_E1;
4533
4534          if Is_Real_Type (P_Type) or else Is_Boolean_Type (P_Type) then
4535             Error_Msg_Name_1 := Aname;
4536             Error_Msg_Name_2 := Chars (P_Type);
4537             Check_SPARK_Restriction
4538               ("attribute% is not allowed for type%", P);
4539          end if;
4540
4541          Resolve (E1, P_Base_Type);
4542          Set_Etype (N, P_Base_Type);
4543
4544          --  Nothing to do for real type case
4545
4546          if Is_Real_Type (P_Type) then
4547             null;
4548
4549          --  If not modular type, test for overflow check required
4550
4551          else
4552             if not Is_Modular_Integer_Type (P_Type)
4553               and then not Range_Checks_Suppressed (P_Base_Type)
4554             then
4555                Enable_Range_Check (E1);
4556             end if;
4557          end if;
4558
4559       ---------
4560       -- Tag --
4561       ---------
4562
4563       when Attribute_Tag => Tag :
4564       begin
4565          Check_E0;
4566          Check_Dereference;
4567
4568          if not Is_Tagged_Type (P_Type) then
4569             Error_Attr_P ("prefix of % attribute must be tagged");
4570
4571          --  Next test does not apply to generated code
4572          --  why not, and what does the illegal reference mean???
4573
4574          elsif Is_Object_Reference (P)
4575            and then not Is_Class_Wide_Type (P_Type)
4576            and then Comes_From_Source (N)
4577          then
4578             Error_Attr_P
4579               ("% attribute can only be applied to objects " &
4580                "of class - wide type");
4581          end if;
4582
4583          --  The prefix cannot be an incomplete type. However, references
4584          --  to 'Tag can be generated when expanding interface conversions,
4585          --  and this is legal.
4586
4587          if Comes_From_Source (N) then
4588             Check_Not_Incomplete_Type;
4589          end if;
4590
4591          --  Set appropriate type
4592
4593          Set_Etype (N, RTE (RE_Tag));
4594       end Tag;
4595
4596       -----------------
4597       -- Target_Name --
4598       -----------------
4599
4600       when Attribute_Target_Name => Target_Name : declare
4601          TN : constant String := Sdefault.Target_Name.all;
4602          TL : Natural;
4603
4604       begin
4605          Check_Standard_Prefix;
4606
4607          TL := TN'Last;
4608
4609          if TN (TL) = '/' or else TN (TL) = '\' then
4610             TL := TL - 1;
4611          end if;
4612
4613          Rewrite (N,
4614            Make_String_Literal (Loc,
4615              Strval => TN (TN'First .. TL)));
4616          Analyze_And_Resolve (N, Standard_String);
4617       end Target_Name;
4618
4619       ----------------
4620       -- Terminated --
4621       ----------------
4622
4623       when Attribute_Terminated =>
4624          Check_E0;
4625          Set_Etype (N, Standard_Boolean);
4626          Check_Task_Prefix;
4627
4628       ----------------
4629       -- To_Address --
4630       ----------------
4631
4632       when Attribute_To_Address =>
4633          Check_E1;
4634          Analyze (P);
4635
4636          if Nkind (P) /= N_Identifier
4637            or else Chars (P) /= Name_System
4638          then
4639             Error_Attr_P ("prefix of % attribute must be System");
4640          end if;
4641
4642          Generate_Reference (RTE (RE_Address), P);
4643          Analyze_And_Resolve (E1, Any_Integer);
4644          Set_Etype (N, RTE (RE_Address));
4645
4646       ------------
4647       -- To_Any --
4648       ------------
4649
4650       when Attribute_To_Any =>
4651          Check_E1;
4652          Check_PolyORB_Attribute;
4653          Set_Etype (N, RTE (RE_Any));
4654
4655       ----------------
4656       -- Truncation --
4657       ----------------
4658
4659       when Attribute_Truncation =>
4660          Check_Floating_Point_Type_1;
4661          Resolve (E1, P_Base_Type);
4662          Set_Etype (N, P_Base_Type);
4663
4664       ----------------
4665       -- Type_Class --
4666       ----------------
4667
4668       when Attribute_Type_Class =>
4669          Check_E0;
4670          Check_Type;
4671          Check_Not_Incomplete_Type;
4672          Set_Etype (N, RTE (RE_Type_Class));
4673
4674       --------------
4675       -- TypeCode --
4676       --------------
4677
4678       when Attribute_TypeCode =>
4679          Check_E0;
4680          Check_PolyORB_Attribute;
4681          Set_Etype (N, RTE (RE_TypeCode));
4682
4683       --------------
4684       -- Type_Key --
4685       --------------
4686
4687       when Attribute_Type_Key =>
4688          Check_E0;
4689          Check_Type;
4690
4691          --  This processing belongs in Eval_Attribute ???
4692
4693          declare
4694             function Type_Key return String_Id;
4695             --  A very preliminary implementation. For now, a signature
4696             --  consists of only the type name. This is clearly incomplete
4697             --  (e.g., adding a new field to a record type should change the
4698             --  type's Type_Key attribute).
4699
4700             --------------
4701             -- Type_Key --
4702             --------------
4703
4704             function Type_Key return String_Id is
4705                Full_Name : constant String_Id :=
4706                              Fully_Qualified_Name_String (Entity (P));
4707
4708             begin
4709                --  Copy all characters in Full_Name but the trailing NUL
4710
4711                Start_String;
4712                for J in 1 .. String_Length (Full_Name) - 1 loop
4713                   Store_String_Char (Get_String_Char (Full_Name, Int (J)));
4714                end loop;
4715
4716                Store_String_Chars ("'Type_Key");
4717                return End_String;
4718             end Type_Key;
4719
4720          begin
4721             Rewrite (N, Make_String_Literal (Loc, Type_Key));
4722          end;
4723
4724          Analyze_And_Resolve (N, Standard_String);
4725
4726       -----------------
4727       -- UET_Address --
4728       -----------------
4729
4730       when Attribute_UET_Address =>
4731          Check_E0;
4732          Check_Unit_Name (P);
4733          Set_Etype (N, RTE (RE_Address));
4734
4735       -----------------------
4736       -- Unbiased_Rounding --
4737       -----------------------
4738
4739       when Attribute_Unbiased_Rounding =>
4740          Check_Floating_Point_Type_1;
4741          Set_Etype (N, P_Base_Type);
4742          Resolve (E1, P_Base_Type);
4743
4744       ----------------------
4745       -- Unchecked_Access --
4746       ----------------------
4747
4748       when Attribute_Unchecked_Access =>
4749          if Comes_From_Source (N) then
4750             Check_Restriction (No_Unchecked_Access, N);
4751          end if;
4752
4753          Analyze_Access_Attribute;
4754
4755       -------------------------
4756       -- Unconstrained_Array --
4757       -------------------------
4758
4759       when Attribute_Unconstrained_Array =>
4760          Check_E0;
4761          Check_Type;
4762          Check_Not_Incomplete_Type;
4763          Set_Etype (N, Standard_Boolean);
4764
4765       ------------------------------
4766       -- Universal_Literal_String --
4767       ------------------------------
4768
4769       --  This is a GNAT specific attribute whose prefix must be a named
4770       --  number where the expression is either a single numeric literal,
4771       --  or a numeric literal immediately preceded by a minus sign. The
4772       --  result is equivalent to a string literal containing the text of
4773       --  the literal as it appeared in the source program with a possible
4774       --  leading minus sign.
4775
4776       when Attribute_Universal_Literal_String => Universal_Literal_String :
4777       begin
4778          Check_E0;
4779
4780          if not Is_Entity_Name (P)
4781            or else Ekind (Entity (P)) not in Named_Kind
4782          then
4783             Error_Attr_P ("prefix for % attribute must be named number");
4784
4785          else
4786             declare
4787                Expr     : Node_Id;
4788                Negative : Boolean;
4789                S        : Source_Ptr;
4790                Src      : Source_Buffer_Ptr;
4791
4792             begin
4793                Expr := Original_Node (Expression (Parent (Entity (P))));
4794
4795                if Nkind (Expr) = N_Op_Minus then
4796                   Negative := True;
4797                   Expr := Original_Node (Right_Opnd (Expr));
4798                else
4799                   Negative := False;
4800                end if;
4801
4802                if not Nkind_In (Expr, N_Integer_Literal, N_Real_Literal) then
4803                   Error_Attr
4804                     ("named number for % attribute must be simple literal", N);
4805                end if;
4806
4807                --  Build string literal corresponding to source literal text
4808
4809                Start_String;
4810
4811                if Negative then
4812                   Store_String_Char (Get_Char_Code ('-'));
4813                end if;
4814
4815                S := Sloc (Expr);
4816                Src := Source_Text (Get_Source_File_Index (S));
4817
4818                while Src (S) /= ';' and then Src (S) /= ' ' loop
4819                   Store_String_Char (Get_Char_Code (Src (S)));
4820                   S := S + 1;
4821                end loop;
4822
4823                --  Now we rewrite the attribute with the string literal
4824
4825                Rewrite (N,
4826                  Make_String_Literal (Loc, End_String));
4827                Analyze (N);
4828             end;
4829          end if;
4830       end Universal_Literal_String;
4831
4832       -------------------------
4833       -- Unrestricted_Access --
4834       -------------------------
4835
4836       --  This is a GNAT specific attribute which is like Access except that
4837       --  all scope checks and checks for aliased views are omitted.
4838
4839       when Attribute_Unrestricted_Access =>
4840          if Comes_From_Source (N) then
4841             Check_Restriction (No_Unchecked_Access, N);
4842          end if;
4843
4844          if Is_Entity_Name (P) then
4845             Set_Address_Taken (Entity (P));
4846          end if;
4847
4848          Analyze_Access_Attribute;
4849
4850       ---------
4851       -- Val --
4852       ---------
4853
4854       when Attribute_Val => Val : declare
4855       begin
4856          Check_E1;
4857          Check_Discrete_Type;
4858
4859          if Is_Boolean_Type (P_Type) then
4860             Error_Msg_Name_1 := Aname;
4861             Error_Msg_Name_2 := Chars (P_Type);
4862             Check_SPARK_Restriction
4863               ("attribute% is not allowed for type%", P);
4864          end if;
4865
4866          Resolve (E1, Any_Integer);
4867          Set_Etype (N, P_Base_Type);
4868
4869          --  Note, we need a range check in general, but we wait for the
4870          --  Resolve call to do this, since we want to let Eval_Attribute
4871          --  have a chance to find an static illegality first!
4872       end Val;
4873
4874       -----------
4875       -- Valid --
4876       -----------
4877
4878       when Attribute_Valid =>
4879          Check_E0;
4880
4881          --  Ignore check for object if we have a 'Valid reference generated
4882          --  by the expanded code, since in some cases valid checks can occur
4883          --  on items that are names, but are not objects (e.g. attributes).
4884
4885          if Comes_From_Source (N) then
4886             Check_Object_Reference (P);
4887          end if;
4888
4889          if not Is_Scalar_Type (P_Type) then
4890             Error_Attr_P ("object for % attribute must be of scalar type");
4891          end if;
4892
4893          Set_Etype (N, Standard_Boolean);
4894
4895       -----------
4896       -- Value --
4897       -----------
4898
4899       when Attribute_Value => Value :
4900       begin
4901          Check_SPARK_Restriction_On_Attribute;
4902          Check_E1;
4903          Check_Scalar_Type;
4904
4905          --  Case of enumeration type
4906
4907          if Is_Enumeration_Type (P_Type) then
4908             Check_Restriction (No_Enumeration_Maps, N);
4909
4910             --  Mark all enumeration literals as referenced, since the use of
4911             --  the Value attribute can implicitly reference any of the
4912             --  literals of the enumeration base type.
4913
4914             declare
4915                Ent : Entity_Id := First_Literal (P_Base_Type);
4916             begin
4917                while Present (Ent) loop
4918                   Set_Referenced (Ent);
4919                   Next_Literal (Ent);
4920                end loop;
4921             end;
4922          end if;
4923
4924          --  Set Etype before resolving expression because expansion of
4925          --  expression may require enclosing type. Note that the type
4926          --  returned by 'Value is the base type of the prefix type.
4927
4928          Set_Etype (N, P_Base_Type);
4929          Validate_Non_Static_Attribute_Function_Call;
4930       end Value;
4931
4932       ----------------
4933       -- Value_Size --
4934       ----------------
4935
4936       when Attribute_Value_Size =>
4937          Check_E0;
4938          Check_Type;
4939          Check_Not_Incomplete_Type;
4940          Set_Etype (N, Universal_Integer);
4941
4942       -------------
4943       -- Version --
4944       -------------
4945
4946       when Attribute_Version =>
4947          Check_E0;
4948          Check_Program_Unit;
4949          Set_Etype (N, RTE (RE_Version_String));
4950
4951       ------------------
4952       -- Wchar_T_Size --
4953       ------------------
4954
4955       when Attribute_Wchar_T_Size =>
4956          Standard_Attribute (Interfaces_Wchar_T_Size);
4957
4958       ----------------
4959       -- Wide_Image --
4960       ----------------
4961
4962       when Attribute_Wide_Image => Wide_Image :
4963       begin
4964          Check_SPARK_Restriction_On_Attribute;
4965          Check_Scalar_Type;
4966          Set_Etype (N, Standard_Wide_String);
4967          Check_E1;
4968          Resolve (E1, P_Base_Type);
4969          Validate_Non_Static_Attribute_Function_Call;
4970       end Wide_Image;
4971
4972       ---------------------
4973       -- Wide_Wide_Image --
4974       ---------------------
4975
4976       when Attribute_Wide_Wide_Image => Wide_Wide_Image :
4977       begin
4978          Check_Scalar_Type;
4979          Set_Etype (N, Standard_Wide_Wide_String);
4980          Check_E1;
4981          Resolve (E1, P_Base_Type);
4982          Validate_Non_Static_Attribute_Function_Call;
4983       end Wide_Wide_Image;
4984
4985       ----------------
4986       -- Wide_Value --
4987       ----------------
4988
4989       when Attribute_Wide_Value => Wide_Value :
4990       begin
4991          Check_SPARK_Restriction_On_Attribute;
4992          Check_E1;
4993          Check_Scalar_Type;
4994
4995          --  Set Etype before resolving expression because expansion
4996          --  of expression may require enclosing type.
4997
4998          Set_Etype (N, P_Type);
4999          Validate_Non_Static_Attribute_Function_Call;
5000       end Wide_Value;
5001
5002       ---------------------
5003       -- Wide_Wide_Value --
5004       ---------------------
5005
5006       when Attribute_Wide_Wide_Value => Wide_Wide_Value :
5007       begin
5008          Check_E1;
5009          Check_Scalar_Type;
5010
5011          --  Set Etype before resolving expression because expansion
5012          --  of expression may require enclosing type.
5013
5014          Set_Etype (N, P_Type);
5015          Validate_Non_Static_Attribute_Function_Call;
5016       end Wide_Wide_Value;
5017
5018       ---------------------
5019       -- Wide_Wide_Width --
5020       ---------------------
5021
5022       when Attribute_Wide_Wide_Width =>
5023          Check_E0;
5024          Check_Scalar_Type;
5025          Set_Etype (N, Universal_Integer);
5026
5027       ----------------
5028       -- Wide_Width --
5029       ----------------
5030
5031       when Attribute_Wide_Width =>
5032          Check_SPARK_Restriction_On_Attribute;
5033          Check_E0;
5034          Check_Scalar_Type;
5035          Set_Etype (N, Universal_Integer);
5036
5037       -----------
5038       -- Width --
5039       -----------
5040
5041       when Attribute_Width =>
5042          Check_SPARK_Restriction_On_Attribute;
5043          Check_E0;
5044          Check_Scalar_Type;
5045          Set_Etype (N, Universal_Integer);
5046
5047       ---------------
5048       -- Word_Size --
5049       ---------------
5050
5051       when Attribute_Word_Size =>
5052          Standard_Attribute (System_Word_Size);
5053
5054       -----------
5055       -- Write --
5056       -----------
5057
5058       when Attribute_Write =>
5059          Check_E2;
5060          Check_Stream_Attribute (TSS_Stream_Write);
5061          Set_Etype (N, Standard_Void_Type);
5062          Resolve (N, Standard_Void_Type);
5063
5064       end case;
5065
5066    --  All errors raise Bad_Attribute, so that we get out before any further
5067    --  damage occurs when an error is detected (for example, if we check for
5068    --  one attribute expression, and the check succeeds, we want to be able
5069    --  to proceed securely assuming that an expression is in fact present.
5070
5071    --  Note: we set the attribute analyzed in this case to prevent any
5072    --  attempt at reanalysis which could generate spurious error msgs.
5073
5074    exception
5075       when Bad_Attribute =>
5076          Set_Analyzed (N);
5077          Set_Etype (N, Any_Type);
5078          return;
5079    end Analyze_Attribute;
5080
5081    --------------------
5082    -- Eval_Attribute --
5083    --------------------
5084
5085    procedure Eval_Attribute (N : Node_Id) is
5086       Loc   : constant Source_Ptr   := Sloc (N);
5087       Aname : constant Name_Id      := Attribute_Name (N);
5088       Id    : constant Attribute_Id := Get_Attribute_Id (Aname);
5089       P     : constant Node_Id      := Prefix (N);
5090
5091       C_Type : constant Entity_Id := Etype (N);
5092       --  The type imposed by the context
5093
5094       E1 : Node_Id;
5095       --  First expression, or Empty if none
5096
5097       E2 : Node_Id;
5098       --  Second expression, or Empty if none
5099
5100       P_Entity : Entity_Id;
5101       --  Entity denoted by prefix
5102
5103       P_Type : Entity_Id;
5104       --  The type of the prefix
5105
5106       P_Base_Type : Entity_Id;
5107       --  The base type of the prefix type
5108
5109       P_Root_Type : Entity_Id;
5110       --  The root type of the prefix type
5111
5112       Static : Boolean;
5113       --  True if the result is Static. This is set by the general processing
5114       --  to true if the prefix is static, and all expressions are static. It
5115       --  can be reset as processing continues for particular attributes
5116
5117       Lo_Bound, Hi_Bound : Node_Id;
5118       --  Expressions for low and high bounds of type or array index referenced
5119       --  by First, Last, or Length attribute for array, set by Set_Bounds.
5120
5121       CE_Node : Node_Id;
5122       --  Constraint error node used if we have an attribute reference has
5123       --  an argument that raises a constraint error. In this case we replace
5124       --  the attribute with a raise constraint_error node. This is important
5125       --  processing, since otherwise gigi might see an attribute which it is
5126       --  unprepared to deal with.
5127
5128       procedure Check_Concurrent_Discriminant (Bound : Node_Id);
5129       --  If Bound is a reference to a discriminant of a task or protected type
5130       --  occurring within the object's body, rewrite attribute reference into
5131       --  a reference to the corresponding discriminal. Use for the expansion
5132       --  of checks against bounds of entry family index subtypes.
5133
5134       procedure Check_Expressions;
5135       --  In case where the attribute is not foldable, the expressions, if
5136       --  any, of the attribute, are in a non-static context. This procedure
5137       --  performs the required additional checks.
5138
5139       function Compile_Time_Known_Bounds (Typ : Entity_Id) return Boolean;
5140       --  Determines if the given type has compile time known bounds. Note
5141       --  that we enter the case statement even in cases where the prefix
5142       --  type does NOT have known bounds, so it is important to guard any
5143       --  attempt to evaluate both bounds with a call to this function.
5144
5145       procedure Compile_Time_Known_Attribute (N : Node_Id; Val : Uint);
5146       --  This procedure is called when the attribute N has a non-static
5147       --  but compile time known value given by Val. It includes the
5148       --  necessary checks for out of range values.
5149
5150       function Fore_Value return Nat;
5151       --  Computes the Fore value for the current attribute prefix, which is
5152       --  known to be a static fixed-point type. Used by Fore and Width.
5153
5154       function Mantissa return Uint;
5155       --  Returns the Mantissa value for the prefix type
5156
5157       procedure Set_Bounds;
5158       --  Used for First, Last and Length attributes applied to an array or
5159       --  array subtype. Sets the variables Lo_Bound and Hi_Bound to the low
5160       --  and high bound expressions for the index referenced by the attribute
5161       --  designator (i.e. the first index if no expression is present, and
5162       --  the N'th index if the value N is present as an expression). Also
5163       --  used for First and Last of scalar types. Static is reset to False
5164       --  if the type or index type is not statically constrained.
5165
5166       function Statically_Denotes_Entity (N : Node_Id) return Boolean;
5167       --  Verify that the prefix of a potentially static array attribute
5168       --  satisfies the conditions of 4.9 (14).
5169
5170       -----------------------------------
5171       -- Check_Concurrent_Discriminant --
5172       -----------------------------------
5173
5174       procedure Check_Concurrent_Discriminant (Bound : Node_Id) is
5175          Tsk : Entity_Id;
5176          --  The concurrent (task or protected) type
5177
5178       begin
5179          if Nkind (Bound) = N_Identifier
5180            and then Ekind (Entity (Bound)) = E_Discriminant
5181            and then Is_Concurrent_Record_Type (Scope (Entity (Bound)))
5182          then
5183             Tsk := Corresponding_Concurrent_Type (Scope (Entity (Bound)));
5184
5185             if In_Open_Scopes (Tsk) and then Has_Completion (Tsk) then
5186
5187                --  Find discriminant of original concurrent type, and use
5188                --  its current discriminal, which is the renaming within
5189                --  the task/protected body.
5190
5191                Rewrite (N,
5192                  New_Occurrence_Of
5193                    (Find_Body_Discriminal (Entity (Bound)), Loc));
5194             end if;
5195          end if;
5196       end Check_Concurrent_Discriminant;
5197
5198       -----------------------
5199       -- Check_Expressions --
5200       -----------------------
5201
5202       procedure Check_Expressions is
5203          E : Node_Id;
5204       begin
5205          E := E1;
5206          while Present (E) loop
5207             Check_Non_Static_Context (E);
5208             Next (E);
5209          end loop;
5210       end Check_Expressions;
5211
5212       ----------------------------------
5213       -- Compile_Time_Known_Attribute --
5214       ----------------------------------
5215
5216       procedure Compile_Time_Known_Attribute (N : Node_Id; Val : Uint) is
5217          T : constant Entity_Id := Etype (N);
5218
5219       begin
5220          Fold_Uint (N, Val, False);
5221
5222          --  Check that result is in bounds of the type if it is static
5223
5224          if Is_In_Range (N, T, Assume_Valid => False) then
5225             null;
5226
5227          elsif Is_Out_Of_Range (N, T) then
5228             Apply_Compile_Time_Constraint_Error
5229               (N, "value not in range of}?", CE_Range_Check_Failed);
5230
5231          elsif not Range_Checks_Suppressed (T) then
5232             Enable_Range_Check (N);
5233
5234          else
5235             Set_Do_Range_Check (N, False);
5236          end if;
5237       end Compile_Time_Known_Attribute;
5238
5239       -------------------------------
5240       -- Compile_Time_Known_Bounds --
5241       -------------------------------
5242
5243       function Compile_Time_Known_Bounds (Typ : Entity_Id) return Boolean is
5244       begin
5245          return
5246            Compile_Time_Known_Value (Type_Low_Bound (Typ))
5247              and then
5248            Compile_Time_Known_Value (Type_High_Bound (Typ));
5249       end Compile_Time_Known_Bounds;
5250
5251       ----------------
5252       -- Fore_Value --
5253       ----------------
5254
5255       --  Note that the Fore calculation is based on the actual values
5256       --  of the bounds, and does not take into account possible rounding.
5257
5258       function Fore_Value return Nat is
5259          Lo      : constant Uint  := Expr_Value (Type_Low_Bound (P_Type));
5260          Hi      : constant Uint  := Expr_Value (Type_High_Bound (P_Type));
5261          Small   : constant Ureal := Small_Value (P_Type);
5262          Lo_Real : constant Ureal := Lo * Small;
5263          Hi_Real : constant Ureal := Hi * Small;
5264          T       : Ureal;
5265          R       : Nat;
5266
5267       begin
5268          --  Bounds are given in terms of small units, so first compute
5269          --  proper values as reals.
5270
5271          T := UR_Max (abs Lo_Real, abs Hi_Real);
5272          R := 2;
5273
5274          --  Loop to compute proper value if more than one digit required
5275
5276          while T >= Ureal_10 loop
5277             R := R + 1;
5278             T := T / Ureal_10;
5279          end loop;
5280
5281          return R;
5282       end Fore_Value;
5283
5284       --------------
5285       -- Mantissa --
5286       --------------
5287
5288       --  Table of mantissa values accessed by function  Computed using
5289       --  the relation:
5290
5291       --    T'Mantissa = integer next above (D * log(10)/log(2)) + 1)
5292
5293       --  where D is T'Digits (RM83 3.5.7)
5294
5295       Mantissa_Value : constant array (Nat range 1 .. 40) of Nat := (
5296           1 =>   5,
5297           2 =>   8,
5298           3 =>  11,
5299           4 =>  15,
5300           5 =>  18,
5301           6 =>  21,
5302           7 =>  25,
5303           8 =>  28,
5304           9 =>  31,
5305          10 =>  35,
5306          11 =>  38,
5307          12 =>  41,
5308          13 =>  45,
5309          14 =>  48,
5310          15 =>  51,
5311          16 =>  55,
5312          17 =>  58,
5313          18 =>  61,
5314          19 =>  65,
5315          20 =>  68,
5316          21 =>  71,
5317          22 =>  75,
5318          23 =>  78,
5319          24 =>  81,
5320          25 =>  85,
5321          26 =>  88,
5322          27 =>  91,
5323          28 =>  95,
5324          29 =>  98,
5325          30 => 101,
5326          31 => 104,
5327          32 => 108,
5328          33 => 111,
5329          34 => 114,
5330          35 => 118,
5331          36 => 121,
5332          37 => 124,
5333          38 => 128,
5334          39 => 131,
5335          40 => 134);
5336
5337       function Mantissa return Uint is
5338       begin
5339          return
5340            UI_From_Int (Mantissa_Value (UI_To_Int (Digits_Value (P_Type))));
5341       end Mantissa;
5342
5343       ----------------
5344       -- Set_Bounds --
5345       ----------------
5346
5347       procedure Set_Bounds is
5348          Ndim : Nat;
5349          Indx : Node_Id;
5350          Ityp : Entity_Id;
5351
5352       begin
5353          --  For a string literal subtype, we have to construct the bounds.
5354          --  Valid Ada code never applies attributes to string literals, but
5355          --  it is convenient to allow the expander to generate attribute
5356          --  references of this type (e.g. First and Last applied to a string
5357          --  literal).
5358
5359          --  Note that the whole point of the E_String_Literal_Subtype is to
5360          --  avoid this construction of bounds, but the cases in which we
5361          --  have to materialize them are rare enough that we don't worry!
5362
5363          --  The low bound is simply the low bound of the base type. The
5364          --  high bound is computed from the length of the string and this
5365          --  low bound.
5366
5367          if Ekind (P_Type) = E_String_Literal_Subtype then
5368             Ityp := Etype (First_Index (Base_Type (P_Type)));
5369             Lo_Bound := Type_Low_Bound (Ityp);
5370
5371             Hi_Bound :=
5372               Make_Integer_Literal (Sloc (P),
5373                 Intval =>
5374                   Expr_Value (Lo_Bound) + String_Literal_Length (P_Type) - 1);
5375
5376             Set_Parent (Hi_Bound, P);
5377             Analyze_And_Resolve (Hi_Bound, Etype (Lo_Bound));
5378             return;
5379
5380          --  For non-array case, just get bounds of scalar type
5381
5382          elsif Is_Scalar_Type (P_Type) then
5383             Ityp := P_Type;
5384
5385             --  For a fixed-point type, we must freeze to get the attributes
5386             --  of the fixed-point type set now so we can reference them.
5387
5388             if Is_Fixed_Point_Type (P_Type)
5389               and then not Is_Frozen (Base_Type (P_Type))
5390               and then Compile_Time_Known_Value (Type_Low_Bound (P_Type))
5391               and then Compile_Time_Known_Value (Type_High_Bound (P_Type))
5392             then
5393                Freeze_Fixed_Point_Type (Base_Type (P_Type));
5394             end if;
5395
5396          --  For array case, get type of proper index
5397
5398          else
5399             if No (E1) then
5400                Ndim := 1;
5401             else
5402                Ndim := UI_To_Int (Expr_Value (E1));
5403             end if;
5404
5405             Indx := First_Index (P_Type);
5406             for J in 1 .. Ndim - 1 loop
5407                Next_Index (Indx);
5408             end loop;
5409
5410             --  If no index type, get out (some other error occurred, and
5411             --  we don't have enough information to complete the job!)
5412
5413             if No (Indx) then
5414                Lo_Bound := Error;
5415                Hi_Bound := Error;
5416                return;
5417             end if;
5418
5419             Ityp := Etype (Indx);
5420          end if;
5421
5422          --  A discrete range in an index constraint is allowed to be a
5423          --  subtype indication. This is syntactically a pain, but should
5424          --  not propagate to the entity for the corresponding index subtype.
5425          --  After checking that the subtype indication is legal, the range
5426          --  of the subtype indication should be transfered to the entity.
5427          --  The attributes for the bounds should remain the simple retrievals
5428          --  that they are now.
5429
5430          Lo_Bound := Type_Low_Bound (Ityp);
5431          Hi_Bound := Type_High_Bound (Ityp);
5432
5433          if not Is_Static_Subtype (Ityp) then
5434             Static := False;
5435          end if;
5436       end Set_Bounds;
5437
5438       -------------------------------
5439       -- Statically_Denotes_Entity --
5440       -------------------------------
5441
5442       function Statically_Denotes_Entity (N : Node_Id) return Boolean is
5443          E : Entity_Id;
5444
5445       begin
5446          if not Is_Entity_Name (N) then
5447             return False;
5448          else
5449             E := Entity (N);
5450          end if;
5451
5452          return
5453            Nkind (Parent (E)) /= N_Object_Renaming_Declaration
5454              or else Statically_Denotes_Entity (Renamed_Object (E));
5455       end Statically_Denotes_Entity;
5456
5457    --  Start of processing for Eval_Attribute
5458
5459    begin
5460       --  No folding in spec expression that comes from source where the prefix
5461       --  is an unfrozen entity. This avoids premature folding in cases like:
5462
5463       --    procedure DefExprAnal is
5464       --       type R is new Integer;
5465       --       procedure P (Arg : Integer := R'Size);
5466       --       for R'Size use 64;
5467       --       procedure P (Arg : Integer := R'Size) is
5468       --       begin
5469       --          Put_Line (Arg'Img);
5470       --       end P;
5471       --    begin
5472       --       P;
5473       --    end;
5474
5475       --  which should print 64 rather than 32. The exclusion of non-source
5476       --  constructs from this test comes from some internal usage in packed
5477       --  arrays, which otherwise fails, could use more analysis perhaps???
5478
5479       --  We do however go ahead with generic actual types, otherwise we get
5480       --  some regressions, probably these types should be frozen anyway???
5481
5482       if In_Spec_Expression
5483         and then Comes_From_Source (N)
5484         and then not (Is_Entity_Name (P)
5485                        and then
5486                         (Is_Frozen (Entity (P))
5487                           or else (Is_Type (Entity (P))
5488                                     and then
5489                                       Is_Generic_Actual_Type (Entity (P)))))
5490       then
5491          return;
5492       end if;
5493
5494       --  Acquire first two expressions (at the moment, no attributes take more
5495       --  than two expressions in any case).
5496
5497       if Present (Expressions (N)) then
5498          E1 := First (Expressions (N));
5499          E2 := Next (E1);
5500       else
5501          E1 := Empty;
5502          E2 := Empty;
5503       end if;
5504
5505       --  Special processing for Enabled attribute. This attribute has a very
5506       --  special prefix, and the easiest way to avoid lots of special checks
5507       --  to protect this special prefix from causing trouble is to deal with
5508       --  this attribute immediately and be done with it.
5509
5510       if Id = Attribute_Enabled then
5511
5512          --  We skip evaluation if the expander is not active. This is not just
5513          --  an optimization. It is of key importance that we not rewrite the
5514          --  attribute in a generic template, since we want to pick up the
5515          --  setting of the check in the instance, and testing expander active
5516          --  is as easy way of doing this as any.
5517
5518          if Expander_Active then
5519             declare
5520                C : constant Check_Id := Get_Check_Id (Chars (P));
5521                R : Boolean;
5522
5523             begin
5524                if No (E1) then
5525                   if C in Predefined_Check_Id then
5526                      R := Scope_Suppress (C);
5527                   else
5528                      R := Is_Check_Suppressed (Empty, C);
5529                   end if;
5530
5531                else
5532                   R := Is_Check_Suppressed (Entity (E1), C);
5533                end if;
5534
5535                if R then
5536                   Rewrite (N, New_Occurrence_Of (Standard_False, Loc));
5537                else
5538                   Rewrite (N, New_Occurrence_Of (Standard_True, Loc));
5539                end if;
5540             end;
5541          end if;
5542
5543          return;
5544       end if;
5545
5546       --  Special processing for cases where the prefix is an object. For
5547       --  this purpose, a string literal counts as an object (attributes
5548       --  of string literals can only appear in generated code).
5549
5550       if Is_Object_Reference (P) or else Nkind (P) = N_String_Literal then
5551
5552          --  For Component_Size, the prefix is an array object, and we apply
5553          --  the attribute to the type of the object. This is allowed for
5554          --  both unconstrained and constrained arrays, since the bounds
5555          --  have no influence on the value of this attribute.
5556
5557          if Id = Attribute_Component_Size then
5558             P_Entity := Etype (P);
5559
5560          --  For First and Last, the prefix is an array object, and we apply
5561          --  the attribute to the type of the array, but we need a constrained
5562          --  type for this, so we use the actual subtype if available.
5563
5564          elsif Id = Attribute_First
5565                  or else
5566                Id = Attribute_Last
5567                  or else
5568                Id = Attribute_Length
5569          then
5570             declare
5571                AS : constant Entity_Id := Get_Actual_Subtype_If_Available (P);
5572
5573             begin
5574                if Present (AS) and then Is_Constrained (AS) then
5575                   P_Entity := AS;
5576
5577                --  If we have an unconstrained type we cannot fold
5578
5579                else
5580                   Check_Expressions;
5581                   return;
5582                end if;
5583             end;
5584
5585          --  For Size, give size of object if available, otherwise we
5586          --  cannot fold Size.
5587
5588          elsif Id = Attribute_Size then
5589             if Is_Entity_Name (P)
5590               and then Known_Esize (Entity (P))
5591             then
5592                Compile_Time_Known_Attribute (N, Esize (Entity (P)));
5593                return;
5594
5595             else
5596                Check_Expressions;
5597                return;
5598             end if;
5599
5600          --  For Alignment, give size of object if available, otherwise we
5601          --  cannot fold Alignment.
5602
5603          elsif Id = Attribute_Alignment then
5604             if Is_Entity_Name (P)
5605               and then Known_Alignment (Entity (P))
5606             then
5607                Fold_Uint (N, Alignment (Entity (P)), False);
5608                return;
5609
5610             else
5611                Check_Expressions;
5612                return;
5613             end if;
5614
5615          --  No other attributes for objects are folded
5616
5617          else
5618             Check_Expressions;
5619             return;
5620          end if;
5621
5622       --  Cases where P is not an object. Cannot do anything if P is
5623       --  not the name of an entity.
5624
5625       elsif not Is_Entity_Name (P) then
5626          Check_Expressions;
5627          return;
5628
5629       --  Otherwise get prefix entity
5630
5631       else
5632          P_Entity := Entity (P);
5633       end if;
5634
5635       --  At this stage P_Entity is the entity to which the attribute
5636       --  is to be applied. This is usually simply the entity of the
5637       --  prefix, except in some cases of attributes for objects, where
5638       --  as described above, we apply the attribute to the object type.
5639
5640       --  First foldable possibility is a scalar or array type (RM 4.9(7))
5641       --  that is not generic (generic types are eliminated by RM 4.9(25)).
5642       --  Note we allow non-static non-generic types at this stage as further
5643       --  described below.
5644
5645       if Is_Type (P_Entity)
5646         and then (Is_Scalar_Type (P_Entity) or Is_Array_Type (P_Entity))
5647         and then (not Is_Generic_Type (P_Entity))
5648       then
5649          P_Type := P_Entity;
5650
5651       --  Second foldable possibility is an array object (RM 4.9(8))
5652
5653       elsif (Ekind (P_Entity) = E_Variable
5654                or else
5655              Ekind (P_Entity) = E_Constant)
5656         and then Is_Array_Type (Etype (P_Entity))
5657         and then (not Is_Generic_Type (Etype (P_Entity)))
5658       then
5659          P_Type := Etype (P_Entity);
5660
5661          --  If the entity is an array constant with an unconstrained nominal
5662          --  subtype then get the type from the initial value. If the value has
5663          --  been expanded into assignments, there is no expression and the
5664          --  attribute reference remains dynamic.
5665
5666          --  We could do better here and retrieve the type ???
5667
5668          if Ekind (P_Entity) = E_Constant
5669            and then not Is_Constrained (P_Type)
5670          then
5671             if No (Constant_Value (P_Entity)) then
5672                return;
5673             else
5674                P_Type := Etype (Constant_Value (P_Entity));
5675             end if;
5676          end if;
5677
5678       --  Definite must be folded if the prefix is not a generic type,
5679       --  that is to say if we are within an instantiation. Same processing
5680       --  applies to the GNAT attributes Has_Discriminants, Type_Class,
5681       --  Has_Tagged_Value, and Unconstrained_Array.
5682
5683       elsif (Id = Attribute_Definite
5684                or else
5685              Id = Attribute_Has_Access_Values
5686                or else
5687              Id = Attribute_Has_Discriminants
5688                or else
5689              Id = Attribute_Has_Tagged_Values
5690                or else
5691              Id = Attribute_Type_Class
5692                or else
5693              Id = Attribute_Unconstrained_Array
5694                or else
5695              Id = Attribute_Max_Alignment_For_Allocation)
5696         and then not Is_Generic_Type (P_Entity)
5697       then
5698          P_Type := P_Entity;
5699
5700       --  We can fold 'Size applied to a type if the size is known (as happens
5701       --  for a size from an attribute definition clause). At this stage, this
5702       --  can happen only for types (e.g. record types) for which the size is
5703       --  always non-static. We exclude generic types from consideration (since
5704       --  they have bogus sizes set within templates).
5705
5706       elsif Id = Attribute_Size
5707         and then Is_Type (P_Entity)
5708         and then (not Is_Generic_Type (P_Entity))
5709         and then Known_Static_RM_Size (P_Entity)
5710       then
5711          Compile_Time_Known_Attribute (N, RM_Size (P_Entity));
5712          return;
5713
5714       --  We can fold 'Alignment applied to a type if the alignment is known
5715       --  (as happens for an alignment from an attribute definition clause).
5716       --  At this stage, this can happen only for types (e.g. record
5717       --  types) for which the size is always non-static. We exclude
5718       --  generic types from consideration (since they have bogus
5719       --  sizes set within templates).
5720
5721       elsif Id = Attribute_Alignment
5722         and then Is_Type (P_Entity)
5723         and then (not Is_Generic_Type (P_Entity))
5724         and then Known_Alignment (P_Entity)
5725       then
5726          Compile_Time_Known_Attribute (N, Alignment (P_Entity));
5727          return;
5728
5729       --  If this is an access attribute that is known to fail accessibility
5730       --  check, rewrite accordingly.
5731
5732       elsif Attribute_Name (N) = Name_Access
5733         and then Raises_Constraint_Error (N)
5734       then
5735          Rewrite (N,
5736            Make_Raise_Program_Error (Loc,
5737              Reason => PE_Accessibility_Check_Failed));
5738          Set_Etype (N, C_Type);
5739          return;
5740
5741       --  No other cases are foldable (they certainly aren't static, and at
5742       --  the moment we don't try to fold any cases other than these three).
5743
5744       else
5745          Check_Expressions;
5746          return;
5747       end if;
5748
5749       --  If either attribute or the prefix is Any_Type, then propagate
5750       --  Any_Type to the result and don't do anything else at all.
5751
5752       if P_Type = Any_Type
5753         or else (Present (E1) and then Etype (E1) = Any_Type)
5754         or else (Present (E2) and then Etype (E2) = Any_Type)
5755       then
5756          Set_Etype (N, Any_Type);
5757          return;
5758       end if;
5759
5760       --  Scalar subtype case. We have not yet enforced the static requirement
5761       --  of (RM 4.9(7)) and we don't intend to just yet, since there are cases
5762       --  of non-static attribute references (e.g. S'Digits for a non-static
5763       --  floating-point type, which we can compute at compile time).
5764
5765       --  Note: this folding of non-static attributes is not simply a case of
5766       --  optimization. For many of the attributes affected, Gigi cannot handle
5767       --  the attribute and depends on the front end having folded them away.
5768
5769       --  Note: although we don't require staticness at this stage, we do set
5770       --  the Static variable to record the staticness, for easy reference by
5771       --  those attributes where it matters (e.g. Succ and Pred), and also to
5772       --  be used to ensure that non-static folded things are not marked as
5773       --  being static (a check that is done right at the end).
5774
5775       P_Root_Type := Root_Type (P_Type);
5776       P_Base_Type := Base_Type (P_Type);
5777
5778       --  If the root type or base type is generic, then we cannot fold. This
5779       --  test is needed because subtypes of generic types are not always
5780       --  marked as being generic themselves (which seems odd???)
5781
5782       if Is_Generic_Type (P_Root_Type)
5783         or else Is_Generic_Type (P_Base_Type)
5784       then
5785          return;
5786       end if;
5787
5788       if Is_Scalar_Type (P_Type) then
5789          Static := Is_OK_Static_Subtype (P_Type);
5790
5791       --  Array case. We enforce the constrained requirement of (RM 4.9(7-8))
5792       --  since we can't do anything with unconstrained arrays. In addition,
5793       --  only the First, Last and Length attributes are possibly static.
5794
5795       --  Definite, Has_Access_Values, Has_Discriminants, Has_Tagged_Values,
5796       --  Type_Class, and Unconstrained_Array are again exceptions, because
5797       --  they apply as well to unconstrained types.
5798
5799       --  In addition Component_Size is an exception since it is possibly
5800       --  foldable, even though it is never static, and it does apply to
5801       --  unconstrained arrays. Furthermore, it is essential to fold this
5802       --  in the packed case, since otherwise the value will be incorrect.
5803
5804       elsif Id = Attribute_Definite
5805               or else
5806             Id = Attribute_Has_Access_Values
5807               or else
5808             Id = Attribute_Has_Discriminants
5809               or else
5810             Id = Attribute_Has_Tagged_Values
5811               or else
5812             Id = Attribute_Type_Class
5813               or else
5814             Id = Attribute_Unconstrained_Array
5815               or else
5816             Id = Attribute_Component_Size
5817       then
5818          Static := False;
5819
5820       elsif Id /= Attribute_Max_Alignment_For_Allocation then
5821          if not Is_Constrained (P_Type)
5822            or else (Id /= Attribute_First and then
5823                     Id /= Attribute_Last  and then
5824                     Id /= Attribute_Length)
5825          then
5826             Check_Expressions;
5827             return;
5828          end if;
5829
5830          --  The rules in (RM 4.9(7,8)) require a static array, but as in the
5831          --  scalar case, we hold off on enforcing staticness, since there are
5832          --  cases which we can fold at compile time even though they are not
5833          --  static (e.g. 'Length applied to a static index, even though other
5834          --  non-static indexes make the array type non-static). This is only
5835          --  an optimization, but it falls out essentially free, so why not.
5836          --  Again we compute the variable Static for easy reference later
5837          --  (note that no array attributes are static in Ada 83).
5838
5839          --  We also need to set Static properly for subsequent legality checks
5840          --  which might otherwise accept non-static constants in contexts
5841          --  where they are not legal.
5842
5843          Static := Ada_Version >= Ada_95
5844                      and then Statically_Denotes_Entity (P);
5845
5846          declare
5847             N : Node_Id;
5848
5849          begin
5850             N := First_Index (P_Type);
5851
5852             --  The expression is static if the array type is constrained
5853             --  by given bounds, and not by an initial expression. Constant
5854             --  strings are static in any case.
5855
5856             if Root_Type (P_Type) /= Standard_String then
5857                Static :=
5858                  Static and then not Is_Constr_Subt_For_U_Nominal (P_Type);
5859             end if;
5860
5861             while Present (N) loop
5862                Static := Static and then Is_Static_Subtype (Etype (N));
5863
5864                --  If however the index type is generic, or derived from
5865                --  one, attributes cannot be folded.
5866
5867                if Is_Generic_Type (Root_Type (Etype (N)))
5868                  and then Id /= Attribute_Component_Size
5869                then
5870                   return;
5871                end if;
5872
5873                Next_Index (N);
5874             end loop;
5875          end;
5876       end if;
5877
5878       --  Check any expressions that are present. Note that these expressions,
5879       --  depending on the particular attribute type, are either part of the
5880       --  attribute designator, or they are arguments in a case where the
5881       --  attribute reference returns a function. In the latter case, the
5882       --  rule in (RM 4.9(22)) applies and in particular requires the type
5883       --  of the expressions to be scalar in order for the attribute to be
5884       --  considered to be static.
5885
5886       declare
5887          E : Node_Id;
5888
5889       begin
5890          E := E1;
5891          while Present (E) loop
5892
5893             --  If expression is not static, then the attribute reference
5894             --  result certainly cannot be static.
5895
5896             if not Is_Static_Expression (E) then
5897                Static := False;
5898             end if;
5899
5900             --  If the result is not known at compile time, or is not of
5901             --  a scalar type, then the result is definitely not static,
5902             --  so we can quit now.
5903
5904             if not Compile_Time_Known_Value (E)
5905               or else not Is_Scalar_Type (Etype (E))
5906             then
5907                --  An odd special case, if this is a Pos attribute, this
5908                --  is where we need to apply a range check since it does
5909                --  not get done anywhere else.
5910
5911                if Id = Attribute_Pos then
5912                   if Is_Integer_Type (Etype (E)) then
5913                      Apply_Range_Check (E, Etype (N));
5914                   end if;
5915                end if;
5916
5917                Check_Expressions;
5918                return;
5919
5920             --  If the expression raises a constraint error, then so does
5921             --  the attribute reference. We keep going in this case because
5922             --  we are still interested in whether the attribute reference
5923             --  is static even if it is not static.
5924
5925             elsif Raises_Constraint_Error (E) then
5926                Set_Raises_Constraint_Error (N);
5927             end if;
5928
5929             Next (E);
5930          end loop;
5931
5932          if Raises_Constraint_Error (Prefix (N)) then
5933             return;
5934          end if;
5935       end;
5936
5937       --  Deal with the case of a static attribute reference that raises
5938       --  constraint error. The Raises_Constraint_Error flag will already
5939       --  have been set, and the Static flag shows whether the attribute
5940       --  reference is static. In any case we certainly can't fold such an
5941       --  attribute reference.
5942
5943       --  Note that the rewriting of the attribute node with the constraint
5944       --  error node is essential in this case, because otherwise Gigi might
5945       --  blow up on one of the attributes it never expects to see.
5946
5947       --  The constraint_error node must have the type imposed by the context,
5948       --  to avoid spurious errors in the enclosing expression.
5949
5950       if Raises_Constraint_Error (N) then
5951          CE_Node :=
5952            Make_Raise_Constraint_Error (Sloc (N),
5953              Reason => CE_Range_Check_Failed);
5954          Set_Etype (CE_Node, Etype (N));
5955          Set_Raises_Constraint_Error (CE_Node);
5956          Check_Expressions;
5957          Rewrite (N, Relocate_Node (CE_Node));
5958          Set_Is_Static_Expression (N, Static);
5959          return;
5960       end if;
5961
5962       --  At this point we have a potentially foldable attribute reference.
5963       --  If Static is set, then the attribute reference definitely obeys
5964       --  the requirements in (RM 4.9(7,8,22)), and it definitely can be
5965       --  folded. If Static is not set, then the attribute may or may not
5966       --  be foldable, and the individual attribute processing routines
5967       --  test Static as required in cases where it makes a difference.
5968
5969       --  In the case where Static is not set, we do know that all the
5970       --  expressions present are at least known at compile time (we
5971       --  assumed above that if this was not the case, then there was
5972       --  no hope of static evaluation). However, we did not require
5973       --  that the bounds of the prefix type be compile time known,
5974       --  let alone static). That's because there are many attributes
5975       --  that can be computed at compile time on non-static subtypes,
5976       --  even though such references are not static expressions.
5977
5978       case Id is
5979
5980          --  Attributes related to Ada2012 iterators (Placeholder).
5981
5982          when Attribute_Constant_Indexing => null;
5983          when Attribute_Default_Iterator => null;
5984          when Attribute_Implicit_Dereference => null;
5985          when Attribute_Iterator_Element => null;
5986          when Attribute_Variable_Indexing => null;
5987
5988       --------------
5989       -- Adjacent --
5990       --------------
5991
5992       when Attribute_Adjacent =>
5993          Fold_Ureal (N,
5994            Eval_Fat.Adjacent
5995              (P_Root_Type, Expr_Value_R (E1), Expr_Value_R (E2)), Static);
5996
5997       ---------
5998       -- Aft --
5999       ---------
6000
6001       when Attribute_Aft =>
6002          Fold_Uint (N, Aft_Value (P_Type), True);
6003
6004       ---------------
6005       -- Alignment --
6006       ---------------
6007
6008       when Attribute_Alignment => Alignment_Block : declare
6009          P_TypeA : constant Entity_Id := Underlying_Type (P_Type);
6010
6011       begin
6012          --  Fold if alignment is set and not otherwise
6013
6014          if Known_Alignment (P_TypeA) then
6015             Fold_Uint (N, Alignment (P_TypeA), Is_Discrete_Type (P_TypeA));
6016          end if;
6017       end Alignment_Block;
6018
6019       ---------------
6020       -- AST_Entry --
6021       ---------------
6022
6023       --  Can only be folded in No_Ast_Handler case
6024
6025       when Attribute_AST_Entry =>
6026          if not Is_AST_Entry (P_Entity) then
6027             Rewrite (N,
6028               New_Occurrence_Of (RTE (RE_No_AST_Handler), Loc));
6029          else
6030             null;
6031          end if;
6032
6033       ---------
6034       -- Bit --
6035       ---------
6036
6037       --  Bit can never be folded
6038
6039       when Attribute_Bit =>
6040          null;
6041
6042       ------------------
6043       -- Body_Version --
6044       ------------------
6045
6046       --  Body_version can never be static
6047
6048       when Attribute_Body_Version =>
6049          null;
6050
6051       -------------
6052       -- Ceiling --
6053       -------------
6054
6055       when Attribute_Ceiling =>
6056          Fold_Ureal (N,
6057            Eval_Fat.Ceiling (P_Root_Type, Expr_Value_R (E1)), Static);
6058
6059       --------------------
6060       -- Component_Size --
6061       --------------------
6062
6063       when Attribute_Component_Size =>
6064          if Known_Static_Component_Size (P_Type) then
6065             Fold_Uint (N, Component_Size (P_Type), False);
6066          end if;
6067
6068       -------------
6069       -- Compose --
6070       -------------
6071
6072       when Attribute_Compose =>
6073          Fold_Ureal (N,
6074            Eval_Fat.Compose
6075              (P_Root_Type, Expr_Value_R (E1), Expr_Value (E2)),
6076               Static);
6077
6078       -----------------
6079       -- Constrained --
6080       -----------------
6081
6082       --  Constrained is never folded for now, there may be cases that
6083       --  could be handled at compile time. To be looked at later.
6084
6085       when Attribute_Constrained =>
6086          null;
6087
6088       ---------------
6089       -- Copy_Sign --
6090       ---------------
6091
6092       when Attribute_Copy_Sign =>
6093          Fold_Ureal (N,
6094            Eval_Fat.Copy_Sign
6095              (P_Root_Type, Expr_Value_R (E1), Expr_Value_R (E2)), Static);
6096
6097       --------------
6098       -- Definite --
6099       --------------
6100
6101       when Attribute_Definite =>
6102          Rewrite (N, New_Occurrence_Of (
6103            Boolean_Literals (not Is_Indefinite_Subtype (P_Entity)), Loc));
6104          Analyze_And_Resolve (N, Standard_Boolean);
6105
6106       -----------
6107       -- Delta --
6108       -----------
6109
6110       when Attribute_Delta =>
6111          Fold_Ureal (N, Delta_Value (P_Type), True);
6112
6113       ------------
6114       -- Denorm --
6115       ------------
6116
6117       when Attribute_Denorm =>
6118          Fold_Uint
6119            (N, UI_From_Int (Boolean'Pos (Denorm_On_Target)), True);
6120
6121       ------------
6122       -- Digits --
6123       ------------
6124
6125       when Attribute_Digits =>
6126          Fold_Uint (N, Digits_Value (P_Type), True);
6127
6128       ----------
6129       -- Emax --
6130       ----------
6131
6132       when Attribute_Emax =>
6133
6134          --  Ada 83 attribute is defined as (RM83 3.5.8)
6135
6136          --    T'Emax = 4 * T'Mantissa
6137
6138          Fold_Uint (N, 4 * Mantissa, True);
6139
6140       --------------
6141       -- Enum_Rep --
6142       --------------
6143
6144       when Attribute_Enum_Rep =>
6145
6146          --  For an enumeration type with a non-standard representation use
6147          --  the Enumeration_Rep field of the proper constant. Note that this
6148          --  will not work for types Character/Wide_[Wide-]Character, since no
6149          --  real entities are created for the enumeration literals, but that
6150          --  does not matter since these two types do not have non-standard
6151          --  representations anyway.
6152
6153          if Is_Enumeration_Type (P_Type)
6154            and then Has_Non_Standard_Rep (P_Type)
6155          then
6156             Fold_Uint (N, Enumeration_Rep (Expr_Value_E (E1)), Static);
6157
6158          --  For enumeration types with standard representations and all
6159          --  other cases (i.e. all integer and modular types), Enum_Rep
6160          --  is equivalent to Pos.
6161
6162          else
6163             Fold_Uint (N, Expr_Value (E1), Static);
6164          end if;
6165
6166       --------------
6167       -- Enum_Val --
6168       --------------
6169
6170       when Attribute_Enum_Val => Enum_Val : declare
6171          Lit : Node_Id;
6172
6173       begin
6174          --  We have something like Enum_Type'Enum_Val (23), so search for a
6175          --  corresponding value in the list of Enum_Rep values for the type.
6176
6177          Lit := First_Literal (P_Base_Type);
6178          loop
6179             if Enumeration_Rep (Lit) = Expr_Value (E1) then
6180                Fold_Uint (N, Enumeration_Pos (Lit), Static);
6181                exit;
6182             end if;
6183
6184             Next_Literal (Lit);
6185
6186             if No (Lit) then
6187                Apply_Compile_Time_Constraint_Error
6188                  (N, "no representation value matches",
6189                   CE_Range_Check_Failed,
6190                   Warn => not Static);
6191                exit;
6192             end if;
6193          end loop;
6194       end Enum_Val;
6195
6196       -------------
6197       -- Epsilon --
6198       -------------
6199
6200       when Attribute_Epsilon =>
6201
6202          --  Ada 83 attribute is defined as (RM83 3.5.8)
6203
6204          --    T'Epsilon = 2.0**(1 - T'Mantissa)
6205
6206          Fold_Ureal (N, Ureal_2 ** (1 - Mantissa), True);
6207
6208       --------------
6209       -- Exponent --
6210       --------------
6211
6212       when Attribute_Exponent =>
6213          Fold_Uint (N,
6214            Eval_Fat.Exponent (P_Root_Type, Expr_Value_R (E1)), Static);
6215
6216       -----------
6217       -- First --
6218       -----------
6219
6220       when Attribute_First => First_Attr :
6221       begin
6222          Set_Bounds;
6223
6224          if Compile_Time_Known_Value (Lo_Bound) then
6225             if Is_Real_Type (P_Type) then
6226                Fold_Ureal (N, Expr_Value_R (Lo_Bound), Static);
6227             else
6228                Fold_Uint  (N, Expr_Value (Lo_Bound), Static);
6229             end if;
6230
6231          else
6232             Check_Concurrent_Discriminant (Lo_Bound);
6233          end if;
6234       end First_Attr;
6235
6236       -----------------
6237       -- Fixed_Value --
6238       -----------------
6239
6240       when Attribute_Fixed_Value =>
6241          null;
6242
6243       -----------
6244       -- Floor --
6245       -----------
6246
6247       when Attribute_Floor =>
6248          Fold_Ureal (N,
6249            Eval_Fat.Floor (P_Root_Type, Expr_Value_R (E1)), Static);
6250
6251       ----------
6252       -- Fore --
6253       ----------
6254
6255       when Attribute_Fore =>
6256          if Compile_Time_Known_Bounds (P_Type) then
6257             Fold_Uint (N, UI_From_Int (Fore_Value), Static);
6258          end if;
6259
6260       --------------
6261       -- Fraction --
6262       --------------
6263
6264       when Attribute_Fraction =>
6265          Fold_Ureal (N,
6266            Eval_Fat.Fraction (P_Root_Type, Expr_Value_R (E1)), Static);
6267
6268       -----------------------
6269       -- Has_Access_Values --
6270       -----------------------
6271
6272       when Attribute_Has_Access_Values =>
6273          Rewrite (N, New_Occurrence_Of
6274            (Boolean_Literals (Has_Access_Values (P_Root_Type)), Loc));
6275          Analyze_And_Resolve (N, Standard_Boolean);
6276
6277       -----------------------
6278       -- Has_Discriminants --
6279       -----------------------
6280
6281       when Attribute_Has_Discriminants =>
6282          Rewrite (N, New_Occurrence_Of (
6283            Boolean_Literals (Has_Discriminants (P_Entity)), Loc));
6284          Analyze_And_Resolve (N, Standard_Boolean);
6285
6286       -----------------------
6287       -- Has_Tagged_Values --
6288       -----------------------
6289
6290       when Attribute_Has_Tagged_Values =>
6291          Rewrite (N, New_Occurrence_Of
6292            (Boolean_Literals (Has_Tagged_Component (P_Root_Type)), Loc));
6293          Analyze_And_Resolve (N, Standard_Boolean);
6294
6295       --------------
6296       -- Identity --
6297       --------------
6298
6299       when Attribute_Identity =>
6300          null;
6301
6302       -----------
6303       -- Image --
6304       -----------
6305
6306       --  Image is a scalar attribute, but is never static, because it is
6307       --  not a static function (having a non-scalar argument (RM 4.9(22))
6308       --  However, we can constant-fold the image of an enumeration literal
6309       --  if names are available.
6310
6311       when Attribute_Image =>
6312          if Is_Entity_Name (E1)
6313            and then Ekind (Entity (E1)) = E_Enumeration_Literal
6314            and then not Discard_Names (First_Subtype (Etype (E1)))
6315            and then not Global_Discard_Names
6316          then
6317             declare
6318                Lit : constant Entity_Id := Entity (E1);
6319                Str : String_Id;
6320             begin
6321                Start_String;
6322                Get_Unqualified_Decoded_Name_String (Chars (Lit));
6323                Set_Casing (All_Upper_Case);
6324                Store_String_Chars (Name_Buffer (1 .. Name_Len));
6325                Str := End_String;
6326                Rewrite (N, Make_String_Literal (Loc, Strval => Str));
6327                Analyze_And_Resolve (N, Standard_String);
6328                Set_Is_Static_Expression (N, False);
6329             end;
6330          end if;
6331
6332       ---------
6333       -- Img --
6334       ---------
6335
6336       --  Img is a scalar attribute, but is never static, because it is
6337       --  not a static function (having a non-scalar argument (RM 4.9(22))
6338
6339       when Attribute_Img =>
6340          null;
6341
6342       -------------------
6343       -- Integer_Value --
6344       -------------------
6345
6346       --  We never try to fold Integer_Value (though perhaps we could???)
6347
6348       when Attribute_Integer_Value =>
6349          null;
6350
6351       -------------------
6352       -- Invalid_Value --
6353       -------------------
6354
6355       --  Invalid_Value is a scalar attribute that is never static, because
6356       --  the value is by design out of range.
6357
6358       when Attribute_Invalid_Value =>
6359          null;
6360
6361       -----------
6362       -- Large --
6363       -----------
6364
6365       when Attribute_Large =>
6366
6367          --  For fixed-point, we use the identity:
6368
6369          --    T'Large = (2.0**T'Mantissa - 1.0) * T'Small
6370
6371          if Is_Fixed_Point_Type (P_Type) then
6372             Rewrite (N,
6373               Make_Op_Multiply (Loc,
6374                 Left_Opnd =>
6375                   Make_Op_Subtract (Loc,
6376                     Left_Opnd =>
6377                       Make_Op_Expon (Loc,
6378                         Left_Opnd =>
6379                           Make_Real_Literal (Loc, Ureal_2),
6380                         Right_Opnd =>
6381                           Make_Attribute_Reference (Loc,
6382                             Prefix => P,
6383                             Attribute_Name => Name_Mantissa)),
6384                     Right_Opnd => Make_Real_Literal (Loc, Ureal_1)),
6385
6386                 Right_Opnd =>
6387                   Make_Real_Literal (Loc, Small_Value (Entity (P)))));
6388
6389             Analyze_And_Resolve (N, C_Type);
6390
6391          --  Floating-point (Ada 83 compatibility)
6392
6393          else
6394             --  Ada 83 attribute is defined as (RM83 3.5.8)
6395
6396             --    T'Large = 2.0**T'Emax * (1.0 - 2.0**(-T'Mantissa))
6397
6398             --  where
6399
6400             --    T'Emax = 4 * T'Mantissa
6401
6402             Fold_Ureal (N,
6403               Ureal_2 ** (4 * Mantissa) * (Ureal_1 - Ureal_2 ** (-Mantissa)),
6404               True);
6405          end if;
6406
6407       ----------
6408       -- Last --
6409       ----------
6410
6411       when Attribute_Last => Last :
6412       begin
6413          Set_Bounds;
6414
6415          if Compile_Time_Known_Value (Hi_Bound) then
6416             if Is_Real_Type (P_Type) then
6417                Fold_Ureal (N, Expr_Value_R (Hi_Bound), Static);
6418             else
6419                Fold_Uint  (N, Expr_Value (Hi_Bound), Static);
6420             end if;
6421
6422          else
6423             Check_Concurrent_Discriminant (Hi_Bound);
6424          end if;
6425       end Last;
6426
6427       ------------------
6428       -- Leading_Part --
6429       ------------------
6430
6431       when Attribute_Leading_Part =>
6432          Fold_Ureal (N,
6433            Eval_Fat.Leading_Part
6434              (P_Root_Type, Expr_Value_R (E1), Expr_Value (E2)), Static);
6435
6436       ------------
6437       -- Length --
6438       ------------
6439
6440       when Attribute_Length => Length : declare
6441          Ind : Node_Id;
6442
6443       begin
6444          --  If any index type is a formal type, or derived from one, the
6445          --  bounds are not static. Treating them as static can produce
6446          --  spurious warnings or improper constant folding.
6447
6448          Ind := First_Index (P_Type);
6449          while Present (Ind) loop
6450             if Is_Generic_Type (Root_Type (Etype (Ind))) then
6451                return;
6452             end if;
6453
6454             Next_Index (Ind);
6455          end loop;
6456
6457          Set_Bounds;
6458
6459          --  For two compile time values, we can compute length
6460
6461          if Compile_Time_Known_Value (Lo_Bound)
6462            and then Compile_Time_Known_Value (Hi_Bound)
6463          then
6464             Fold_Uint (N,
6465               UI_Max (0, 1 + (Expr_Value (Hi_Bound) - Expr_Value (Lo_Bound))),
6466               True);
6467          end if;
6468
6469          --  One more case is where Hi_Bound and Lo_Bound are compile-time
6470          --  comparable, and we can figure out the difference between them.
6471
6472          declare
6473             Diff : aliased Uint;
6474
6475          begin
6476             case
6477               Compile_Time_Compare
6478                 (Lo_Bound, Hi_Bound, Diff'Access, Assume_Valid => False)
6479             is
6480                when EQ =>
6481                   Fold_Uint (N, Uint_1, False);
6482
6483                when GT =>
6484                   Fold_Uint (N, Uint_0, False);
6485
6486                when LT =>
6487                   if Diff /= No_Uint then
6488                      Fold_Uint (N, Diff + 1, False);
6489                   end if;
6490
6491                when others =>
6492                   null;
6493             end case;
6494          end;
6495       end Length;
6496
6497       -------------
6498       -- Machine --
6499       -------------
6500
6501       when Attribute_Machine =>
6502          Fold_Ureal (N,
6503            Eval_Fat.Machine
6504              (P_Root_Type, Expr_Value_R (E1), Eval_Fat.Round, N),
6505            Static);
6506
6507       ------------------
6508       -- Machine_Emax --
6509       ------------------
6510
6511       when Attribute_Machine_Emax =>
6512          Fold_Uint (N, Machine_Emax_Value (P_Type), Static);
6513
6514       ------------------
6515       -- Machine_Emin --
6516       ------------------
6517
6518       when Attribute_Machine_Emin =>
6519          Fold_Uint (N, Machine_Emin_Value (P_Type), Static);
6520
6521       ----------------------
6522       -- Machine_Mantissa --
6523       ----------------------
6524
6525       when Attribute_Machine_Mantissa =>
6526          Fold_Uint (N, Machine_Mantissa_Value (P_Type), Static);
6527
6528       -----------------------
6529       -- Machine_Overflows --
6530       -----------------------
6531
6532       when Attribute_Machine_Overflows =>
6533
6534          --  Always true for fixed-point
6535
6536          if Is_Fixed_Point_Type (P_Type) then
6537             Fold_Uint (N, True_Value, True);
6538
6539          --  Floating point case
6540
6541          else
6542             Fold_Uint (N,
6543               UI_From_Int (Boolean'Pos (Machine_Overflows_On_Target)),
6544               True);
6545          end if;
6546
6547       -------------------
6548       -- Machine_Radix --
6549       -------------------
6550
6551       when Attribute_Machine_Radix =>
6552          if Is_Fixed_Point_Type (P_Type) then
6553             if Is_Decimal_Fixed_Point_Type (P_Type)
6554               and then Machine_Radix_10 (P_Type)
6555             then
6556                Fold_Uint (N, Uint_10, True);
6557             else
6558                Fold_Uint (N, Uint_2, True);
6559             end if;
6560
6561          --  All floating-point type always have radix 2
6562
6563          else
6564             Fold_Uint (N, Uint_2, True);
6565          end if;
6566
6567       ----------------------
6568       -- Machine_Rounding --
6569       ----------------------
6570
6571       --  Note: for the folding case, it is fine to treat Machine_Rounding
6572       --  exactly the same way as Rounding, since this is one of the allowed
6573       --  behaviors, and performance is not an issue here. It might be a bit
6574       --  better to give the same result as it would give at run time, even
6575       --  though the non-determinism is certainly permitted.
6576
6577       when Attribute_Machine_Rounding =>
6578          Fold_Ureal (N,
6579            Eval_Fat.Rounding (P_Root_Type, Expr_Value_R (E1)), Static);
6580
6581       --------------------
6582       -- Machine_Rounds --
6583       --------------------
6584
6585       when Attribute_Machine_Rounds =>
6586
6587          --  Always False for fixed-point
6588
6589          if Is_Fixed_Point_Type (P_Type) then
6590             Fold_Uint (N, False_Value, True);
6591
6592          --  Else yield proper floating-point result
6593
6594          else
6595             Fold_Uint
6596               (N, UI_From_Int (Boolean'Pos (Machine_Rounds_On_Target)), True);
6597          end if;
6598
6599       ------------------
6600       -- Machine_Size --
6601       ------------------
6602
6603       --  Note: Machine_Size is identical to Object_Size
6604
6605       when Attribute_Machine_Size => Machine_Size : declare
6606          P_TypeA : constant Entity_Id := Underlying_Type (P_Type);
6607
6608       begin
6609          if Known_Esize (P_TypeA) then
6610             Fold_Uint (N, Esize (P_TypeA), True);
6611          end if;
6612       end Machine_Size;
6613
6614       --------------
6615       -- Mantissa --
6616       --------------
6617
6618       when Attribute_Mantissa =>
6619
6620          --  Fixed-point mantissa
6621
6622          if Is_Fixed_Point_Type (P_Type) then
6623
6624             --  Compile time foldable case
6625
6626             if Compile_Time_Known_Value (Type_Low_Bound  (P_Type))
6627                  and then
6628                Compile_Time_Known_Value (Type_High_Bound (P_Type))
6629             then
6630                --  The calculation of the obsolete Ada 83 attribute Mantissa
6631                --  is annoying, because of AI00143, quoted here:
6632
6633                --  !question 84-01-10
6634
6635                --  Consider the model numbers for F:
6636
6637                --         type F is delta 1.0 range -7.0 .. 8.0;
6638
6639                --  The wording requires that F'MANTISSA be the SMALLEST
6640                --  integer number for which each  bound  of the specified
6641                --  range is either a model number or lies at most small
6642                --  distant from a model number. This means F'MANTISSA
6643                --  is required to be 3 since the range  -7.0 .. 7.0 fits
6644                --  in 3 signed bits, and 8 is "at most" 1.0 from a model
6645                --  number, namely, 7. Is this analysis correct? Note that
6646                --  this implies the upper bound of the range is not
6647                --  represented as a model number.
6648
6649                --  !response 84-03-17
6650
6651                --  The analysis is correct. The upper and lower bounds for
6652                --  a fixed  point type can lie outside the range of model
6653                --  numbers.
6654
6655                declare
6656                   Siz     : Uint;
6657                   LBound  : Ureal;
6658                   UBound  : Ureal;
6659                   Bound   : Ureal;
6660                   Max_Man : Uint;
6661
6662                begin
6663                   LBound  := Expr_Value_R (Type_Low_Bound  (P_Type));
6664                   UBound  := Expr_Value_R (Type_High_Bound (P_Type));
6665                   Bound   := UR_Max (UR_Abs (LBound), UR_Abs (UBound));
6666                   Max_Man := UR_Trunc (Bound / Small_Value (P_Type));
6667
6668                   --  If the Bound is exactly a model number, i.e. a multiple
6669                   --  of Small, then we back it off by one to get the integer
6670                   --  value that must be representable.
6671
6672                   if Small_Value (P_Type) * Max_Man = Bound then
6673                      Max_Man := Max_Man - 1;
6674                   end if;
6675
6676                   --  Now find corresponding size = Mantissa value
6677
6678                   Siz := Uint_0;
6679                   while 2 ** Siz < Max_Man loop
6680                      Siz := Siz + 1;
6681                   end loop;
6682
6683                   Fold_Uint (N, Siz, True);
6684                end;
6685
6686             else
6687                --  The case of dynamic bounds cannot be evaluated at compile
6688                --  time. Instead we use a runtime routine (see Exp_Attr).
6689
6690                null;
6691             end if;
6692
6693          --  Floating-point Mantissa
6694
6695          else
6696             Fold_Uint (N, Mantissa, True);
6697          end if;
6698
6699       ---------
6700       -- Max --
6701       ---------
6702
6703       when Attribute_Max => Max :
6704       begin
6705          if Is_Real_Type (P_Type) then
6706             Fold_Ureal
6707               (N, UR_Max (Expr_Value_R (E1), Expr_Value_R (E2)), Static);
6708          else
6709             Fold_Uint (N, UI_Max (Expr_Value (E1), Expr_Value (E2)), Static);
6710          end if;
6711       end Max;
6712
6713       ----------------------------------
6714       -- Max_Alignment_For_Allocation --
6715       ----------------------------------
6716
6717       --  Max_Alignment_For_Allocation is usually the Alignment. However,
6718       --  arrays are allocated with dope, so we need to take into account both
6719       --  the alignment of the array, which comes from the component alignment,
6720       --  and the alignment of the dope. Also, if the alignment is unknown, we
6721       --  use the max (it's OK to be pessimistic).
6722
6723       when Attribute_Max_Alignment_For_Allocation =>
6724          declare
6725             A : Uint := UI_From_Int (Ttypes.Maximum_Alignment);
6726          begin
6727             if Known_Alignment (P_Type) and then
6728               (not Is_Array_Type (P_Type) or else Alignment (P_Type) > A)
6729             then
6730                A := Alignment (P_Type);
6731             end if;
6732
6733             Fold_Uint (N, A, Static);
6734          end;
6735
6736       ----------------------------------
6737       -- Max_Size_In_Storage_Elements --
6738       ----------------------------------
6739
6740       --  Max_Size_In_Storage_Elements is simply the Size rounded up to a
6741       --  Storage_Unit boundary. We can fold any cases for which the size
6742       --  is known by the front end.
6743
6744       when Attribute_Max_Size_In_Storage_Elements =>
6745          if Known_Esize (P_Type) then
6746             Fold_Uint (N,
6747               (Esize (P_Type) + System_Storage_Unit - 1) /
6748                                           System_Storage_Unit,
6749                Static);
6750          end if;
6751
6752       --------------------
6753       -- Mechanism_Code --
6754       --------------------
6755
6756       when Attribute_Mechanism_Code =>
6757          declare
6758             Val    : Int;
6759             Formal : Entity_Id;
6760             Mech   : Mechanism_Type;
6761
6762          begin
6763             if No (E1) then
6764                Mech := Mechanism (P_Entity);
6765
6766             else
6767                Val := UI_To_Int (Expr_Value (E1));
6768
6769                Formal := First_Formal (P_Entity);
6770                for J in 1 .. Val - 1 loop
6771                   Next_Formal (Formal);
6772                end loop;
6773                Mech := Mechanism (Formal);
6774             end if;
6775
6776             if Mech < 0 then
6777                Fold_Uint (N, UI_From_Int (Int (-Mech)), True);
6778             end if;
6779          end;
6780
6781       ---------
6782       -- Min --
6783       ---------
6784
6785       when Attribute_Min => Min :
6786       begin
6787          if Is_Real_Type (P_Type) then
6788             Fold_Ureal
6789               (N, UR_Min (Expr_Value_R (E1), Expr_Value_R (E2)), Static);
6790          else
6791             Fold_Uint
6792               (N, UI_Min (Expr_Value (E1), Expr_Value (E2)), Static);
6793          end if;
6794       end Min;
6795
6796       ---------
6797       -- Mod --
6798       ---------
6799
6800       when Attribute_Mod =>
6801          Fold_Uint
6802            (N, UI_Mod (Expr_Value (E1), Modulus (P_Base_Type)), Static);
6803
6804       -----------
6805       -- Model --
6806       -----------
6807
6808       when Attribute_Model =>
6809          Fold_Ureal (N,
6810            Eval_Fat.Model (P_Root_Type, Expr_Value_R (E1)), Static);
6811
6812       ----------------
6813       -- Model_Emin --
6814       ----------------
6815
6816       when Attribute_Model_Emin =>
6817          Fold_Uint (N, Model_Emin_Value (P_Base_Type), Static);
6818
6819       -------------------
6820       -- Model_Epsilon --
6821       -------------------
6822
6823       when Attribute_Model_Epsilon =>
6824          Fold_Ureal (N, Model_Epsilon_Value (P_Base_Type), Static);
6825
6826       --------------------
6827       -- Model_Mantissa --
6828       --------------------
6829
6830       when Attribute_Model_Mantissa =>
6831          Fold_Uint (N, Model_Mantissa_Value (P_Base_Type), Static);
6832
6833       -----------------
6834       -- Model_Small --
6835       -----------------
6836
6837       when Attribute_Model_Small =>
6838          Fold_Ureal (N, Model_Small_Value (P_Base_Type), Static);
6839
6840       -------------
6841       -- Modulus --
6842       -------------
6843
6844       when Attribute_Modulus =>
6845          Fold_Uint (N, Modulus (P_Type), True);
6846
6847       --------------------
6848       -- Null_Parameter --
6849       --------------------
6850
6851       --  Cannot fold, we know the value sort of, but the whole point is
6852       --  that there is no way to talk about this imaginary value except
6853       --  by using the attribute, so we leave it the way it is.
6854
6855       when Attribute_Null_Parameter =>
6856          null;
6857
6858       -----------------
6859       -- Object_Size --
6860       -----------------
6861
6862       --  The Object_Size attribute for a type returns the Esize of the
6863       --  type and can be folded if this value is known.
6864
6865       when Attribute_Object_Size => Object_Size : declare
6866          P_TypeA : constant Entity_Id := Underlying_Type (P_Type);
6867
6868       begin
6869          if Known_Esize (P_TypeA) then
6870             Fold_Uint (N, Esize (P_TypeA), True);
6871          end if;
6872       end Object_Size;
6873
6874       -------------------------
6875       -- Passed_By_Reference --
6876       -------------------------
6877
6878       --  Scalar types are never passed by reference
6879
6880       when Attribute_Passed_By_Reference =>
6881          Fold_Uint (N, False_Value, True);
6882
6883       ---------
6884       -- Pos --
6885       ---------
6886
6887       when Attribute_Pos =>
6888          Fold_Uint (N, Expr_Value (E1), True);
6889
6890       ----------
6891       -- Pred --
6892       ----------
6893
6894       when Attribute_Pred => Pred :
6895       begin
6896          --  Floating-point case
6897
6898          if Is_Floating_Point_Type (P_Type) then
6899             Fold_Ureal (N,
6900               Eval_Fat.Pred (P_Root_Type, Expr_Value_R (E1)), Static);
6901
6902          --  Fixed-point case
6903
6904          elsif Is_Fixed_Point_Type (P_Type) then
6905             Fold_Ureal (N,
6906               Expr_Value_R (E1) - Small_Value (P_Type), True);
6907
6908          --  Modular integer case (wraps)
6909
6910          elsif Is_Modular_Integer_Type (P_Type) then
6911             Fold_Uint (N, (Expr_Value (E1) - 1) mod Modulus (P_Type), Static);
6912
6913          --  Other scalar cases
6914
6915          else
6916             pragma Assert (Is_Scalar_Type (P_Type));
6917
6918             if Is_Enumeration_Type (P_Type)
6919               and then Expr_Value (E1) =
6920                          Expr_Value (Type_Low_Bound (P_Base_Type))
6921             then
6922                Apply_Compile_Time_Constraint_Error
6923                  (N, "Pred of `&''First`",
6924                   CE_Overflow_Check_Failed,
6925                   Ent  => P_Base_Type,
6926                   Warn => not Static);
6927
6928                Check_Expressions;
6929                return;
6930             end if;
6931
6932             Fold_Uint (N, Expr_Value (E1) - 1, Static);
6933          end if;
6934       end Pred;
6935
6936       -----------
6937       -- Range --
6938       -----------
6939
6940       --  No processing required, because by this stage, Range has been
6941       --  replaced by First .. Last, so this branch can never be taken.
6942
6943       when Attribute_Range =>
6944          raise Program_Error;
6945
6946       ------------------
6947       -- Range_Length --
6948       ------------------
6949
6950       when Attribute_Range_Length =>
6951          Set_Bounds;
6952
6953          --  Can fold if both bounds are compile time known
6954
6955          if Compile_Time_Known_Value (Hi_Bound)
6956            and then Compile_Time_Known_Value (Lo_Bound)
6957          then
6958             Fold_Uint (N,
6959               UI_Max
6960                 (0, Expr_Value (Hi_Bound) - Expr_Value (Lo_Bound) + 1),
6961                  Static);
6962          end if;
6963
6964          --  One more case is where Hi_Bound and Lo_Bound are compile-time
6965          --  comparable, and we can figure out the difference between them.
6966
6967          declare
6968             Diff : aliased Uint;
6969
6970          begin
6971             case
6972               Compile_Time_Compare
6973                 (Lo_Bound, Hi_Bound, Diff'Access, Assume_Valid => False)
6974             is
6975                when EQ =>
6976                   Fold_Uint (N, Uint_1, False);
6977
6978                when GT =>
6979                   Fold_Uint (N, Uint_0, False);
6980
6981                when LT =>
6982                   if Diff /= No_Uint then
6983                      Fold_Uint (N, Diff + 1, False);
6984                   end if;
6985
6986                when others =>
6987                   null;
6988             end case;
6989          end;
6990
6991       ---------
6992       -- Ref --
6993       ---------
6994
6995       when Attribute_Ref =>
6996          Fold_Uint (N, Expr_Value (E1), True);
6997
6998       ---------------
6999       -- Remainder --
7000       ---------------
7001
7002       when Attribute_Remainder => Remainder : declare
7003          X : constant Ureal := Expr_Value_R (E1);
7004          Y : constant Ureal := Expr_Value_R (E2);
7005
7006       begin
7007          if UR_Is_Zero (Y) then
7008             Apply_Compile_Time_Constraint_Error
7009               (N, "division by zero in Remainder",
7010                CE_Overflow_Check_Failed,
7011                Warn => not Static);
7012
7013             Check_Expressions;
7014             return;
7015          end if;
7016
7017          Fold_Ureal (N, Eval_Fat.Remainder (P_Root_Type, X, Y), Static);
7018       end Remainder;
7019
7020       -----------
7021       -- Round --
7022       -----------
7023
7024       when Attribute_Round => Round :
7025       declare
7026          Sr : Ureal;
7027          Si : Uint;
7028
7029       begin
7030          --  First we get the (exact result) in units of small
7031
7032          Sr := Expr_Value_R (E1) / Small_Value (C_Type);
7033
7034          --  Now round that exactly to an integer
7035
7036          Si := UR_To_Uint (Sr);
7037
7038          --  Finally the result is obtained by converting back to real
7039
7040          Fold_Ureal (N, Si * Small_Value (C_Type), Static);
7041       end Round;
7042
7043       --------------
7044       -- Rounding --
7045       --------------
7046
7047       when Attribute_Rounding =>
7048          Fold_Ureal (N,
7049            Eval_Fat.Rounding (P_Root_Type, Expr_Value_R (E1)), Static);
7050
7051       ---------------
7052       -- Safe_Emax --
7053       ---------------
7054
7055       when Attribute_Safe_Emax =>
7056          Fold_Uint (N, Safe_Emax_Value (P_Type), Static);
7057
7058       ----------------
7059       -- Safe_First --
7060       ----------------
7061
7062       when Attribute_Safe_First =>
7063          Fold_Ureal (N, Safe_First_Value (P_Type), Static);
7064
7065       ----------------
7066       -- Safe_Large --
7067       ----------------
7068
7069       when Attribute_Safe_Large =>
7070          if Is_Fixed_Point_Type (P_Type) then
7071             Fold_Ureal
7072               (N, Expr_Value_R (Type_High_Bound (P_Base_Type)), Static);
7073          else
7074             Fold_Ureal (N, Safe_Last_Value (P_Type), Static);
7075          end if;
7076
7077       ---------------
7078       -- Safe_Last --
7079       ---------------
7080
7081       when Attribute_Safe_Last =>
7082          Fold_Ureal (N, Safe_Last_Value (P_Type), Static);
7083
7084       ----------------
7085       -- Safe_Small --
7086       ----------------
7087
7088       when Attribute_Safe_Small =>
7089
7090          --  In Ada 95, the old Ada 83 attribute Safe_Small is redundant
7091          --  for fixed-point, since is the same as Small, but we implement
7092          --  it for backwards compatibility.
7093
7094          if Is_Fixed_Point_Type (P_Type) then
7095             Fold_Ureal (N, Small_Value (P_Type), Static);
7096
7097          --  Ada 83 Safe_Small for floating-point cases
7098
7099          else
7100             Fold_Ureal (N, Model_Small_Value (P_Type), Static);
7101          end if;
7102
7103       -----------
7104       -- Scale --
7105       -----------
7106
7107       when Attribute_Scale =>
7108          Fold_Uint (N, Scale_Value (P_Type), True);
7109
7110       -------------
7111       -- Scaling --
7112       -------------
7113
7114       when Attribute_Scaling =>
7115          Fold_Ureal (N,
7116            Eval_Fat.Scaling
7117              (P_Root_Type, Expr_Value_R (E1), Expr_Value (E2)), Static);
7118
7119       ------------------
7120       -- Signed_Zeros --
7121       ------------------
7122
7123       when Attribute_Signed_Zeros =>
7124          Fold_Uint
7125            (N, UI_From_Int (Boolean'Pos (Signed_Zeros_On_Target)), Static);
7126
7127       ----------
7128       -- Size --
7129       ----------
7130
7131       --  Size attribute returns the RM size. All scalar types can be folded,
7132       --  as well as any types for which the size is known by the front end,
7133       --  including any type for which a size attribute is specified.
7134
7135       when Attribute_Size | Attribute_VADS_Size => Size : declare
7136          P_TypeA : constant Entity_Id := Underlying_Type (P_Type);
7137
7138       begin
7139          if RM_Size (P_TypeA) /= Uint_0 then
7140
7141             --  VADS_Size case
7142
7143             if Id = Attribute_VADS_Size or else Use_VADS_Size then
7144                declare
7145                   S : constant Node_Id := Size_Clause (P_TypeA);
7146
7147                begin
7148                   --  If a size clause applies, then use the size from it.
7149                   --  This is one of the rare cases where we can use the
7150                   --  Size_Clause field for a subtype when Has_Size_Clause
7151                   --  is False. Consider:
7152
7153                   --    type x is range 1 .. 64;
7154                   --    for x'size use 12;
7155                   --    subtype y is x range 0 .. 3;
7156
7157                   --  Here y has a size clause inherited from x, but normally
7158                   --  it does not apply, and y'size is 2. However, y'VADS_Size
7159                   --  is indeed 12 and not 2.
7160
7161                   if Present (S)
7162                     and then Is_OK_Static_Expression (Expression (S))
7163                   then
7164                      Fold_Uint (N, Expr_Value (Expression (S)), True);
7165
7166                   --  If no size is specified, then we simply use the object
7167                   --  size in the VADS_Size case (e.g. Natural'Size is equal
7168                   --  to Integer'Size, not one less).
7169
7170                   else
7171                      Fold_Uint (N, Esize (P_TypeA), True);
7172                   end if;
7173                end;
7174
7175             --  Normal case (Size) in which case we want the RM_Size
7176
7177             else
7178                Fold_Uint (N,
7179                  RM_Size (P_TypeA),
7180                  Static and then Is_Discrete_Type (P_TypeA));
7181             end if;
7182          end if;
7183       end Size;
7184
7185       -----------
7186       -- Small --
7187       -----------
7188
7189       when Attribute_Small =>
7190
7191          --  The floating-point case is present only for Ada 83 compatibility.
7192          --  Note that strictly this is an illegal addition, since we are
7193          --  extending an Ada 95 defined attribute, but we anticipate an
7194          --  ARG ruling that will permit this.
7195
7196          if Is_Floating_Point_Type (P_Type) then
7197
7198             --  Ada 83 attribute is defined as (RM83 3.5.8)
7199
7200             --    T'Small = 2.0**(-T'Emax - 1)
7201
7202             --  where
7203
7204             --    T'Emax = 4 * T'Mantissa
7205
7206             Fold_Ureal (N, Ureal_2 ** ((-(4 * Mantissa)) - 1), Static);
7207
7208          --  Normal Ada 95 fixed-point case
7209
7210          else
7211             Fold_Ureal (N, Small_Value (P_Type), True);
7212          end if;
7213
7214       -----------------
7215       -- Stream_Size --
7216       -----------------
7217
7218       when Attribute_Stream_Size =>
7219          null;
7220
7221       ----------
7222       -- Succ --
7223       ----------
7224
7225       when Attribute_Succ => Succ :
7226       begin
7227          --  Floating-point case
7228
7229          if Is_Floating_Point_Type (P_Type) then
7230             Fold_Ureal (N,
7231               Eval_Fat.Succ (P_Root_Type, Expr_Value_R (E1)), Static);
7232
7233          --  Fixed-point case
7234
7235          elsif Is_Fixed_Point_Type (P_Type) then
7236             Fold_Ureal (N,
7237               Expr_Value_R (E1) + Small_Value (P_Type), Static);
7238
7239          --  Modular integer case (wraps)
7240
7241          elsif Is_Modular_Integer_Type (P_Type) then
7242             Fold_Uint (N, (Expr_Value (E1) + 1) mod Modulus (P_Type), Static);
7243
7244          --  Other scalar cases
7245
7246          else
7247             pragma Assert (Is_Scalar_Type (P_Type));
7248
7249             if Is_Enumeration_Type (P_Type)
7250               and then Expr_Value (E1) =
7251                          Expr_Value (Type_High_Bound (P_Base_Type))
7252             then
7253                Apply_Compile_Time_Constraint_Error
7254                  (N, "Succ of `&''Last`",
7255                   CE_Overflow_Check_Failed,
7256                   Ent  => P_Base_Type,
7257                   Warn => not Static);
7258
7259                Check_Expressions;
7260                return;
7261             else
7262                Fold_Uint (N, Expr_Value (E1) + 1, Static);
7263             end if;
7264          end if;
7265       end Succ;
7266
7267       ----------------
7268       -- Truncation --
7269       ----------------
7270
7271       when Attribute_Truncation =>
7272          Fold_Ureal (N,
7273            Eval_Fat.Truncation (P_Root_Type, Expr_Value_R (E1)), Static);
7274
7275       ----------------
7276       -- Type_Class --
7277       ----------------
7278
7279       when Attribute_Type_Class => Type_Class : declare
7280          Typ : constant Entity_Id := Underlying_Type (P_Base_Type);
7281          Id  : RE_Id;
7282
7283       begin
7284          if Is_Descendent_Of_Address (Typ) then
7285             Id := RE_Type_Class_Address;
7286
7287          elsif Is_Enumeration_Type (Typ) then
7288             Id := RE_Type_Class_Enumeration;
7289
7290          elsif Is_Integer_Type (Typ) then
7291             Id := RE_Type_Class_Integer;
7292
7293          elsif Is_Fixed_Point_Type (Typ) then
7294             Id := RE_Type_Class_Fixed_Point;
7295
7296          elsif Is_Floating_Point_Type (Typ) then
7297             Id := RE_Type_Class_Floating_Point;
7298
7299          elsif Is_Array_Type (Typ) then
7300             Id := RE_Type_Class_Array;
7301
7302          elsif Is_Record_Type (Typ) then
7303             Id := RE_Type_Class_Record;
7304
7305          elsif Is_Access_Type (Typ) then
7306             Id := RE_Type_Class_Access;
7307
7308          elsif Is_Enumeration_Type (Typ) then
7309             Id := RE_Type_Class_Enumeration;
7310
7311          elsif Is_Task_Type (Typ) then
7312             Id := RE_Type_Class_Task;
7313
7314          --  We treat protected types like task types. It would make more
7315          --  sense to have another enumeration value, but after all the
7316          --  whole point of this feature is to be exactly DEC compatible,
7317          --  and changing the type Type_Class would not meet this requirement.
7318
7319          elsif Is_Protected_Type (Typ) then
7320             Id := RE_Type_Class_Task;
7321
7322          --  Not clear if there are any other possibilities, but if there
7323          --  are, then we will treat them as the address case.
7324
7325          else
7326             Id := RE_Type_Class_Address;
7327          end if;
7328
7329          Rewrite (N, New_Occurrence_Of (RTE (Id), Loc));
7330       end Type_Class;
7331
7332       -----------------------
7333       -- Unbiased_Rounding --
7334       -----------------------
7335
7336       when Attribute_Unbiased_Rounding =>
7337          Fold_Ureal (N,
7338            Eval_Fat.Unbiased_Rounding (P_Root_Type, Expr_Value_R (E1)),
7339            Static);
7340
7341       -------------------------
7342       -- Unconstrained_Array --
7343       -------------------------
7344
7345       when Attribute_Unconstrained_Array => Unconstrained_Array : declare
7346          Typ : constant Entity_Id := Underlying_Type (P_Type);
7347
7348       begin
7349          Rewrite (N, New_Occurrence_Of (
7350            Boolean_Literals (
7351              Is_Array_Type (P_Type)
7352               and then not Is_Constrained (Typ)), Loc));
7353
7354          --  Analyze and resolve as boolean, note that this attribute is
7355          --  a static attribute in GNAT.
7356
7357          Analyze_And_Resolve (N, Standard_Boolean);
7358          Static := True;
7359       end Unconstrained_Array;
7360
7361       ---------------
7362       -- VADS_Size --
7363       ---------------
7364
7365       --  Processing is shared with Size
7366
7367       ---------
7368       -- Val --
7369       ---------
7370
7371       when Attribute_Val => Val :
7372       begin
7373          if  Expr_Value (E1) < Expr_Value (Type_Low_Bound (P_Base_Type))
7374            or else
7375              Expr_Value (E1) > Expr_Value (Type_High_Bound (P_Base_Type))
7376          then
7377             Apply_Compile_Time_Constraint_Error
7378               (N, "Val expression out of range",
7379                CE_Range_Check_Failed,
7380                Warn => not Static);
7381
7382             Check_Expressions;
7383             return;
7384
7385          else
7386             Fold_Uint (N, Expr_Value (E1), Static);
7387          end if;
7388       end Val;
7389
7390       ----------------
7391       -- Value_Size --
7392       ----------------
7393
7394       --  The Value_Size attribute for a type returns the RM size of the
7395       --  type. This an always be folded for scalar types, and can also
7396       --  be folded for non-scalar types if the size is set.
7397
7398       when Attribute_Value_Size => Value_Size : declare
7399          P_TypeA : constant Entity_Id := Underlying_Type (P_Type);
7400       begin
7401          if RM_Size (P_TypeA) /= Uint_0 then
7402             Fold_Uint (N, RM_Size (P_TypeA), True);
7403          end if;
7404       end Value_Size;
7405
7406       -------------
7407       -- Version --
7408       -------------
7409
7410       --  Version can never be static
7411
7412       when Attribute_Version =>
7413          null;
7414
7415       ----------------
7416       -- Wide_Image --
7417       ----------------
7418
7419       --  Wide_Image is a scalar attribute, but is never static, because it
7420       --  is not a static function (having a non-scalar argument (RM 4.9(22))
7421
7422       when Attribute_Wide_Image =>
7423          null;
7424
7425       ---------------------
7426       -- Wide_Wide_Image --
7427       ---------------------
7428
7429       --  Wide_Wide_Image is a scalar attribute but is never static, because it
7430       --  is not a static function (having a non-scalar argument (RM 4.9(22)).
7431
7432       when Attribute_Wide_Wide_Image =>
7433          null;
7434
7435       ---------------------
7436       -- Wide_Wide_Width --
7437       ---------------------
7438
7439       --  Processing for Wide_Wide_Width is combined with Width
7440
7441       ----------------
7442       -- Wide_Width --
7443       ----------------
7444
7445       --  Processing for Wide_Width is combined with Width
7446
7447       -----------
7448       -- Width --
7449       -----------
7450
7451       --  This processing also handles the case of Wide_[Wide_]Width
7452
7453       when Attribute_Width |
7454            Attribute_Wide_Width |
7455            Attribute_Wide_Wide_Width => Width :
7456       begin
7457          if Compile_Time_Known_Bounds (P_Type) then
7458
7459             --  Floating-point types
7460
7461             if Is_Floating_Point_Type (P_Type) then
7462
7463                --  Width is zero for a null range (RM 3.5 (38))
7464
7465                if Expr_Value_R (Type_High_Bound (P_Type)) <
7466                   Expr_Value_R (Type_Low_Bound (P_Type))
7467                then
7468                   Fold_Uint (N, Uint_0, True);
7469
7470                else
7471                   --  For floating-point, we have +N.dddE+nnn where length
7472                   --  of ddd is determined by type'Digits - 1, but is one
7473                   --  if Digits is one (RM 3.5 (33)).
7474
7475                   --  nnn is set to 2 for Short_Float and Float (32 bit
7476                   --  floats), and 3 for Long_Float and Long_Long_Float.
7477                   --  For machines where Long_Long_Float is the IEEE
7478                   --  extended precision type, the exponent takes 4 digits.
7479
7480                   declare
7481                      Len : Int :=
7482                              Int'Max (2, UI_To_Int (Digits_Value (P_Type)));
7483
7484                   begin
7485                      if Esize (P_Type) <= 32 then
7486                         Len := Len + 6;
7487                      elsif Esize (P_Type) = 64 then
7488                         Len := Len + 7;
7489                      else
7490                         Len := Len + 8;
7491                      end if;
7492
7493                      Fold_Uint (N, UI_From_Int (Len), True);
7494                   end;
7495                end if;
7496
7497             --  Fixed-point types
7498
7499             elsif Is_Fixed_Point_Type (P_Type) then
7500
7501                --  Width is zero for a null range (RM 3.5 (38))
7502
7503                if Expr_Value (Type_High_Bound (P_Type)) <
7504                   Expr_Value (Type_Low_Bound  (P_Type))
7505                then
7506                   Fold_Uint (N, Uint_0, True);
7507
7508                --  The non-null case depends on the specific real type
7509
7510                else
7511                   --  For fixed-point type width is Fore + 1 + Aft (RM 3.5(34))
7512
7513                   Fold_Uint
7514                     (N, UI_From_Int (Fore_Value + 1) + Aft_Value (P_Type),
7515                      True);
7516                end if;
7517
7518             --  Discrete types
7519
7520             else
7521                declare
7522                   R  : constant Entity_Id := Root_Type (P_Type);
7523                   Lo : constant Uint := Expr_Value (Type_Low_Bound (P_Type));
7524                   Hi : constant Uint := Expr_Value (Type_High_Bound (P_Type));
7525                   W  : Nat;
7526                   Wt : Nat;
7527                   T  : Uint;
7528                   L  : Node_Id;
7529                   C  : Character;
7530
7531                begin
7532                   --  Empty ranges
7533
7534                   if Lo > Hi then
7535                      W := 0;
7536
7537                   --  Width for types derived from Standard.Character
7538                   --  and Standard.Wide_[Wide_]Character.
7539
7540                   elsif Is_Standard_Character_Type (P_Type) then
7541                      W := 0;
7542
7543                      --  Set W larger if needed
7544
7545                      for J in UI_To_Int (Lo) .. UI_To_Int (Hi) loop
7546
7547                         --  All wide characters look like Hex_hhhhhhhh
7548
7549                         if J > 255 then
7550
7551                            --  No need to compute this more than once!
7552
7553                            exit;
7554
7555                         else
7556                            C := Character'Val (J);
7557
7558                            --  Test for all cases where Character'Image
7559                            --  yields an image that is longer than three
7560                            --  characters. First the cases of Reserved_xxx
7561                            --  names (length = 12).
7562
7563                            case C is
7564                               when Reserved_128 | Reserved_129 |
7565                                    Reserved_132 | Reserved_153
7566                                 => Wt := 12;
7567
7568                               when BS | HT | LF | VT | FF | CR |
7569                                    SO | SI | EM | FS | GS | RS |
7570                                    US | RI | MW | ST | PM
7571                                 => Wt := 2;
7572
7573                               when NUL | SOH | STX | ETX | EOT |
7574                                    ENQ | ACK | BEL | DLE | DC1 |
7575                                    DC2 | DC3 | DC4 | NAK | SYN |
7576                                    ETB | CAN | SUB | ESC | DEL |
7577                                    BPH | NBH | NEL | SSA | ESA |
7578                                    HTS | HTJ | VTS | PLD | PLU |
7579                                    SS2 | SS3 | DCS | PU1 | PU2 |
7580                                    STS | CCH | SPA | EPA | SOS |
7581                                    SCI | CSI | OSC | APC
7582                                 => Wt := 3;
7583
7584                               when Space .. Tilde |
7585                                    No_Break_Space .. LC_Y_Diaeresis
7586                                 =>
7587                                  --  Special case of soft hyphen in Ada 2005
7588
7589                                  if C = Character'Val (16#AD#)
7590                                    and then Ada_Version >= Ada_2005
7591                                  then
7592                                     Wt := 11;
7593                                  else
7594                                     Wt := 3;
7595                                  end if;
7596                            end case;
7597
7598                            W := Int'Max (W, Wt);
7599                         end if;
7600                      end loop;
7601
7602                   --  Width for types derived from Standard.Boolean
7603
7604                   elsif R = Standard_Boolean then
7605                      if Lo = 0 then
7606                         W := 5; -- FALSE
7607                      else
7608                         W := 4; -- TRUE
7609                      end if;
7610
7611                   --  Width for integer types
7612
7613                   elsif Is_Integer_Type (P_Type) then
7614                      T := UI_Max (abs Lo, abs Hi);
7615
7616                      W := 2;
7617                      while T >= 10 loop
7618                         W := W + 1;
7619                         T := T / 10;
7620                      end loop;
7621
7622                   --  Only remaining possibility is user declared enum type
7623
7624                   else
7625                      pragma Assert (Is_Enumeration_Type (P_Type));
7626
7627                      W := 0;
7628                      L := First_Literal (P_Type);
7629
7630                      while Present (L) loop
7631
7632                         --  Only pay attention to in range characters
7633
7634                         if Lo <= Enumeration_Pos (L)
7635                           and then Enumeration_Pos (L) <= Hi
7636                         then
7637                            --  For Width case, use decoded name
7638
7639                            if Id = Attribute_Width then
7640                               Get_Decoded_Name_String (Chars (L));
7641                               Wt := Nat (Name_Len);
7642
7643                            --  For Wide_[Wide_]Width, use encoded name, and
7644                            --  then adjust for the encoding.
7645
7646                            else
7647                               Get_Name_String (Chars (L));
7648
7649                               --  Character literals are always of length 3
7650
7651                               if Name_Buffer (1) = 'Q' then
7652                                  Wt := 3;
7653
7654                               --  Otherwise loop to adjust for upper/wide chars
7655
7656                               else
7657                                  Wt := Nat (Name_Len);
7658
7659                                  for J in 1 .. Name_Len loop
7660                                     if Name_Buffer (J) = 'U' then
7661                                        Wt := Wt - 2;
7662                                     elsif Name_Buffer (J) = 'W' then
7663                                        Wt := Wt - 4;
7664                                     end if;
7665                                  end loop;
7666                               end if;
7667                            end if;
7668
7669                            W := Int'Max (W, Wt);
7670                         end if;
7671
7672                         Next_Literal (L);
7673                      end loop;
7674                   end if;
7675
7676                   Fold_Uint (N, UI_From_Int (W), True);
7677                end;
7678             end if;
7679          end if;
7680       end Width;
7681
7682       --  The following attributes denote functions that cannot be folded
7683
7684       when Attribute_From_Any |
7685            Attribute_To_Any   |
7686            Attribute_TypeCode =>
7687          null;
7688
7689       --  The following attributes can never be folded, and furthermore we
7690       --  should not even have entered the case statement for any of these.
7691       --  Note that in some cases, the values have already been folded as
7692       --  a result of the processing in Analyze_Attribute.
7693
7694       when Attribute_Abort_Signal             |
7695            Attribute_Access                   |
7696            Attribute_Address                  |
7697            Attribute_Address_Size             |
7698            Attribute_Asm_Input                |
7699            Attribute_Asm_Output               |
7700            Attribute_Base                     |
7701            Attribute_Bit_Order                |
7702            Attribute_Bit_Position             |
7703            Attribute_Callable                 |
7704            Attribute_Caller                   |
7705            Attribute_Class                    |
7706            Attribute_Code_Address             |
7707            Attribute_Compiler_Version         |
7708            Attribute_Count                    |
7709            Attribute_Default_Bit_Order        |
7710            Attribute_Elaborated               |
7711            Attribute_Elab_Body                |
7712            Attribute_Elab_Spec                |
7713            Attribute_Enabled                  |
7714            Attribute_External_Tag             |
7715            Attribute_Fast_Math                |
7716            Attribute_First_Bit                |
7717            Attribute_Input                    |
7718            Attribute_Last_Bit                 |
7719            Attribute_Maximum_Alignment        |
7720            Attribute_Old                      |
7721            Attribute_Output                   |
7722            Attribute_Partition_ID             |
7723            Attribute_Pool_Address             |
7724            Attribute_Position                 |
7725            Attribute_Priority                 |
7726            Attribute_Read                     |
7727            Attribute_Result                   |
7728            Attribute_Storage_Pool             |
7729            Attribute_Storage_Size             |
7730            Attribute_Storage_Unit             |
7731            Attribute_Stub_Type                |
7732            Attribute_Tag                      |
7733            Attribute_Target_Name              |
7734            Attribute_Terminated               |
7735            Attribute_To_Address               |
7736            Attribute_Type_Key                 |
7737            Attribute_UET_Address              |
7738            Attribute_Unchecked_Access         |
7739            Attribute_Universal_Literal_String |
7740            Attribute_Unrestricted_Access      |
7741            Attribute_Valid                    |
7742            Attribute_Value                    |
7743            Attribute_Wchar_T_Size             |
7744            Attribute_Wide_Value               |
7745            Attribute_Wide_Wide_Value          |
7746            Attribute_Word_Size                |
7747            Attribute_Write                    =>
7748
7749          raise Program_Error;
7750       end case;
7751
7752       --  At the end of the case, one more check. If we did a static evaluation
7753       --  so that the result is now a literal, then set Is_Static_Expression
7754       --  in the constant only if the prefix type is a static subtype. For
7755       --  non-static subtypes, the folding is still OK, but not static.
7756
7757       --  An exception is the GNAT attribute Constrained_Array which is
7758       --  defined to be a static attribute in all cases.
7759
7760       if Nkind_In (N, N_Integer_Literal,
7761                       N_Real_Literal,
7762                       N_Character_Literal,
7763                       N_String_Literal)
7764         or else (Is_Entity_Name (N)
7765                   and then Ekind (Entity (N)) = E_Enumeration_Literal)
7766       then
7767          Set_Is_Static_Expression (N, Static);
7768
7769       --  If this is still an attribute reference, then it has not been folded
7770       --  and that means that its expressions are in a non-static context.
7771
7772       elsif Nkind (N) = N_Attribute_Reference then
7773          Check_Expressions;
7774
7775       --  Note: the else case not covered here are odd cases where the
7776       --  processing has transformed the attribute into something other
7777       --  than a constant. Nothing more to do in such cases.
7778
7779       else
7780          null;
7781       end if;
7782    end Eval_Attribute;
7783
7784    ------------------------------
7785    -- Is_Anonymous_Tagged_Base --
7786    ------------------------------
7787
7788    function Is_Anonymous_Tagged_Base
7789      (Anon : Entity_Id;
7790       Typ  : Entity_Id)
7791       return Boolean
7792    is
7793    begin
7794       return
7795         Anon = Current_Scope
7796           and then Is_Itype (Anon)
7797           and then Associated_Node_For_Itype (Anon) = Parent (Typ);
7798    end Is_Anonymous_Tagged_Base;
7799
7800    --------------------------------
7801    -- Name_Implies_Lvalue_Prefix --
7802    --------------------------------
7803
7804    function Name_Implies_Lvalue_Prefix (Nam : Name_Id) return Boolean is
7805       pragma Assert (Is_Attribute_Name (Nam));
7806    begin
7807       return Attribute_Name_Implies_Lvalue_Prefix (Get_Attribute_Id (Nam));
7808    end Name_Implies_Lvalue_Prefix;
7809
7810    -----------------------
7811    -- Resolve_Attribute --
7812    -----------------------
7813
7814    procedure Resolve_Attribute (N : Node_Id; Typ : Entity_Id) is
7815       Loc      : constant Source_Ptr   := Sloc (N);
7816       P        : constant Node_Id      := Prefix (N);
7817       Aname    : constant Name_Id      := Attribute_Name (N);
7818       Attr_Id  : constant Attribute_Id := Get_Attribute_Id (Aname);
7819       Btyp     : constant Entity_Id    := Base_Type (Typ);
7820       Des_Btyp : Entity_Id;
7821       Index    : Interp_Index;
7822       It       : Interp;
7823       Nom_Subt : Entity_Id;
7824
7825       procedure Accessibility_Message;
7826       --  Error, or warning within an instance, if the static accessibility
7827       --  rules of 3.10.2 are violated.
7828
7829       ---------------------------
7830       -- Accessibility_Message --
7831       ---------------------------
7832
7833       procedure Accessibility_Message is
7834          Indic : Node_Id := Parent (Parent (N));
7835
7836       begin
7837          --  In an instance, this is a runtime check, but one we
7838          --  know will fail, so generate an appropriate warning.
7839
7840          if In_Instance_Body then
7841             Error_Msg_F ("?non-local pointer cannot point to local object", P);
7842             Error_Msg_F
7843               ("\?Program_Error will be raised at run time", P);
7844             Rewrite (N,
7845               Make_Raise_Program_Error (Loc,
7846                 Reason => PE_Accessibility_Check_Failed));
7847             Set_Etype (N, Typ);
7848             return;
7849
7850          else
7851             Error_Msg_F ("non-local pointer cannot point to local object", P);
7852
7853             --  Check for case where we have a missing access definition
7854
7855             if Is_Record_Type (Current_Scope)
7856               and then
7857                 Nkind_In (Parent (N), N_Discriminant_Association,
7858                                       N_Index_Or_Discriminant_Constraint)
7859             then
7860                Indic := Parent (Parent (N));
7861                while Present (Indic)
7862                  and then Nkind (Indic) /= N_Subtype_Indication
7863                loop
7864                   Indic := Parent (Indic);
7865                end loop;
7866
7867                if Present (Indic) then
7868                   Error_Msg_NE
7869                     ("\use an access definition for" &
7870                      " the access discriminant of&",
7871                      N, Entity (Subtype_Mark (Indic)));
7872                end if;
7873             end if;
7874          end if;
7875       end Accessibility_Message;
7876
7877    --  Start of processing for Resolve_Attribute
7878
7879    begin
7880       --  If error during analysis, no point in continuing, except for array
7881       --  types, where we get better recovery by using unconstrained indexes
7882       --  than nothing at all (see Check_Array_Type).
7883
7884       if Error_Posted (N)
7885         and then Attr_Id /= Attribute_First
7886         and then Attr_Id /= Attribute_Last
7887         and then Attr_Id /= Attribute_Length
7888         and then Attr_Id /= Attribute_Range
7889       then
7890          return;
7891       end if;
7892
7893       --  If attribute was universal type, reset to actual type
7894
7895       if Etype (N) = Universal_Integer
7896         or else Etype (N) = Universal_Real
7897       then
7898          Set_Etype (N, Typ);
7899       end if;
7900
7901       --  Remaining processing depends on attribute
7902
7903       case Attr_Id is
7904
7905          ------------
7906          -- Access --
7907          ------------
7908
7909          --  For access attributes, if the prefix denotes an entity, it is
7910          --  interpreted as a name, never as a call. It may be overloaded,
7911          --  in which case resolution uses the profile of the context type.
7912          --  Otherwise prefix must be resolved.
7913
7914          when Attribute_Access
7915             | Attribute_Unchecked_Access
7916             | Attribute_Unrestricted_Access =>
7917
7918          Access_Attribute :
7919          begin
7920             if Is_Variable (P) then
7921                Note_Possible_Modification (P, Sure => False);
7922             end if;
7923
7924             --  The following comes from a query by Adam Beneschan, concerning
7925             --  improper use of universal_access in equality tests involving
7926             --  anonymous access types. Another good reason for 'Ref, but
7927             --  for now disable the test, which breaks several filed tests.
7928
7929             if Ekind (Typ) = E_Anonymous_Access_Type
7930               and then Nkind_In (Parent (N), N_Op_Eq, N_Op_Ne)
7931               and then False
7932             then
7933                Error_Msg_N ("need unique type to resolve 'Access", N);
7934                Error_Msg_N ("\qualify attribute with some access type", N);
7935             end if;
7936
7937             if Is_Entity_Name (P) then
7938                if Is_Overloaded (P) then
7939                   Get_First_Interp (P, Index, It);
7940                   while Present (It.Nam) loop
7941                      if Type_Conformant (Designated_Type (Typ), It.Nam) then
7942                         Set_Entity (P, It.Nam);
7943
7944                         --  The prefix is definitely NOT overloaded anymore at
7945                         --  this point, so we reset the Is_Overloaded flag to
7946                         --  avoid any confusion when reanalyzing the node.
7947
7948                         Set_Is_Overloaded (P, False);
7949                         Set_Is_Overloaded (N, False);
7950                         Generate_Reference (Entity (P), P);
7951                         exit;
7952                      end if;
7953
7954                      Get_Next_Interp (Index, It);
7955                   end loop;
7956
7957                --  If Prefix is a subprogram name, it is frozen by this
7958                --  reference:
7959
7960                --    If it is a type, there is nothing to resolve.
7961                --    If it is an object, complete its resolution.
7962
7963                elsif Is_Overloadable (Entity (P)) then
7964
7965                   --  Avoid insertion of freeze actions in spec expression mode
7966
7967                   if not In_Spec_Expression then
7968                      Freeze_Before (N, Entity (P));
7969                   end if;
7970
7971                elsif Is_Type (Entity (P)) then
7972                   null;
7973                else
7974                   Resolve (P);
7975                end if;
7976
7977                Error_Msg_Name_1 := Aname;
7978
7979                if not Is_Entity_Name (P) then
7980                   null;
7981
7982                elsif Is_Overloadable (Entity (P))
7983                  and then Is_Abstract_Subprogram (Entity (P))
7984                then
7985                   Error_Msg_F ("prefix of % attribute cannot be abstract", P);
7986                   Set_Etype (N, Any_Type);
7987
7988                elsif Convention (Entity (P)) = Convention_Intrinsic then
7989                   if Ekind (Entity (P)) = E_Enumeration_Literal then
7990                      Error_Msg_F
7991                        ("prefix of % attribute cannot be enumeration literal",
7992                         P);
7993                   else
7994                      Error_Msg_F
7995                        ("prefix of % attribute cannot be intrinsic", P);
7996                   end if;
7997
7998                   Set_Etype (N, Any_Type);
7999                end if;
8000
8001                --  Assignments, return statements, components of aggregates,
8002                --  generic instantiations will require convention checks if
8003                --  the type is an access to subprogram. Given that there will
8004                --  also be accessibility checks on those, this is where the
8005                --  checks can eventually be centralized ???
8006
8007                if Ekind_In (Btyp, E_Access_Subprogram_Type,
8008                                   E_Anonymous_Access_Subprogram_Type,
8009                                   E_Access_Protected_Subprogram_Type,
8010                                   E_Anonymous_Access_Protected_Subprogram_Type)
8011                then
8012                   --  Deal with convention mismatch
8013
8014                   if Convention (Designated_Type (Btyp)) /=
8015                      Convention (Entity (P))
8016                   then
8017                      Error_Msg_FE
8018                        ("subprogram & has wrong convention", P, Entity (P));
8019                      Error_Msg_FE
8020                        ("\does not match convention of access type &",
8021                         P, Btyp);
8022
8023                      if not Has_Convention_Pragma (Btyp) then
8024                         Error_Msg_FE
8025                           ("\probable missing pragma Convention for &",
8026                            P, Btyp);
8027                      end if;
8028
8029                   else
8030                      Check_Subtype_Conformant
8031                        (New_Id  => Entity (P),
8032                         Old_Id  => Designated_Type (Btyp),
8033                         Err_Loc => P);
8034                   end if;
8035
8036                   if Attr_Id = Attribute_Unchecked_Access then
8037                      Error_Msg_Name_1 := Aname;
8038                      Error_Msg_F
8039                        ("attribute% cannot be applied to a subprogram", P);
8040
8041                   elsif Aname = Name_Unrestricted_Access then
8042                      null;  --  Nothing to check
8043
8044                   --  Check the static accessibility rule of 3.10.2(32).
8045                   --  This rule also applies within the private part of an
8046                   --  instantiation. This rule does not apply to anonymous
8047                   --  access-to-subprogram types in access parameters.
8048
8049                   elsif Attr_Id = Attribute_Access
8050                     and then not In_Instance_Body
8051                     and then
8052                       (Ekind (Btyp) = E_Access_Subprogram_Type
8053                         or else Is_Local_Anonymous_Access (Btyp))
8054
8055                     and then Subprogram_Access_Level (Entity (P)) >
8056                                Type_Access_Level (Btyp)
8057                   then
8058                      Error_Msg_F
8059                        ("subprogram must not be deeper than access type", P);
8060
8061                   --  Check the restriction of 3.10.2(32) that disallows the
8062                   --  access attribute within a generic body when the ultimate
8063                   --  ancestor of the type of the attribute is declared outside
8064                   --  of the generic unit and the subprogram is declared within
8065                   --  that generic unit. This includes any such attribute that
8066                   --  occurs within the body of a generic unit that is a child
8067                   --  of the generic unit where the subprogram is declared.
8068
8069                   --  The rule also prohibits applying the attribute when the
8070                   --  access type is a generic formal access type (since the
8071                   --  level of the actual type is not known). This restriction
8072                   --  does not apply when the attribute type is an anonymous
8073                   --  access-to-subprogram type. Note that this check was
8074                   --  revised by AI-229, because the originally Ada 95 rule
8075                   --  was too lax. The original rule only applied when the
8076                   --  subprogram was declared within the body of the generic,
8077                   --  which allowed the possibility of dangling references).
8078                   --  The rule was also too strict in some case, in that it
8079                   --  didn't permit the access to be declared in the generic
8080                   --  spec, whereas the revised rule does (as long as it's not
8081                   --  a formal type).
8082
8083                   --  There are a couple of subtleties of the test for applying
8084                   --  the check that are worth noting. First, we only apply it
8085                   --  when the levels of the subprogram and access type are the
8086                   --  same (the case where the subprogram is statically deeper
8087                   --  was applied above, and the case where the type is deeper
8088                   --  is always safe). Second, we want the check to apply
8089                   --  within nested generic bodies and generic child unit
8090                   --  bodies, but not to apply to an attribute that appears in
8091                   --  the generic unit's specification. This is done by testing
8092                   --  that the attribute's innermost enclosing generic body is
8093                   --  not the same as the innermost generic body enclosing the
8094                   --  generic unit where the subprogram is declared (we don't
8095                   --  want the check to apply when the access attribute is in
8096                   --  the spec and there's some other generic body enclosing
8097                   --  generic). Finally, there's no point applying the check
8098                   --  when within an instance, because any violations will have
8099                   --  been caught by the compilation of the generic unit.
8100
8101                   --  Note that we relax this check in CodePeer mode for
8102                   --  compatibility with legacy code, since CodePeer is an
8103                   --  Ada source code analyzer, not a strict compiler.
8104                   --  ??? Note that a better approach would be to have a
8105                   --  separate switch to relax this rule, and enable this
8106                   --  switch in CodePeer mode.
8107
8108                   elsif Attr_Id = Attribute_Access
8109                     and then not CodePeer_Mode
8110                     and then not In_Instance
8111                     and then Present (Enclosing_Generic_Unit (Entity (P)))
8112                     and then Present (Enclosing_Generic_Body (N))
8113                     and then Enclosing_Generic_Body (N) /=
8114                                Enclosing_Generic_Body
8115                                  (Enclosing_Generic_Unit (Entity (P)))
8116                     and then Subprogram_Access_Level (Entity (P)) =
8117                                Type_Access_Level (Btyp)
8118                     and then Ekind (Btyp) /=
8119                                E_Anonymous_Access_Subprogram_Type
8120                     and then Ekind (Btyp) /=
8121                                E_Anonymous_Access_Protected_Subprogram_Type
8122                   then
8123                      --  The attribute type's ultimate ancestor must be
8124                      --  declared within the same generic unit as the
8125                      --  subprogram is declared. The error message is
8126                      --  specialized to say "ancestor" for the case where the
8127                      --  access type is not its own ancestor, since saying
8128                      --  simply "access type" would be very confusing.
8129
8130                      if Enclosing_Generic_Unit (Entity (P)) /=
8131                           Enclosing_Generic_Unit (Root_Type (Btyp))
8132                      then
8133                         Error_Msg_N
8134                           ("''Access attribute not allowed in generic body",
8135                            N);
8136
8137                         if Root_Type (Btyp) = Btyp then
8138                            Error_Msg_NE
8139                              ("\because " &
8140                               "access type & is declared outside " &
8141                               "generic unit (RM 3.10.2(32))", N, Btyp);
8142                         else
8143                            Error_Msg_NE
8144                              ("\because ancestor of " &
8145                               "access type & is declared outside " &
8146                               "generic unit (RM 3.10.2(32))", N, Btyp);
8147                         end if;
8148
8149                         Error_Msg_NE
8150                           ("\move ''Access to private part, or " &
8151                            "(Ada 2005) use anonymous access type instead of &",
8152                            N, Btyp);
8153
8154                      --  If the ultimate ancestor of the attribute's type is
8155                      --  a formal type, then the attribute is illegal because
8156                      --  the actual type might be declared at a higher level.
8157                      --  The error message is specialized to say "ancestor"
8158                      --  for the case where the access type is not its own
8159                      --  ancestor, since saying simply "access type" would be
8160                      --  very confusing.
8161
8162                      elsif Is_Generic_Type (Root_Type (Btyp)) then
8163                         if Root_Type (Btyp) = Btyp then
8164                            Error_Msg_N
8165                              ("access type must not be a generic formal type",
8166                               N);
8167                         else
8168                            Error_Msg_N
8169                              ("ancestor access type must not be a generic " &
8170                               "formal type", N);
8171                         end if;
8172                      end if;
8173                   end if;
8174                end if;
8175
8176                --  If this is a renaming, an inherited operation, or a
8177                --  subprogram instance, use the original entity. This may make
8178                --  the node type-inconsistent, so this transformation can only
8179                --  be done if the node will not be reanalyzed. In particular,
8180                --  if it is within a default expression, the transformation
8181                --  must be delayed until the default subprogram is created for
8182                --  it, when the enclosing subprogram is frozen.
8183
8184                if Is_Entity_Name (P)
8185                  and then Is_Overloadable (Entity (P))
8186                  and then Present (Alias (Entity (P)))
8187                  and then Expander_Active
8188                then
8189                   Rewrite (P,
8190                     New_Occurrence_Of (Alias (Entity (P)), Sloc (P)));
8191                end if;
8192
8193             elsif Nkind (P) = N_Selected_Component
8194               and then Is_Overloadable (Entity (Selector_Name (P)))
8195             then
8196                --  Protected operation. If operation is overloaded, must
8197                --  disambiguate. Prefix that denotes protected object itself
8198                --  is resolved with its own type.
8199
8200                if Attr_Id = Attribute_Unchecked_Access then
8201                   Error_Msg_Name_1 := Aname;
8202                   Error_Msg_F
8203                     ("attribute% cannot be applied to protected operation", P);
8204                end if;
8205
8206                Resolve (Prefix (P));
8207                Generate_Reference (Entity (Selector_Name (P)), P);
8208
8209             elsif Is_Overloaded (P) then
8210
8211                --  Use the designated type of the context to disambiguate
8212                --  Note that this was not strictly conformant to Ada 95,
8213                --  but was the implementation adopted by most Ada 95 compilers.
8214                --  The use of the context type to resolve an Access attribute
8215                --  reference is now mandated in AI-235 for Ada 2005.
8216
8217                declare
8218                   Index : Interp_Index;
8219                   It    : Interp;
8220
8221                begin
8222                   Get_First_Interp (P, Index, It);
8223                   while Present (It.Typ) loop
8224                      if Covers (Designated_Type (Typ), It.Typ) then
8225                         Resolve (P, It.Typ);
8226                         exit;
8227                      end if;
8228
8229                      Get_Next_Interp (Index, It);
8230                   end loop;
8231                end;
8232             else
8233                Resolve (P);
8234             end if;
8235
8236             --  X'Access is illegal if X denotes a constant and the access type
8237             --  is access-to-variable. Same for 'Unchecked_Access. The rule
8238             --  does not apply to 'Unrestricted_Access. If the reference is a
8239             --  default-initialized aggregate component for a self-referential
8240             --  type the reference is legal.
8241
8242             if not (Ekind (Btyp) = E_Access_Subprogram_Type
8243                      or else Ekind (Btyp) = E_Anonymous_Access_Subprogram_Type
8244                      or else (Is_Record_Type (Btyp)
8245                                and then
8246                                  Present (Corresponding_Remote_Type (Btyp)))
8247                      or else Ekind (Btyp) = E_Access_Protected_Subprogram_Type
8248                      or else Ekind (Btyp)
8249                                = E_Anonymous_Access_Protected_Subprogram_Type
8250                      or else Is_Access_Constant (Btyp)
8251                      or else Is_Variable (P)
8252                      or else Attr_Id = Attribute_Unrestricted_Access)
8253             then
8254                if Is_Entity_Name (P)
8255                  and then Is_Type (Entity (P))
8256                then
8257                   --  Legality of a self-reference through an access
8258                   --  attribute has been verified in Analyze_Access_Attribute.
8259
8260                   null;
8261
8262                elsif Comes_From_Source (N) then
8263                   Error_Msg_F ("access-to-variable designates constant", P);
8264                end if;
8265             end if;
8266
8267             Des_Btyp := Designated_Type (Btyp);
8268
8269             if Ada_Version >= Ada_2005
8270               and then Is_Incomplete_Type (Des_Btyp)
8271             then
8272                --  Ada 2005 (AI-412): If the (sub)type is a limited view of an
8273                --  imported entity, and the non-limited view is visible, make
8274                --  use of it. If it is an incomplete subtype, use the base type
8275                --  in any case.
8276
8277                if From_With_Type (Des_Btyp)
8278                  and then Present (Non_Limited_View (Des_Btyp))
8279                then
8280                   Des_Btyp := Non_Limited_View (Des_Btyp);
8281
8282                elsif Ekind (Des_Btyp) = E_Incomplete_Subtype then
8283                   Des_Btyp := Etype (Des_Btyp);
8284                end if;
8285             end if;
8286
8287             if (Attr_Id = Attribute_Access
8288                   or else
8289                 Attr_Id = Attribute_Unchecked_Access)
8290               and then (Ekind (Btyp) = E_General_Access_Type
8291                           or else Ekind (Btyp) = E_Anonymous_Access_Type)
8292             then
8293                --  Ada 2005 (AI-230): Check the accessibility of anonymous
8294                --  access types for stand-alone objects, record and array
8295                --  components, and return objects. For a component definition
8296                --  the level is the same of the enclosing composite type.
8297
8298                if Ada_Version >= Ada_2005
8299                  and then Is_Local_Anonymous_Access (Btyp)
8300                  and then Object_Access_Level (P) > Type_Access_Level (Btyp)
8301                  and then Attr_Id = Attribute_Access
8302                then
8303                   --  In an instance, this is a runtime check, but one we
8304                   --  know will fail, so generate an appropriate warning.
8305
8306                   if In_Instance_Body then
8307                      Error_Msg_F
8308                        ("?non-local pointer cannot point to local object", P);
8309                      Error_Msg_F
8310                        ("\?Program_Error will be raised at run time", P);
8311                      Rewrite (N,
8312                        Make_Raise_Program_Error (Loc,
8313                          Reason => PE_Accessibility_Check_Failed));
8314                      Set_Etype (N, Typ);
8315
8316                   else
8317                      Error_Msg_F
8318                        ("non-local pointer cannot point to local object", P);
8319                   end if;
8320                end if;
8321
8322                if Is_Dependent_Component_Of_Mutable_Object (P) then
8323                   Error_Msg_F
8324                     ("illegal attribute for discriminant-dependent component",
8325                      P);
8326                end if;
8327
8328                --  Check static matching rule of 3.10.2(27). Nominal subtype
8329                --  of the prefix must statically match the designated type.
8330
8331                Nom_Subt := Etype (P);
8332
8333                if Is_Constr_Subt_For_U_Nominal (Nom_Subt) then
8334                   Nom_Subt := Base_Type (Nom_Subt);
8335                end if;
8336
8337                if Is_Tagged_Type (Designated_Type (Typ)) then
8338
8339                   --  If the attribute is in the context of an access
8340                   --  parameter, then the prefix is allowed to be of the
8341                   --  class-wide type (by AI-127).
8342
8343                   if Ekind (Typ) = E_Anonymous_Access_Type then
8344                      if not Covers (Designated_Type (Typ), Nom_Subt)
8345                        and then not Covers (Nom_Subt, Designated_Type (Typ))
8346                      then
8347                         declare
8348                            Desig : Entity_Id;
8349
8350                         begin
8351                            Desig := Designated_Type (Typ);
8352
8353                            if Is_Class_Wide_Type (Desig) then
8354                               Desig := Etype (Desig);
8355                            end if;
8356
8357                            if Is_Anonymous_Tagged_Base (Nom_Subt, Desig) then
8358                               null;
8359
8360                            else
8361                               Error_Msg_FE
8362                                 ("type of prefix: & not compatible",
8363                                   P, Nom_Subt);
8364                               Error_Msg_FE
8365                                 ("\with &, the expected designated type",
8366                                   P, Designated_Type (Typ));
8367                            end if;
8368                         end;
8369                      end if;
8370
8371                   elsif not Covers (Designated_Type (Typ), Nom_Subt)
8372                     or else
8373                       (not Is_Class_Wide_Type (Designated_Type (Typ))
8374                         and then Is_Class_Wide_Type (Nom_Subt))
8375                   then
8376                      Error_Msg_FE
8377                        ("type of prefix: & is not covered", P, Nom_Subt);
8378                      Error_Msg_FE
8379                        ("\by &, the expected designated type" &
8380                            " (RM 3.10.2 (27))", P, Designated_Type (Typ));
8381                   end if;
8382
8383                   if Is_Class_Wide_Type (Designated_Type (Typ))
8384                     and then Has_Discriminants (Etype (Designated_Type (Typ)))
8385                     and then Is_Constrained (Etype (Designated_Type (Typ)))
8386                     and then Designated_Type (Typ) /= Nom_Subt
8387                   then
8388                      Apply_Discriminant_Check
8389                        (N, Etype (Designated_Type (Typ)));
8390                   end if;
8391
8392                --  Ada 2005 (AI-363): Require static matching when designated
8393                --  type has discriminants and a constrained partial view, since
8394                --  in general objects of such types are mutable, so we can't
8395                --  allow the access value to designate a constrained object
8396                --  (because access values must be assumed to designate mutable
8397                --  objects when designated type does not impose a constraint).
8398
8399                elsif Subtypes_Statically_Match (Des_Btyp, Nom_Subt) then
8400                   null;
8401
8402                elsif Has_Discriminants (Designated_Type (Typ))
8403                  and then not Is_Constrained (Des_Btyp)
8404                  and then
8405                    (Ada_Version < Ada_2005
8406                      or else
8407                        not Has_Constrained_Partial_View
8408                              (Designated_Type (Base_Type (Typ))))
8409                then
8410                   null;
8411
8412                else
8413                   Error_Msg_F
8414                     ("object subtype must statically match "
8415                      & "designated subtype", P);
8416
8417                   if Is_Entity_Name (P)
8418                     and then Is_Array_Type (Designated_Type (Typ))
8419                   then
8420                      declare
8421                         D : constant Node_Id := Declaration_Node (Entity (P));
8422
8423                      begin
8424                         Error_Msg_N ("aliased object has explicit bounds?",
8425                           D);
8426                         Error_Msg_N ("\declare without bounds"
8427                           & " (and with explicit initialization)?", D);
8428                         Error_Msg_N ("\for use with unconstrained access?", D);
8429                      end;
8430                   end if;
8431                end if;
8432
8433                --  Check the static accessibility rule of 3.10.2(28).
8434                --  Note that this check is not performed for the
8435                --  case of an anonymous access type, since the access
8436                --  attribute is always legal in such a context.
8437
8438                if Attr_Id /= Attribute_Unchecked_Access
8439                  and then Object_Access_Level (P) > Type_Access_Level (Btyp)
8440                  and then Ekind (Btyp) = E_General_Access_Type
8441                then
8442                   Accessibility_Message;
8443                   return;
8444                end if;
8445             end if;
8446
8447             if Ekind_In (Btyp, E_Access_Protected_Subprogram_Type,
8448                                E_Anonymous_Access_Protected_Subprogram_Type)
8449             then
8450                if Is_Entity_Name (P)
8451                  and then not Is_Protected_Type (Scope (Entity (P)))
8452                then
8453                   Error_Msg_F ("context requires a protected subprogram", P);
8454
8455                --  Check accessibility of protected object against that of the
8456                --  access type, but only on user code, because the expander
8457                --  creates access references for handlers. If the context is an
8458                --  anonymous_access_to_protected, there are no accessibility
8459                --  checks either. Omit check entirely for Unrestricted_Access.
8460
8461                elsif Object_Access_Level (P) > Type_Access_Level (Btyp)
8462                  and then Comes_From_Source (N)
8463                  and then Ekind (Btyp) = E_Access_Protected_Subprogram_Type
8464                  and then Attr_Id /= Attribute_Unrestricted_Access
8465                then
8466                   Accessibility_Message;
8467                   return;
8468                end if;
8469
8470             elsif Ekind_In (Btyp, E_Access_Subprogram_Type,
8471                                   E_Anonymous_Access_Subprogram_Type)
8472               and then Ekind (Etype (N)) = E_Access_Protected_Subprogram_Type
8473             then
8474                Error_Msg_F ("context requires a non-protected subprogram", P);
8475             end if;
8476
8477             --  The context cannot be a pool-specific type, but this is a
8478             --  legality rule, not a resolution rule, so it must be checked
8479             --  separately, after possibly disambiguation (see AI-245).
8480
8481             if Ekind (Btyp) = E_Access_Type
8482               and then Attr_Id /= Attribute_Unrestricted_Access
8483             then
8484                Wrong_Type (N, Typ);
8485             end if;
8486
8487             --  The context may be a constrained access type (however ill-
8488             --  advised such subtypes might be) so in order to generate a
8489             --  constraint check when needed set the type of the attribute
8490             --  reference to the base type of the context.
8491
8492             Set_Etype (N, Btyp);
8493
8494             --  Check for incorrect atomic/volatile reference (RM C.6(12))
8495
8496             if Attr_Id /= Attribute_Unrestricted_Access then
8497                if Is_Atomic_Object (P)
8498                  and then not Is_Atomic (Designated_Type (Typ))
8499                then
8500                   Error_Msg_F
8501                     ("access to atomic object cannot yield access-to-" &
8502                      "non-atomic type", P);
8503
8504                elsif Is_Volatile_Object (P)
8505                  and then not Is_Volatile (Designated_Type (Typ))
8506                then
8507                   Error_Msg_F
8508                     ("access to volatile object cannot yield access-to-" &
8509                      "non-volatile type", P);
8510                end if;
8511             end if;
8512
8513             if Is_Entity_Name (P) then
8514                Set_Address_Taken (Entity (P));
8515             end if;
8516          end Access_Attribute;
8517
8518          -------------
8519          -- Address --
8520          -------------
8521
8522          --  Deal with resolving the type for Address attribute, overloading
8523          --  is not permitted here, since there is no context to resolve it.
8524
8525          when Attribute_Address | Attribute_Code_Address =>
8526          Address_Attribute : begin
8527
8528             --  To be safe, assume that if the address of a variable is taken,
8529             --  it may be modified via this address, so note modification.
8530
8531             if Is_Variable (P) then
8532                Note_Possible_Modification (P, Sure => False);
8533             end if;
8534
8535             if Nkind (P) in N_Subexpr
8536               and then Is_Overloaded (P)
8537             then
8538                Get_First_Interp (P, Index, It);
8539                Get_Next_Interp (Index, It);
8540
8541                if Present (It.Nam) then
8542                   Error_Msg_Name_1 := Aname;
8543                   Error_Msg_F
8544                     ("prefix of % attribute cannot be overloaded", P);
8545                end if;
8546             end if;
8547
8548             if not Is_Entity_Name (P)
8549               or else not Is_Overloadable (Entity (P))
8550             then
8551                if not Is_Task_Type (Etype (P))
8552                  or else Nkind (P) = N_Explicit_Dereference
8553                then
8554                   Resolve (P);
8555                end if;
8556             end if;
8557
8558             --  If this is the name of a derived subprogram, or that of a
8559             --  generic actual, the address is that of the original entity.
8560
8561             if Is_Entity_Name (P)
8562               and then Is_Overloadable (Entity (P))
8563               and then Present (Alias (Entity (P)))
8564             then
8565                Rewrite (P,
8566                  New_Occurrence_Of (Alias (Entity (P)), Sloc (P)));
8567             end if;
8568
8569             if Is_Entity_Name (P) then
8570                Set_Address_Taken (Entity (P));
8571             end if;
8572
8573             if Nkind (P) = N_Slice then
8574
8575                --  Arr (X .. Y)'address is identical to Arr (X)'address,
8576                --  even if the array is packed and the slice itself is not
8577                --  addressable. Transform the prefix into an indexed component.
8578
8579                --  Note that the transformation is safe only if we know that
8580                --  the slice is non-null. That is because a null slice can have
8581                --  an out of bounds index value.
8582
8583                --  Right now, gigi blows up if given 'Address on a slice as a
8584                --  result of some incorrect freeze nodes generated by the front
8585                --  end, and this covers up that bug in one case, but the bug is
8586                --  likely still there in the cases not handled by this code ???
8587
8588                --  It's not clear what 'Address *should* return for a null
8589                --  slice with out of bounds indexes, this might be worth an ARG
8590                --  discussion ???
8591
8592                --  One approach would be to do a length check unconditionally,
8593                --  and then do the transformation below unconditionally, but
8594                --  analyze with checks off, avoiding the problem of the out of
8595                --  bounds index. This approach would interpret the address of
8596                --  an out of bounds null slice as being the address where the
8597                --  array element would be if there was one, which is probably
8598                --  as reasonable an interpretation as any ???
8599
8600                declare
8601                   Loc : constant Source_Ptr := Sloc (P);
8602                   D   : constant Node_Id := Discrete_Range (P);
8603                   Lo  : Node_Id;
8604
8605                begin
8606                   if Is_Entity_Name (D)
8607                     and then
8608                       Not_Null_Range
8609                         (Type_Low_Bound (Entity (D)),
8610                          Type_High_Bound (Entity (D)))
8611                   then
8612                      Lo :=
8613                        Make_Attribute_Reference (Loc,
8614                           Prefix => (New_Occurrence_Of (Entity (D), Loc)),
8615                           Attribute_Name => Name_First);
8616
8617                   elsif Nkind (D) = N_Range
8618                     and then Not_Null_Range (Low_Bound (D), High_Bound (D))
8619                   then
8620                      Lo := Low_Bound (D);
8621
8622                   else
8623                      Lo := Empty;
8624                   end if;
8625
8626                   if Present (Lo) then
8627                      Rewrite (P,
8628                         Make_Indexed_Component (Loc,
8629                            Prefix =>  Relocate_Node (Prefix (P)),
8630                            Expressions => New_List (Lo)));
8631
8632                      Analyze_And_Resolve (P);
8633                   end if;
8634                end;
8635             end if;
8636          end Address_Attribute;
8637
8638          ---------------
8639          -- AST_Entry --
8640          ---------------
8641
8642          --  Prefix of the AST_Entry attribute is an entry name which must
8643          --  not be resolved, since this is definitely not an entry call.
8644
8645          when Attribute_AST_Entry =>
8646             null;
8647
8648          ------------------
8649          -- Body_Version --
8650          ------------------
8651
8652          --  Prefix of Body_Version attribute can be a subprogram name which
8653          --  must not be resolved, since this is not a call.
8654
8655          when Attribute_Body_Version =>
8656             null;
8657
8658          ------------
8659          -- Caller --
8660          ------------
8661
8662          --  Prefix of Caller attribute is an entry name which must not
8663          --  be resolved, since this is definitely not an entry call.
8664
8665          when Attribute_Caller =>
8666             null;
8667
8668          ------------------
8669          -- Code_Address --
8670          ------------------
8671
8672          --  Shares processing with Address attribute
8673
8674          -----------
8675          -- Count --
8676          -----------
8677
8678          --  If the prefix of the Count attribute is an entry name it must not
8679          --  be resolved, since this is definitely not an entry call. However,
8680          --  if it is an element of an entry family, the index itself may
8681          --  have to be resolved because it can be a general expression.
8682
8683          when Attribute_Count =>
8684             if Nkind (P) = N_Indexed_Component
8685               and then Is_Entity_Name (Prefix (P))
8686             then
8687                declare
8688                   Indx : constant Node_Id   := First (Expressions (P));
8689                   Fam  : constant Entity_Id := Entity (Prefix (P));
8690                begin
8691                   Resolve (Indx, Entry_Index_Type (Fam));
8692                   Apply_Range_Check (Indx, Entry_Index_Type (Fam));
8693                end;
8694             end if;
8695
8696          ----------------
8697          -- Elaborated --
8698          ----------------
8699
8700          --  Prefix of the Elaborated attribute is a subprogram name which
8701          --  must not be resolved, since this is definitely not a call. Note
8702          --  that it is a library unit, so it cannot be overloaded here.
8703
8704          when Attribute_Elaborated =>
8705             null;
8706
8707          -------------
8708          -- Enabled --
8709          -------------
8710
8711          --  Prefix of Enabled attribute is a check name, which must be treated
8712          --  specially and not touched by Resolve.
8713
8714          when Attribute_Enabled =>
8715             null;
8716
8717          --------------------
8718          -- Mechanism_Code --
8719          --------------------
8720
8721          --  Prefix of the Mechanism_Code attribute is a function name
8722          --  which must not be resolved. Should we check for overloaded ???
8723
8724          when Attribute_Mechanism_Code =>
8725             null;
8726
8727          ------------------
8728          -- Partition_ID --
8729          ------------------
8730
8731          --  Most processing is done in sem_dist, after determining the
8732          --  context type. Node is rewritten as a conversion to a runtime call.
8733
8734          when Attribute_Partition_ID =>
8735             Process_Partition_Id (N);
8736             return;
8737
8738          ------------------
8739          -- Pool_Address --
8740          ------------------
8741
8742          when Attribute_Pool_Address =>
8743             Resolve (P);
8744
8745          -----------
8746          -- Range --
8747          -----------
8748
8749          --  We replace the Range attribute node with a range expression whose
8750          --  bounds are the 'First and 'Last attributes applied to the same
8751          --  prefix. The reason that we do this transformation here instead of
8752          --  in the expander is that it simplifies other parts of the semantic
8753          --  analysis which assume that the Range has been replaced; thus it
8754          --  must be done even when in semantic-only mode (note that the RM
8755          --  specifically mentions this equivalence, we take care that the
8756          --  prefix is only evaluated once).
8757
8758          when Attribute_Range => Range_Attribute :
8759             declare
8760                LB   : Node_Id;
8761                HB   : Node_Id;
8762
8763             begin
8764                if not Is_Entity_Name (P)
8765                  or else not Is_Type (Entity (P))
8766                then
8767                   Resolve (P);
8768                end if;
8769
8770                HB :=
8771                  Make_Attribute_Reference (Loc,
8772                    Prefix         =>
8773                      Duplicate_Subexpr (P, Name_Req => True),
8774                    Attribute_Name => Name_Last,
8775                    Expressions    => Expressions (N));
8776
8777                LB :=
8778                  Make_Attribute_Reference (Loc,
8779                    Prefix         => P,
8780                    Attribute_Name => Name_First,
8781                    Expressions    => Expressions (N));
8782
8783                --  If the original was marked as Must_Not_Freeze (see code
8784                --  in Sem_Ch3.Make_Index), then make sure the rewriting
8785                --  does not freeze either.
8786
8787                if Must_Not_Freeze (N) then
8788                   Set_Must_Not_Freeze (HB);
8789                   Set_Must_Not_Freeze (LB);
8790                   Set_Must_Not_Freeze (Prefix (HB));
8791                   Set_Must_Not_Freeze (Prefix (LB));
8792                end if;
8793
8794                if Raises_Constraint_Error (Prefix (N)) then
8795
8796                   --  Preserve Sloc of prefix in the new bounds, so that
8797                   --  the posted warning can be removed if we are within
8798                   --  unreachable code.
8799
8800                   Set_Sloc (LB, Sloc (Prefix (N)));
8801                   Set_Sloc (HB, Sloc (Prefix (N)));
8802                end if;
8803
8804                Rewrite (N, Make_Range (Loc, LB, HB));
8805                Analyze_And_Resolve (N, Typ);
8806
8807                --  Ensure that the expanded range does not have side effects
8808
8809                Force_Evaluation (LB);
8810                Force_Evaluation (HB);
8811
8812                --  Normally after resolving attribute nodes, Eval_Attribute
8813                --  is called to do any possible static evaluation of the node.
8814                --  However, here since the Range attribute has just been
8815                --  transformed into a range expression it is no longer an
8816                --  attribute node and therefore the call needs to be avoided
8817                --  and is accomplished by simply returning from the procedure.
8818
8819                return;
8820             end Range_Attribute;
8821
8822          ------------
8823          -- Result --
8824          ------------
8825
8826          --  We will only come here during the prescan of a spec expression
8827          --  containing a Result attribute. In that case the proper Etype has
8828          --  already been set, and nothing more needs to be done here.
8829
8830          when Attribute_Result =>
8831             null;
8832
8833          -----------------
8834          -- UET_Address --
8835          -----------------
8836
8837          --  Prefix must not be resolved in this case, since it is not a
8838          --  real entity reference. No action of any kind is require!
8839
8840          when Attribute_UET_Address =>
8841             return;
8842
8843          ----------------------
8844          -- Unchecked_Access --
8845          ----------------------
8846
8847          --  Processing is shared with Access
8848
8849          -------------------------
8850          -- Unrestricted_Access --
8851          -------------------------
8852
8853          --  Processing is shared with Access
8854
8855          ---------
8856          -- Val --
8857          ---------
8858
8859          --  Apply range check. Note that we did not do this during the
8860          --  analysis phase, since we wanted Eval_Attribute to have a
8861          --  chance at finding an illegal out of range value.
8862
8863          when Attribute_Val =>
8864
8865             --  Note that we do our own Eval_Attribute call here rather than
8866             --  use the common one, because we need to do processing after
8867             --  the call, as per above comment.
8868
8869             Eval_Attribute (N);
8870
8871             --  Eval_Attribute may replace the node with a raise CE, or
8872             --  fold it to a constant. Obviously we only apply a scalar
8873             --  range check if this did not happen!
8874
8875             if Nkind (N) = N_Attribute_Reference
8876               and then Attribute_Name (N) = Name_Val
8877             then
8878                Apply_Scalar_Range_Check (First (Expressions (N)), Btyp);
8879             end if;
8880
8881             return;
8882
8883          -------------
8884          -- Version --
8885          -------------
8886
8887          --  Prefix of Version attribute can be a subprogram name which
8888          --  must not be resolved, since this is not a call.
8889
8890          when Attribute_Version =>
8891             null;
8892
8893          ----------------------
8894          -- Other Attributes --
8895          ----------------------
8896
8897          --  For other attributes, resolve prefix unless it is a type. If
8898          --  the attribute reference itself is a type name ('Base and 'Class)
8899          --  then this is only legal within a task or protected record.
8900
8901          when others =>
8902             if not Is_Entity_Name (P)
8903               or else not Is_Type (Entity (P))
8904             then
8905                Resolve (P);
8906             end if;
8907
8908             --  If the attribute reference itself is a type name ('Base,
8909             --  'Class) then this is only legal within a task or protected
8910             --  record. What is this all about ???
8911
8912             if Is_Entity_Name (N)
8913               and then Is_Type (Entity (N))
8914             then
8915                if Is_Concurrent_Type (Entity (N))
8916                  and then In_Open_Scopes (Entity (P))
8917                then
8918                   null;
8919                else
8920                   Error_Msg_N
8921                     ("invalid use of subtype name in expression or call", N);
8922                end if;
8923             end if;
8924
8925             --  For attributes whose argument may be a string, complete
8926             --  resolution of argument now. This avoids premature expansion
8927             --  (and the creation of transient scopes) before the attribute
8928             --  reference is resolved.
8929
8930             case Attr_Id is
8931                when Attribute_Value =>
8932                   Resolve (First (Expressions (N)), Standard_String);
8933
8934                when Attribute_Wide_Value =>
8935                   Resolve (First (Expressions (N)), Standard_Wide_String);
8936
8937                when Attribute_Wide_Wide_Value =>
8938                   Resolve (First (Expressions (N)), Standard_Wide_Wide_String);
8939
8940                when others => null;
8941             end case;
8942
8943             --  If the prefix of the attribute is a class-wide type then it
8944             --  will be expanded into a dispatching call to a predefined
8945             --  primitive. Therefore we must check for potential violation
8946             --  of such restriction.
8947
8948             if Is_Class_Wide_Type (Etype (P)) then
8949                Check_Restriction (No_Dispatching_Calls, N);
8950             end if;
8951       end case;
8952
8953       --  Normally the Freezing is done by Resolve but sometimes the Prefix
8954       --  is not resolved, in which case the freezing must be done now.
8955
8956       Freeze_Expression (P);
8957
8958       --  Finally perform static evaluation on the attribute reference
8959
8960       Eval_Attribute (N);
8961    end Resolve_Attribute;
8962
8963    --------------------------------
8964    -- Stream_Attribute_Available --
8965    --------------------------------
8966
8967    function Stream_Attribute_Available
8968      (Typ          : Entity_Id;
8969       Nam          : TSS_Name_Type;
8970       Partial_View : Node_Id := Empty) return Boolean
8971    is
8972       Etyp : Entity_Id := Typ;
8973
8974    --  Start of processing for Stream_Attribute_Available
8975
8976    begin
8977       --  We need some comments in this body ???
8978
8979       if Has_Stream_Attribute_Definition (Typ, Nam) then
8980          return True;
8981       end if;
8982
8983       if Is_Class_Wide_Type (Typ) then
8984          return not Is_Limited_Type (Typ)
8985            or else Stream_Attribute_Available (Etype (Typ), Nam);
8986       end if;
8987
8988       if Nam = TSS_Stream_Input
8989         and then Is_Abstract_Type (Typ)
8990         and then not Is_Class_Wide_Type (Typ)
8991       then
8992          return False;
8993       end if;
8994
8995       if not (Is_Limited_Type (Typ)
8996         or else (Present (Partial_View)
8997                    and then Is_Limited_Type (Partial_View)))
8998       then
8999          return True;
9000       end if;
9001
9002       --  In Ada 2005, Input can invoke Read, and Output can invoke Write
9003
9004       if Nam = TSS_Stream_Input
9005         and then Ada_Version >= Ada_2005
9006         and then Stream_Attribute_Available (Etyp, TSS_Stream_Read)
9007       then
9008          return True;
9009
9010       elsif Nam = TSS_Stream_Output
9011         and then Ada_Version >= Ada_2005
9012         and then Stream_Attribute_Available (Etyp, TSS_Stream_Write)
9013       then
9014          return True;
9015       end if;
9016
9017       --  Case of Read and Write: check for attribute definition clause that
9018       --  applies to an ancestor type.
9019
9020       while Etype (Etyp) /= Etyp loop
9021          Etyp := Etype (Etyp);
9022
9023          if Has_Stream_Attribute_Definition (Etyp, Nam) then
9024             return True;
9025          end if;
9026       end loop;
9027
9028       if Ada_Version < Ada_2005 then
9029
9030          --  In Ada 95 mode, also consider a non-visible definition
9031
9032          declare
9033             Btyp : constant Entity_Id := Implementation_Base_Type (Typ);
9034          begin
9035             return Btyp /= Typ
9036               and then Stream_Attribute_Available
9037                          (Btyp, Nam, Partial_View => Typ);
9038          end;
9039       end if;
9040
9041       return False;
9042    end Stream_Attribute_Available;
9043
9044 end Sem_Attr;