[multiple changes]
[gcc.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-2003, 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 2, 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 COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
21 -- --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 -- --
25 ------------------------------------------------------------------------------
26
27 with Ada.Characters.Latin_1; use Ada.Characters.Latin_1;
28
29 with Atree; use Atree;
30 with Checks; use Checks;
31 with Einfo; use Einfo;
32 with Errout; use Errout;
33 with Eval_Fat;
34 with Exp_Tss; use Exp_Tss;
35 with Exp_Util; use Exp_Util;
36 with Expander; use Expander;
37 with Freeze; use Freeze;
38 with Lib; use Lib;
39 with Lib.Xref; use Lib.Xref;
40 with Namet; use Namet;
41 with Nlists; use Nlists;
42 with Nmake; use Nmake;
43 with Opt; use Opt;
44 with Restrict; use Restrict;
45 with Rtsfind; use Rtsfind;
46 with Sdefault; use Sdefault;
47 with Sem; use Sem;
48 with Sem_Cat; use Sem_Cat;
49 with Sem_Ch6; use Sem_Ch6;
50 with Sem_Ch8; use Sem_Ch8;
51 with Sem_Dist; use Sem_Dist;
52 with Sem_Eval; use Sem_Eval;
53 with Sem_Res; use Sem_Res;
54 with Sem_Type; use Sem_Type;
55 with Sem_Util; use Sem_Util;
56 with Stand; use Stand;
57 with Sinfo; use Sinfo;
58 with Sinput; use Sinput;
59 with Snames; use Snames;
60 with Stand;
61 with Stringt; use Stringt;
62 with Targparm; use Targparm;
63 with Ttypes; use Ttypes;
64 with Ttypef; use Ttypef;
65 with Tbuild; use Tbuild;
66 with Uintp; use Uintp;
67 with Urealp; use Urealp;
68 with Widechar; use Widechar;
69
70 package body Sem_Attr is
71
72 True_Value : constant Uint := Uint_1;
73 False_Value : constant Uint := Uint_0;
74 -- Synonyms to be used when these constants are used as Boolean values
75
76 Bad_Attribute : exception;
77 -- Exception raised if an error is detected during attribute processing,
78 -- used so that we can abandon the processing so we don't run into
79 -- trouble with cascaded errors.
80
81 -- The following array is the list of attributes defined in the Ada 83 RM
82
83 Attribute_83 : constant Attribute_Class_Array := Attribute_Class_Array'(
84 Attribute_Address |
85 Attribute_Aft |
86 Attribute_Alignment |
87 Attribute_Base |
88 Attribute_Callable |
89 Attribute_Constrained |
90 Attribute_Count |
91 Attribute_Delta |
92 Attribute_Digits |
93 Attribute_Emax |
94 Attribute_Epsilon |
95 Attribute_First |
96 Attribute_First_Bit |
97 Attribute_Fore |
98 Attribute_Image |
99 Attribute_Large |
100 Attribute_Last |
101 Attribute_Last_Bit |
102 Attribute_Leading_Part |
103 Attribute_Length |
104 Attribute_Machine_Emax |
105 Attribute_Machine_Emin |
106 Attribute_Machine_Mantissa |
107 Attribute_Machine_Overflows |
108 Attribute_Machine_Radix |
109 Attribute_Machine_Rounds |
110 Attribute_Mantissa |
111 Attribute_Pos |
112 Attribute_Position |
113 Attribute_Pred |
114 Attribute_Range |
115 Attribute_Safe_Emax |
116 Attribute_Safe_Large |
117 Attribute_Safe_Small |
118 Attribute_Size |
119 Attribute_Small |
120 Attribute_Storage_Size |
121 Attribute_Succ |
122 Attribute_Terminated |
123 Attribute_Val |
124 Attribute_Value |
125 Attribute_Width => True,
126 others => False);
127
128 -----------------------
129 -- Local_Subprograms --
130 -----------------------
131
132 procedure Eval_Attribute (N : Node_Id);
133 -- Performs compile time evaluation of attributes where possible, leaving
134 -- the Is_Static_Expression/Raises_Constraint_Error flags appropriately
135 -- set, and replacing the node with a literal node if the value can be
136 -- computed at compile time. All static attribute references are folded,
137 -- as well as a number of cases of non-static attributes that can always
138 -- be computed at compile time (e.g. floating-point model attributes that
139 -- are applied to non-static subtypes). Of course in such cases, the
140 -- Is_Static_Expression flag will not be set on the resulting literal.
141 -- Note that the only required action of this procedure is to catch the
142 -- static expression cases as described in the RM. Folding of other cases
143 -- is done where convenient, but some additional non-static folding is in
144 -- N_Expand_Attribute_Reference in cases where this is more convenient.
145
146 function Is_Anonymous_Tagged_Base
147 (Anon : Entity_Id;
148 Typ : Entity_Id)
149 return Boolean;
150 -- For derived tagged types that constrain parent discriminants we build
151 -- an anonymous unconstrained base type. We need to recognize the relation
152 -- between the two when analyzing an access attribute for a constrained
153 -- component, before the full declaration for Typ has been analyzed, and
154 -- where therefore the prefix of the attribute does not match the enclosing
155 -- scope.
156
157 -----------------------
158 -- Analyze_Attribute --
159 -----------------------
160
161 procedure Analyze_Attribute (N : Node_Id) is
162 Loc : constant Source_Ptr := Sloc (N);
163 Aname : constant Name_Id := Attribute_Name (N);
164 P : constant Node_Id := Prefix (N);
165 Exprs : constant List_Id := Expressions (N);
166 Attr_Id : constant Attribute_Id := Get_Attribute_Id (Aname);
167 E1 : Node_Id;
168 E2 : Node_Id;
169
170 P_Type : Entity_Id;
171 -- Type of prefix after analysis
172
173 P_Base_Type : Entity_Id;
174 -- Base type of prefix after analysis
175
176 -----------------------
177 -- Local Subprograms --
178 -----------------------
179
180 procedure Analyze_Access_Attribute;
181 -- Used for Access, Unchecked_Access, Unrestricted_Access attributes.
182 -- Internally, Id distinguishes which of the three cases is involved.
183
184 procedure Check_Array_Or_Scalar_Type;
185 -- Common procedure used by First, Last, Range attribute to check
186 -- that the prefix is a constrained array or scalar type, or a name
187 -- of an array object, and that an argument appears only if appropriate
188 -- (i.e. only in the array case).
189
190 procedure Check_Array_Type;
191 -- Common semantic checks for all array attributes. Checks that the
192 -- prefix is a constrained array type or the name of an array object.
193 -- The error message for non-arrays is specialized appropriately.
194
195 procedure Check_Asm_Attribute;
196 -- Common semantic checks for Asm_Input and Asm_Output attributes
197
198 procedure Check_Component;
199 -- Common processing for Bit_Position, First_Bit, Last_Bit, and
200 -- Position. Checks prefix is an appropriate selected component.
201
202 procedure Check_Decimal_Fixed_Point_Type;
203 -- Check that prefix of attribute N is a decimal fixed-point type
204
205 procedure Check_Dereference;
206 -- If the prefix of attribute is an object of an access type, then
207 -- introduce an explicit deference, and adjust P_Type accordingly.
208
209 procedure Check_Discrete_Type;
210 -- Verify that prefix of attribute N is a discrete type
211
212 procedure Check_E0;
213 -- Check that no attribute arguments are present
214
215 procedure Check_Either_E0_Or_E1;
216 -- Check that there are zero or one attribute arguments present
217
218 procedure Check_E1;
219 -- Check that exactly one attribute argument is present
220
221 procedure Check_E2;
222 -- Check that two attribute arguments are present
223
224 procedure Check_Enum_Image;
225 -- If the prefix type is an enumeration type, set all its literals
226 -- as referenced, since the image function could possibly end up
227 -- referencing any of the literals indirectly.
228
229 procedure Check_Fixed_Point_Type;
230 -- Verify that prefix of attribute N is a fixed type
231
232 procedure Check_Fixed_Point_Type_0;
233 -- Verify that prefix of attribute N is a fixed type and that
234 -- no attribute expressions are present
235
236 procedure Check_Floating_Point_Type;
237 -- Verify that prefix of attribute N is a float type
238
239 procedure Check_Floating_Point_Type_0;
240 -- Verify that prefix of attribute N is a float type and that
241 -- no attribute expressions are present
242
243 procedure Check_Floating_Point_Type_1;
244 -- Verify that prefix of attribute N is a float type and that
245 -- exactly one attribute expression is present
246
247 procedure Check_Floating_Point_Type_2;
248 -- Verify that prefix of attribute N is a float type and that
249 -- two attribute expressions are present
250
251 procedure Legal_Formal_Attribute;
252 -- Common processing for attributes Definite, and Has_Discriminants
253
254 procedure Check_Integer_Type;
255 -- Verify that prefix of attribute N is an integer type
256
257 procedure Check_Library_Unit;
258 -- Verify that prefix of attribute N is a library unit
259
260 procedure Check_Not_Incomplete_Type;
261 -- Check that P (the prefix of the attribute) is not an incomplete
262 -- type or a private type for which no full view has been given.
263
264 procedure Check_Object_Reference (P : Node_Id);
265 -- Check that P (the prefix of the attribute) is an object reference
266
267 procedure Check_Program_Unit;
268 -- Verify that prefix of attribute N is a program unit
269
270 procedure Check_Real_Type;
271 -- Verify that prefix of attribute N is fixed or float type
272
273 procedure Check_Scalar_Type;
274 -- Verify that prefix of attribute N is a scalar type
275
276 procedure Check_Standard_Prefix;
277 -- Verify that prefix of attribute N is package Standard
278
279 procedure Check_Stream_Attribute (Nam : TSS_Name_Type);
280 -- Validity checking for stream attribute. Nam is the TSS name of the
281 -- corresponding possible defined attribute function (e.g. for the
282 -- Read attribute, Nam will be TSS_Stream_Read).
283
284 procedure Check_Task_Prefix;
285 -- Verify that prefix of attribute N is a task or task type
286
287 procedure Check_Type;
288 -- Verify that the prefix of attribute N is a type
289
290 procedure Check_Unit_Name (Nod : Node_Id);
291 -- Check that Nod is of the form of a library unit name, i.e that
292 -- it is an identifier, or a selected component whose prefix is
293 -- itself of the form of a library unit name. Note that this is
294 -- quite different from Check_Program_Unit, since it only checks
295 -- the syntactic form of the name, not the semantic identity. This
296 -- is because it is used with attributes (Elab_Body, Elab_Spec, and
297 -- UET_Address) which can refer to non-visible unit.
298
299 procedure Error_Attr (Msg : String; Error_Node : Node_Id);
300 pragma No_Return (Error_Attr);
301 procedure Error_Attr;
302 pragma No_Return (Error_Attr);
303 -- Posts error using Error_Msg_N at given node, sets type of attribute
304 -- node to Any_Type, and then raises Bad_Attribute to avoid any further
305 -- semantic processing. The message typically contains a % insertion
306 -- character which is replaced by the attribute name. The call with
307 -- no arguments is used when the caller has already generated the
308 -- required error messages.
309
310 procedure Standard_Attribute (Val : Int);
311 -- Used to process attributes whose prefix is package Standard which
312 -- yield values of type Universal_Integer. The attribute reference
313 -- node is rewritten with an integer literal of the given value.
314
315 procedure Unexpected_Argument (En : Node_Id);
316 -- Signal unexpected attribute argument (En is the argument)
317
318 procedure Validate_Non_Static_Attribute_Function_Call;
319 -- Called when processing an attribute that is a function call to a
320 -- non-static function, i.e. an attribute function that either takes
321 -- non-scalar arguments or returns a non-scalar result. Verifies that
322 -- such a call does not appear in a preelaborable context.
323
324 ------------------------------
325 -- Analyze_Access_Attribute --
326 ------------------------------
327
328 procedure Analyze_Access_Attribute is
329 Acc_Type : Entity_Id;
330
331 Scop : Entity_Id;
332 Typ : Entity_Id;
333
334 function Build_Access_Object_Type (DT : Entity_Id) return Entity_Id;
335 -- Build an access-to-object type whose designated type is DT,
336 -- and whose Ekind is appropriate to the attribute type. The
337 -- type that is constructed is returned as the result.
338
339 procedure Build_Access_Subprogram_Type (P : Node_Id);
340 -- Build an access to subprogram whose designated type is
341 -- the type of the prefix. If prefix is overloaded, so it the
342 -- node itself. The result is stored in Acc_Type.
343
344 ------------------------------
345 -- Build_Access_Object_Type --
346 ------------------------------
347
348 function Build_Access_Object_Type (DT : Entity_Id) return Entity_Id is
349 Typ : Entity_Id;
350
351 begin
352 if Aname = Name_Unrestricted_Access then
353 Typ :=
354 New_Internal_Entity
355 (E_Allocator_Type, Current_Scope, Loc, 'A');
356 else
357 Typ :=
358 New_Internal_Entity
359 (E_Access_Attribute_Type, Current_Scope, Loc, 'A');
360 end if;
361
362 Set_Etype (Typ, Typ);
363 Init_Size_Align (Typ);
364 Set_Is_Itype (Typ);
365 Set_Associated_Node_For_Itype (Typ, N);
366 Set_Directly_Designated_Type (Typ, DT);
367 return Typ;
368 end Build_Access_Object_Type;
369
370 ----------------------------------
371 -- Build_Access_Subprogram_Type --
372 ----------------------------------
373
374 procedure Build_Access_Subprogram_Type (P : Node_Id) is
375 Index : Interp_Index;
376 It : Interp;
377
378 function Get_Kind (E : Entity_Id) return Entity_Kind;
379 -- Distinguish between access to regular and protected
380 -- subprograms.
381
382 --------------
383 -- Get_Kind --
384 --------------
385
386 function Get_Kind (E : Entity_Id) return Entity_Kind is
387 begin
388 if Convention (E) = Convention_Protected then
389 return E_Access_Protected_Subprogram_Type;
390 else
391 return E_Access_Subprogram_Type;
392 end if;
393 end Get_Kind;
394
395 -- Start of processing for Build_Access_Subprogram_Type
396
397 begin
398 -- In the case of an access to subprogram, use the name of the
399 -- subprogram itself as the designated type. Type-checking in
400 -- this case compares the signatures of the designated types.
401
402 if not Is_Overloaded (P) then
403 Acc_Type :=
404 New_Internal_Entity
405 (Get_Kind (Entity (P)), Current_Scope, Loc, 'A');
406 Set_Etype (Acc_Type, Acc_Type);
407 Set_Directly_Designated_Type (Acc_Type, Entity (P));
408 Set_Etype (N, Acc_Type);
409
410 else
411 Get_First_Interp (P, Index, It);
412 Set_Etype (N, Any_Type);
413
414 while Present (It.Nam) loop
415 if not Is_Intrinsic_Subprogram (It.Nam) then
416 Acc_Type :=
417 New_Internal_Entity
418 (Get_Kind (It.Nam), Current_Scope, Loc, 'A');
419 Set_Etype (Acc_Type, Acc_Type);
420 Set_Directly_Designated_Type (Acc_Type, It.Nam);
421 Add_One_Interp (N, Acc_Type, Acc_Type);
422 end if;
423
424 Get_Next_Interp (Index, It);
425 end loop;
426
427 if Etype (N) = Any_Type then
428 Error_Attr ("prefix of % attribute cannot be intrinsic", P);
429 end if;
430 end if;
431 end Build_Access_Subprogram_Type;
432
433 -- Start of processing for Analyze_Access_Attribute
434
435 begin
436 Check_E0;
437
438 if Nkind (P) = N_Character_Literal then
439 Error_Attr
440 ("prefix of % attribute cannot be enumeration literal", P);
441 end if;
442
443 -- Case of access to subprogram
444
445 if Is_Entity_Name (P)
446 and then Is_Overloadable (Entity (P))
447 then
448 -- Not allowed for nested subprograms if No_Implicit_Dynamic_Code
449 -- restriction set (since in general a trampoline is required).
450
451 if not Is_Library_Level_Entity (Entity (P)) then
452 Check_Restriction (No_Implicit_Dynamic_Code, P);
453 end if;
454
455 -- Build the appropriate subprogram type
456
457 Build_Access_Subprogram_Type (P);
458
459 -- For unrestricted access, kill current values, since this
460 -- attribute allows a reference to a local subprogram that
461 -- could modify local variables to be passed out of scope
462
463 if Aname = Name_Unrestricted_Access then
464 Kill_Current_Values;
465 end if;
466
467 return;
468
469 -- Component is an operation of a protected type
470
471 elsif Nkind (P) = N_Selected_Component
472 and then Is_Overloadable (Entity (Selector_Name (P)))
473 then
474 if Ekind (Entity (Selector_Name (P))) = E_Entry then
475 Error_Attr ("prefix of % attribute must be subprogram", P);
476 end if;
477
478 Build_Access_Subprogram_Type (Selector_Name (P));
479 return;
480 end if;
481
482 -- Deal with incorrect reference to a type, but note that some
483 -- accesses are allowed (references to the current type instance).
484
485 if Is_Entity_Name (P) then
486 Scop := Current_Scope;
487 Typ := Entity (P);
488
489 if Is_Type (Typ) then
490
491 -- OK if we are within the scope of a limited type
492 -- let's mark the component as having per object constraint
493
494 if Is_Anonymous_Tagged_Base (Scop, Typ) then
495 Typ := Scop;
496 Set_Entity (P, Typ);
497 Set_Etype (P, Typ);
498 end if;
499
500 if Typ = Scop then
501 declare
502 Q : Node_Id := Parent (N);
503
504 begin
505 while Present (Q)
506 and then Nkind (Q) /= N_Component_Declaration
507 loop
508 Q := Parent (Q);
509 end loop;
510 if Present (Q) then
511 Set_Has_Per_Object_Constraint (
512 Defining_Identifier (Q), True);
513 end if;
514 end;
515
516 if Nkind (P) = N_Expanded_Name then
517 Error_Msg_N
518 ("current instance prefix must be a direct name", P);
519 end if;
520
521 -- If a current instance attribute appears within a
522 -- a component constraint it must appear alone; other
523 -- contexts (default expressions, within a task body)
524 -- are not subject to this restriction.
525
526 if not In_Default_Expression
527 and then not Has_Completion (Scop)
528 and then
529 Nkind (Parent (N)) /= N_Discriminant_Association
530 and then
531 Nkind (Parent (N)) /= N_Index_Or_Discriminant_Constraint
532 then
533 Error_Msg_N
534 ("current instance attribute must appear alone", N);
535 end if;
536
537 -- OK if we are in initialization procedure for the type
538 -- in question, in which case the reference to the type
539 -- is rewritten as a reference to the current object.
540
541 elsif Ekind (Scop) = E_Procedure
542 and then Is_Init_Proc (Scop)
543 and then Etype (First_Formal (Scop)) = Typ
544 then
545 Rewrite (N,
546 Make_Attribute_Reference (Loc,
547 Prefix => Make_Identifier (Loc, Name_uInit),
548 Attribute_Name => Name_Unrestricted_Access));
549 Analyze (N);
550 return;
551
552 -- OK if a task type, this test needs sharpening up ???
553
554 elsif Is_Task_Type (Typ) then
555 null;
556
557 -- Otherwise we have an error case
558
559 else
560 Error_Attr ("% attribute cannot be applied to type", P);
561 return;
562 end if;
563 end if;
564 end if;
565
566 -- If we fall through, we have a normal access to object case.
567 -- Unrestricted_Access is legal wherever an allocator would be
568 -- legal, so its Etype is set to E_Allocator. The expected type
569 -- of the other attributes is a general access type, and therefore
570 -- we label them with E_Access_Attribute_Type.
571
572 if not Is_Overloaded (P) then
573 Acc_Type := Build_Access_Object_Type (P_Type);
574 Set_Etype (N, Acc_Type);
575 else
576 declare
577 Index : Interp_Index;
578 It : Interp;
579
580 begin
581 Set_Etype (N, Any_Type);
582 Get_First_Interp (P, Index, It);
583
584 while Present (It.Typ) loop
585 Acc_Type := Build_Access_Object_Type (It.Typ);
586 Add_One_Interp (N, Acc_Type, Acc_Type);
587 Get_Next_Interp (Index, It);
588 end loop;
589 end;
590 end if;
591
592 -- If we have an access to an object, and the attribute comes
593 -- from source, then set the object as potentially source modified.
594 -- We do this because the resulting access pointer can be used to
595 -- modify the variable, and we might not detect this, leading to
596 -- some junk warnings.
597
598 if Is_Entity_Name (P) then
599 Set_Never_Set_In_Source (Entity (P), False);
600 end if;
601
602 -- Check for aliased view unless unrestricted case. We allow
603 -- a nonaliased prefix when within an instance because the
604 -- prefix may have been a tagged formal object, which is
605 -- defined to be aliased even when the actual might not be
606 -- (other instance cases will have been caught in the generic).
607
608 if Aname /= Name_Unrestricted_Access
609 and then not Is_Aliased_View (P)
610 and then not In_Instance
611 then
612 Error_Attr ("prefix of % attribute must be aliased", P);
613 end if;
614 end Analyze_Access_Attribute;
615
616 --------------------------------
617 -- Check_Array_Or_Scalar_Type --
618 --------------------------------
619
620 procedure Check_Array_Or_Scalar_Type is
621 Index : Entity_Id;
622
623 D : Int;
624 -- Dimension number for array attributes.
625
626 begin
627 -- Case of string literal or string literal subtype. These cases
628 -- cannot arise from legal Ada code, but the expander is allowed
629 -- to generate them. They require special handling because string
630 -- literal subtypes do not have standard bounds (the whole idea
631 -- of these subtypes is to avoid having to generate the bounds)
632
633 if Ekind (P_Type) = E_String_Literal_Subtype then
634 Set_Etype (N, Etype (First_Index (P_Base_Type)));
635 return;
636
637 -- Scalar types
638
639 elsif Is_Scalar_Type (P_Type) then
640 Check_Type;
641
642 if Present (E1) then
643 Error_Attr ("invalid argument in % attribute", E1);
644 else
645 Set_Etype (N, P_Base_Type);
646 return;
647 end if;
648
649 -- The following is a special test to allow 'First to apply to
650 -- private scalar types if the attribute comes from generated
651 -- code. This occurs in the case of Normalize_Scalars code.
652
653 elsif Is_Private_Type (P_Type)
654 and then Present (Full_View (P_Type))
655 and then Is_Scalar_Type (Full_View (P_Type))
656 and then not Comes_From_Source (N)
657 then
658 Set_Etype (N, Implementation_Base_Type (P_Type));
659
660 -- Array types other than string literal subtypes handled above
661
662 else
663 Check_Array_Type;
664
665 -- We know prefix is an array type, or the name of an array
666 -- object, and that the expression, if present, is static
667 -- and within the range of the dimensions of the type.
668
669 if Is_Array_Type (P_Type) then
670 Index := First_Index (P_Base_Type);
671
672 else pragma Assert (Is_Access_Type (P_Type));
673 Index := First_Index (Base_Type (Designated_Type (P_Type)));
674 end if;
675
676 if No (E1) then
677
678 -- First dimension assumed
679
680 Set_Etype (N, Base_Type (Etype (Index)));
681
682 else
683 D := UI_To_Int (Intval (E1));
684
685 for J in 1 .. D - 1 loop
686 Next_Index (Index);
687 end loop;
688
689 Set_Etype (N, Base_Type (Etype (Index)));
690 Set_Etype (E1, Standard_Integer);
691 end if;
692 end if;
693 end Check_Array_Or_Scalar_Type;
694
695 ----------------------
696 -- Check_Array_Type --
697 ----------------------
698
699 procedure Check_Array_Type is
700 D : Int;
701 -- Dimension number for array attributes.
702
703 begin
704 -- If the type is a string literal type, then this must be generated
705 -- internally, and no further check is required on its legality.
706
707 if Ekind (P_Type) = E_String_Literal_Subtype then
708 return;
709
710 -- If the type is a composite, it is an illegal aggregate, no point
711 -- in going on.
712
713 elsif P_Type = Any_Composite then
714 raise Bad_Attribute;
715 end if;
716
717 -- Normal case of array type or subtype
718
719 Check_Either_E0_Or_E1;
720
721 if Is_Array_Type (P_Type) then
722 if not Is_Constrained (P_Type)
723 and then Is_Entity_Name (P)
724 and then Is_Type (Entity (P))
725 then
726 -- Note: we do not call Error_Attr here, since we prefer to
727 -- continue, using the relevant index type of the array,
728 -- even though it is unconstrained. This gives better error
729 -- recovery behavior.
730
731 Error_Msg_Name_1 := Aname;
732 Error_Msg_N
733 ("prefix for % attribute must be constrained array", P);
734 end if;
735
736 D := Number_Dimensions (P_Type);
737
738 elsif Is_Access_Type (P_Type)
739 and then Is_Array_Type (Designated_Type (P_Type))
740 then
741 if Is_Entity_Name (P) and then Is_Type (Entity (P)) then
742 Error_Attr ("prefix of % attribute cannot be access type", P);
743 end if;
744
745 D := Number_Dimensions (Designated_Type (P_Type));
746
747 -- If there is an implicit dereference, then we must freeze
748 -- the designated type of the access type, since the type of
749 -- the referenced array is this type (see AI95-00106).
750
751 Freeze_Before (N, Designated_Type (P_Type));
752
753 else
754 if Is_Private_Type (P_Type) then
755 Error_Attr
756 ("prefix for % attribute may not be private type", P);
757
758 elsif Attr_Id = Attribute_First
759 or else
760 Attr_Id = Attribute_Last
761 then
762 Error_Attr ("invalid prefix for % attribute", P);
763
764 else
765 Error_Attr ("prefix for % attribute must be array", P);
766 end if;
767 end if;
768
769 if Present (E1) then
770 Resolve (E1, Any_Integer);
771 Set_Etype (E1, Standard_Integer);
772
773 if not Is_Static_Expression (E1)
774 or else Raises_Constraint_Error (E1)
775 then
776 Flag_Non_Static_Expr
777 ("expression for dimension must be static!", E1);
778 Error_Attr;
779
780 elsif UI_To_Int (Expr_Value (E1)) > D
781 or else UI_To_Int (Expr_Value (E1)) < 1
782 then
783 Error_Attr ("invalid dimension number for array type", E1);
784 end if;
785 end if;
786 end Check_Array_Type;
787
788 -------------------------
789 -- Check_Asm_Attribute --
790 -------------------------
791
792 procedure Check_Asm_Attribute is
793 begin
794 Check_Type;
795 Check_E2;
796
797 -- Check first argument is static string expression
798
799 Analyze_And_Resolve (E1, Standard_String);
800
801 if Etype (E1) = Any_Type then
802 return;
803
804 elsif not Is_OK_Static_Expression (E1) then
805 Flag_Non_Static_Expr
806 ("constraint argument must be static string expression!", E1);
807 Error_Attr;
808 end if;
809
810 -- Check second argument is right type
811
812 Analyze_And_Resolve (E2, Entity (P));
813
814 -- Note: that is all we need to do, we don't need to check
815 -- that it appears in a correct context. The Ada type system
816 -- will do that for us.
817
818 end Check_Asm_Attribute;
819
820 ---------------------
821 -- Check_Component --
822 ---------------------
823
824 procedure Check_Component is
825 begin
826 Check_E0;
827
828 if Nkind (P) /= N_Selected_Component
829 or else
830 (Ekind (Entity (Selector_Name (P))) /= E_Component
831 and then
832 Ekind (Entity (Selector_Name (P))) /= E_Discriminant)
833 then
834 Error_Attr
835 ("prefix for % attribute must be selected component", P);
836 end if;
837 end Check_Component;
838
839 ------------------------------------
840 -- Check_Decimal_Fixed_Point_Type --
841 ------------------------------------
842
843 procedure Check_Decimal_Fixed_Point_Type is
844 begin
845 Check_Type;
846
847 if not Is_Decimal_Fixed_Point_Type (P_Type) then
848 Error_Attr
849 ("prefix of % attribute must be decimal type", P);
850 end if;
851 end Check_Decimal_Fixed_Point_Type;
852
853 -----------------------
854 -- Check_Dereference --
855 -----------------------
856
857 procedure Check_Dereference is
858 begin
859 if Is_Object_Reference (P)
860 and then Is_Access_Type (P_Type)
861 then
862 Rewrite (P,
863 Make_Explicit_Dereference (Sloc (P),
864 Prefix => Relocate_Node (P)));
865
866 Analyze_And_Resolve (P);
867 P_Type := Etype (P);
868
869 if P_Type = Any_Type then
870 raise Bad_Attribute;
871 end if;
872
873 P_Base_Type := Base_Type (P_Type);
874 end if;
875 end Check_Dereference;
876
877 -------------------------
878 -- Check_Discrete_Type --
879 -------------------------
880
881 procedure Check_Discrete_Type is
882 begin
883 Check_Type;
884
885 if not Is_Discrete_Type (P_Type) then
886 Error_Attr ("prefix of % attribute must be discrete type", P);
887 end if;
888 end Check_Discrete_Type;
889
890 --------------
891 -- Check_E0 --
892 --------------
893
894 procedure Check_E0 is
895 begin
896 if Present (E1) then
897 Unexpected_Argument (E1);
898 end if;
899 end Check_E0;
900
901 --------------
902 -- Check_E1 --
903 --------------
904
905 procedure Check_E1 is
906 begin
907 Check_Either_E0_Or_E1;
908
909 if No (E1) then
910
911 -- Special-case attributes that are functions and that appear as
912 -- the prefix of another attribute. Error is posted on parent.
913
914 if Nkind (Parent (N)) = N_Attribute_Reference
915 and then (Attribute_Name (Parent (N)) = Name_Address
916 or else
917 Attribute_Name (Parent (N)) = Name_Code_Address
918 or else
919 Attribute_Name (Parent (N)) = Name_Access)
920 then
921 Error_Msg_Name_1 := Attribute_Name (Parent (N));
922 Error_Msg_N ("illegal prefix for % attribute", Parent (N));
923 Set_Etype (Parent (N), Any_Type);
924 Set_Entity (Parent (N), Any_Type);
925 raise Bad_Attribute;
926
927 else
928 Error_Attr ("missing argument for % attribute", N);
929 end if;
930 end if;
931 end Check_E1;
932
933 --------------
934 -- Check_E2 --
935 --------------
936
937 procedure Check_E2 is
938 begin
939 if No (E1) then
940 Error_Attr ("missing arguments for % attribute (2 required)", N);
941 elsif No (E2) then
942 Error_Attr ("missing argument for % attribute (2 required)", N);
943 end if;
944 end Check_E2;
945
946 ---------------------------
947 -- Check_Either_E0_Or_E1 --
948 ---------------------------
949
950 procedure Check_Either_E0_Or_E1 is
951 begin
952 if Present (E2) then
953 Unexpected_Argument (E2);
954 end if;
955 end Check_Either_E0_Or_E1;
956
957 ----------------------
958 -- Check_Enum_Image --
959 ----------------------
960
961 procedure Check_Enum_Image is
962 Lit : Entity_Id;
963
964 begin
965 if Is_Enumeration_Type (P_Base_Type) then
966 Lit := First_Literal (P_Base_Type);
967 while Present (Lit) loop
968 Set_Referenced (Lit);
969 Next_Literal (Lit);
970 end loop;
971 end if;
972 end Check_Enum_Image;
973
974 ----------------------------
975 -- Check_Fixed_Point_Type --
976 ----------------------------
977
978 procedure Check_Fixed_Point_Type is
979 begin
980 Check_Type;
981
982 if not Is_Fixed_Point_Type (P_Type) then
983 Error_Attr ("prefix of % attribute must be fixed point type", P);
984 end if;
985 end Check_Fixed_Point_Type;
986
987 ------------------------------
988 -- Check_Fixed_Point_Type_0 --
989 ------------------------------
990
991 procedure Check_Fixed_Point_Type_0 is
992 begin
993 Check_Fixed_Point_Type;
994 Check_E0;
995 end Check_Fixed_Point_Type_0;
996
997 -------------------------------
998 -- Check_Floating_Point_Type --
999 -------------------------------
1000
1001 procedure Check_Floating_Point_Type is
1002 begin
1003 Check_Type;
1004
1005 if not Is_Floating_Point_Type (P_Type) then
1006 Error_Attr ("prefix of % attribute must be float type", P);
1007 end if;
1008 end Check_Floating_Point_Type;
1009
1010 ---------------------------------
1011 -- Check_Floating_Point_Type_0 --
1012 ---------------------------------
1013
1014 procedure Check_Floating_Point_Type_0 is
1015 begin
1016 Check_Floating_Point_Type;
1017 Check_E0;
1018 end Check_Floating_Point_Type_0;
1019
1020 ---------------------------------
1021 -- Check_Floating_Point_Type_1 --
1022 ---------------------------------
1023
1024 procedure Check_Floating_Point_Type_1 is
1025 begin
1026 Check_Floating_Point_Type;
1027 Check_E1;
1028 end Check_Floating_Point_Type_1;
1029
1030 ---------------------------------
1031 -- Check_Floating_Point_Type_2 --
1032 ---------------------------------
1033
1034 procedure Check_Floating_Point_Type_2 is
1035 begin
1036 Check_Floating_Point_Type;
1037 Check_E2;
1038 end Check_Floating_Point_Type_2;
1039
1040 ------------------------
1041 -- Check_Integer_Type --
1042 ------------------------
1043
1044 procedure Check_Integer_Type is
1045 begin
1046 Check_Type;
1047
1048 if not Is_Integer_Type (P_Type) then
1049 Error_Attr ("prefix of % attribute must be integer type", P);
1050 end if;
1051 end Check_Integer_Type;
1052
1053 ------------------------
1054 -- Check_Library_Unit --
1055 ------------------------
1056
1057 procedure Check_Library_Unit is
1058 begin
1059 if not Is_Compilation_Unit (Entity (P)) then
1060 Error_Attr ("prefix of % attribute must be library unit", P);
1061 end if;
1062 end Check_Library_Unit;
1063
1064 -------------------------------
1065 -- Check_Not_Incomplete_Type --
1066 -------------------------------
1067
1068 procedure Check_Not_Incomplete_Type is
1069 begin
1070 if not Is_Entity_Name (P)
1071 or else not Is_Type (Entity (P))
1072 or else In_Default_Expression
1073 then
1074 return;
1075
1076 else
1077 Check_Fully_Declared (P_Type, P);
1078 end if;
1079 end Check_Not_Incomplete_Type;
1080
1081 ----------------------------
1082 -- Check_Object_Reference --
1083 ----------------------------
1084
1085 procedure Check_Object_Reference (P : Node_Id) is
1086 Rtyp : Entity_Id;
1087
1088 begin
1089 -- If we need an object, and we have a prefix that is the name of
1090 -- a function entity, convert it into a function call.
1091
1092 if Is_Entity_Name (P)
1093 and then Ekind (Entity (P)) = E_Function
1094 then
1095 Rtyp := Etype (Entity (P));
1096
1097 Rewrite (P,
1098 Make_Function_Call (Sloc (P),
1099 Name => Relocate_Node (P)));
1100
1101 Analyze_And_Resolve (P, Rtyp);
1102
1103 -- Otherwise we must have an object reference
1104
1105 elsif not Is_Object_Reference (P) then
1106 Error_Attr ("prefix of % attribute must be object", P);
1107 end if;
1108 end Check_Object_Reference;
1109
1110 ------------------------
1111 -- Check_Program_Unit --
1112 ------------------------
1113
1114 procedure Check_Program_Unit is
1115 begin
1116 if Is_Entity_Name (P) then
1117 declare
1118 K : constant Entity_Kind := Ekind (Entity (P));
1119 T : constant Entity_Id := Etype (Entity (P));
1120
1121 begin
1122 if K in Subprogram_Kind
1123 or else K in Task_Kind
1124 or else K in Protected_Kind
1125 or else K = E_Package
1126 or else K in Generic_Unit_Kind
1127 or else (K = E_Variable
1128 and then
1129 (Is_Task_Type (T)
1130 or else
1131 Is_Protected_Type (T)))
1132 then
1133 return;
1134 end if;
1135 end;
1136 end if;
1137
1138 Error_Attr ("prefix of % attribute must be program unit", P);
1139 end Check_Program_Unit;
1140
1141 ---------------------
1142 -- Check_Real_Type --
1143 ---------------------
1144
1145 procedure Check_Real_Type is
1146 begin
1147 Check_Type;
1148
1149 if not Is_Real_Type (P_Type) then
1150 Error_Attr ("prefix of % attribute must be real type", P);
1151 end if;
1152 end Check_Real_Type;
1153
1154 -----------------------
1155 -- Check_Scalar_Type --
1156 -----------------------
1157
1158 procedure Check_Scalar_Type is
1159 begin
1160 Check_Type;
1161
1162 if not Is_Scalar_Type (P_Type) then
1163 Error_Attr ("prefix of % attribute must be scalar type", P);
1164 end if;
1165 end Check_Scalar_Type;
1166
1167 ---------------------------
1168 -- Check_Standard_Prefix --
1169 ---------------------------
1170
1171 procedure Check_Standard_Prefix is
1172 begin
1173 Check_E0;
1174
1175 if Nkind (P) /= N_Identifier
1176 or else Chars (P) /= Name_Standard
1177 then
1178 Error_Attr ("only allowed prefix for % attribute is Standard", P);
1179 end if;
1180
1181 end Check_Standard_Prefix;
1182
1183 ----------------------------
1184 -- Check_Stream_Attribute --
1185 ----------------------------
1186
1187 procedure Check_Stream_Attribute (Nam : TSS_Name_Type) is
1188 Etyp : Entity_Id;
1189 Btyp : Entity_Id;
1190
1191 begin
1192 Validate_Non_Static_Attribute_Function_Call;
1193
1194 -- With the exception of 'Input, Stream attributes are procedures,
1195 -- and can only appear at the position of procedure calls. We check
1196 -- for this here, before they are rewritten, to give a more precise
1197 -- diagnostic.
1198
1199 if Nam = TSS_Stream_Input then
1200 null;
1201
1202 elsif Is_List_Member (N)
1203 and then Nkind (Parent (N)) /= N_Procedure_Call_Statement
1204 and then Nkind (Parent (N)) /= N_Aggregate
1205 then
1206 null;
1207
1208 else
1209 Error_Attr
1210 ("invalid context for attribute%, which is a procedure", N);
1211 end if;
1212
1213 Check_Type;
1214 Btyp := Implementation_Base_Type (P_Type);
1215
1216 -- Stream attributes not allowed on limited types unless the
1217 -- special OK_For_Stream flag is set.
1218
1219 if Is_Limited_Type (P_Type)
1220 and then Comes_From_Source (N)
1221 and then not Present (TSS (Btyp, Nam))
1222 and then No (Get_Rep_Pragma (Btyp, Name_Stream_Convert))
1223 then
1224 Error_Msg_Name_1 := Aname;
1225 Error_Msg_NE
1226 ("limited type& has no% attribute", P, Btyp);
1227 Explain_Limited_Type (P_Type, P);
1228 end if;
1229
1230 -- Check for violation of restriction No_Stream_Attributes
1231
1232 if Is_RTE (P_Type, RE_Exception_Id)
1233 or else
1234 Is_RTE (P_Type, RE_Exception_Occurrence)
1235 then
1236 Check_Restriction (No_Exception_Registration, P);
1237 end if;
1238
1239 -- Here we must check that the first argument is an access type
1240 -- that is compatible with Ada.Streams.Root_Stream_Type'Class.
1241
1242 Analyze_And_Resolve (E1);
1243 Etyp := Etype (E1);
1244
1245 -- Note: the double call to Root_Type here is needed because the
1246 -- root type of a class-wide type is the corresponding type (e.g.
1247 -- X for X'Class, and we really want to go to the root.
1248
1249 if not Is_Access_Type (Etyp)
1250 or else Root_Type (Root_Type (Designated_Type (Etyp))) /=
1251 RTE (RE_Root_Stream_Type)
1252 then
1253 Error_Attr
1254 ("expected access to Ada.Streams.Root_Stream_Type''Class", E1);
1255 end if;
1256
1257 -- Check that the second argument is of the right type if there is
1258 -- one (the Input attribute has only one argument so this is skipped)
1259
1260 if Present (E2) then
1261 Analyze (E2);
1262
1263 if Nam = TSS_Stream_Read
1264 and then not Is_OK_Variable_For_Out_Formal (E2)
1265 then
1266 Error_Attr
1267 ("second argument of % attribute must be a variable", E2);
1268 end if;
1269
1270 Resolve (E2, P_Type);
1271 end if;
1272 end Check_Stream_Attribute;
1273
1274 -----------------------
1275 -- Check_Task_Prefix --
1276 -----------------------
1277
1278 procedure Check_Task_Prefix is
1279 begin
1280 Analyze (P);
1281
1282 if Is_Task_Type (Etype (P))
1283 or else (Is_Access_Type (Etype (P))
1284 and then Is_Task_Type (Designated_Type (Etype (P))))
1285 then
1286 Resolve (P);
1287 else
1288 Error_Attr ("prefix of % attribute must be a task", P);
1289 end if;
1290 end Check_Task_Prefix;
1291
1292 ----------------
1293 -- Check_Type --
1294 ----------------
1295
1296 -- The possibilities are an entity name denoting a type, or an
1297 -- attribute reference that denotes a type (Base or Class). If
1298 -- the type is incomplete, replace it with its full view.
1299
1300 procedure Check_Type is
1301 begin
1302 if not Is_Entity_Name (P)
1303 or else not Is_Type (Entity (P))
1304 then
1305 Error_Attr ("prefix of % attribute must be a type", P);
1306
1307 elsif Ekind (Entity (P)) = E_Incomplete_Type
1308 and then Present (Full_View (Entity (P)))
1309 then
1310 P_Type := Full_View (Entity (P));
1311 Set_Entity (P, P_Type);
1312 end if;
1313 end Check_Type;
1314
1315 ---------------------
1316 -- Check_Unit_Name --
1317 ---------------------
1318
1319 procedure Check_Unit_Name (Nod : Node_Id) is
1320 begin
1321 if Nkind (Nod) = N_Identifier then
1322 return;
1323
1324 elsif Nkind (Nod) = N_Selected_Component then
1325 Check_Unit_Name (Prefix (Nod));
1326
1327 if Nkind (Selector_Name (Nod)) = N_Identifier then
1328 return;
1329 end if;
1330 end if;
1331
1332 Error_Attr ("argument for % attribute must be unit name", P);
1333 end Check_Unit_Name;
1334
1335 ----------------
1336 -- Error_Attr --
1337 ----------------
1338
1339 procedure Error_Attr is
1340 begin
1341 Set_Etype (N, Any_Type);
1342 Set_Entity (N, Any_Type);
1343 raise Bad_Attribute;
1344 end Error_Attr;
1345
1346 procedure Error_Attr (Msg : String; Error_Node : Node_Id) is
1347 begin
1348 Error_Msg_Name_1 := Aname;
1349 Error_Msg_N (Msg, Error_Node);
1350 Error_Attr;
1351 end Error_Attr;
1352
1353 ----------------------------
1354 -- Legal_Formal_Attribute --
1355 ----------------------------
1356
1357 procedure Legal_Formal_Attribute is
1358 begin
1359 Check_E0;
1360
1361 if not Is_Entity_Name (P)
1362 or else not Is_Type (Entity (P))
1363 then
1364 Error_Attr ("prefix of % attribute must be generic type", N);
1365
1366 elsif Is_Generic_Actual_Type (Entity (P))
1367 or In_Instance
1368 then
1369 null;
1370
1371 elsif Is_Generic_Type (Entity (P)) then
1372 if not Is_Indefinite_Subtype (Entity (P)) then
1373 Error_Attr
1374 ("prefix of % attribute must be indefinite generic type", N);
1375 end if;
1376
1377 else
1378 Error_Attr
1379 ("prefix of % attribute must be indefinite generic type", N);
1380 end if;
1381
1382 Set_Etype (N, Standard_Boolean);
1383 end Legal_Formal_Attribute;
1384
1385 ------------------------
1386 -- Standard_Attribute --
1387 ------------------------
1388
1389 procedure Standard_Attribute (Val : Int) is
1390 begin
1391 Check_Standard_Prefix;
1392
1393 -- First a special check (more like a kludge really). For GNAT5
1394 -- on Windows, the alignments in GCC are severely mixed up. In
1395 -- particular, we have a situation where the maximum alignment
1396 -- that GCC thinks is possible is greater than the guaranteed
1397 -- alignment at run-time. That causes many problems. As a partial
1398 -- cure for this situation, we force a value of 4 for the maximum
1399 -- alignment attribute on this target. This still does not solve
1400 -- all problems, but it helps.
1401
1402 -- A further (even more horrible) dimension to this kludge is now
1403 -- installed. There are two uses for Maximum_Alignment, one is to
1404 -- determine the maximum guaranteed alignment, that's the one we
1405 -- want the kludge to yield as 4. The other use is to maximally
1406 -- align objects, we can't use 4 here, since for example, long
1407 -- long integer has an alignment of 8, so we will get errors.
1408
1409 -- It is of course impossible to determine which use the programmer
1410 -- has in mind, but an approximation for now is to disconnect the
1411 -- kludge if the attribute appears in an alignment clause.
1412
1413 -- To be removed if GCC ever gets its act together here ???
1414
1415 Alignment_Kludge : declare
1416 P : Node_Id;
1417
1418 function On_X86 return Boolean;
1419 -- Determine if target is x86 (ia32), return True if so
1420
1421 ------------
1422 -- On_X86 --
1423 ------------
1424
1425 function On_X86 return Boolean is
1426 T : String := Sdefault.Target_Name.all;
1427
1428 begin
1429 -- There is no clean way to check this. That's not surprising,
1430 -- the front end should not be doing this kind of test ???. The
1431 -- way we do it is test for either "86" or "pentium" being in
1432 -- the string for the target name.
1433
1434 for J in T'First .. T'Last - 1 loop
1435 if T (J .. J + 1) = "86"
1436 or else (J <= T'Last - 6
1437 and then T (J .. J + 6) = "pentium")
1438 then
1439 return True;
1440 end if;
1441 end loop;
1442
1443 return False;
1444 end On_X86;
1445
1446 begin
1447 if Aname = Name_Maximum_Alignment and then On_X86 then
1448 P := Parent (N);
1449
1450 while Nkind (P) in N_Subexpr loop
1451 P := Parent (P);
1452 end loop;
1453
1454 if Nkind (P) /= N_Attribute_Definition_Clause
1455 or else Chars (P) /= Name_Alignment
1456 then
1457 Rewrite (N, Make_Integer_Literal (Loc, 4));
1458 Analyze (N);
1459 return;
1460 end if;
1461 end if;
1462 end Alignment_Kludge;
1463
1464 -- Normally we get the value from gcc ???
1465
1466 Rewrite (N, Make_Integer_Literal (Loc, Val));
1467 Analyze (N);
1468 end Standard_Attribute;
1469
1470 -------------------------
1471 -- Unexpected Argument --
1472 -------------------------
1473
1474 procedure Unexpected_Argument (En : Node_Id) is
1475 begin
1476 Error_Attr ("unexpected argument for % attribute", En);
1477 end Unexpected_Argument;
1478
1479 -------------------------------------------------
1480 -- Validate_Non_Static_Attribute_Function_Call --
1481 -------------------------------------------------
1482
1483 -- This function should be moved to Sem_Dist ???
1484
1485 procedure Validate_Non_Static_Attribute_Function_Call is
1486 begin
1487 if In_Preelaborated_Unit
1488 and then not In_Subprogram_Or_Concurrent_Unit
1489 then
1490 Flag_Non_Static_Expr
1491 ("non-static function call in preelaborated unit!", N);
1492 end if;
1493 end Validate_Non_Static_Attribute_Function_Call;
1494
1495 -----------------------------------------------
1496 -- Start of Processing for Analyze_Attribute --
1497 -----------------------------------------------
1498
1499 begin
1500 -- Immediate return if unrecognized attribute (already diagnosed
1501 -- by parser, so there is nothing more that we need to do)
1502
1503 if not Is_Attribute_Name (Aname) then
1504 raise Bad_Attribute;
1505 end if;
1506
1507 -- Deal with Ada 83 and Features issues
1508
1509 if Comes_From_Source (N) then
1510 if not Attribute_83 (Attr_Id) then
1511 if Ada_83 and then Comes_From_Source (N) then
1512 Error_Msg_Name_1 := Aname;
1513 Error_Msg_N ("(Ada 83) attribute% is not standard?", N);
1514 end if;
1515
1516 if Attribute_Impl_Def (Attr_Id) then
1517 Check_Restriction (No_Implementation_Attributes, N);
1518 end if;
1519 end if;
1520 end if;
1521
1522 -- Remote access to subprogram type access attribute reference needs
1523 -- unanalyzed copy for tree transformation. The analyzed copy is used
1524 -- for its semantic information (whether prefix is a remote subprogram
1525 -- name), the unanalyzed copy is used to construct new subtree rooted
1526 -- with N_aggregate which represents a fat pointer aggregate.
1527
1528 if Aname = Name_Access then
1529 Discard_Node (Copy_Separate_Tree (N));
1530 end if;
1531
1532 -- Analyze prefix and exit if error in analysis. If the prefix is an
1533 -- incomplete type, use full view if available. A special case is
1534 -- that we never analyze the prefix of an Elab_Body or Elab_Spec
1535 -- or UET_Address attribute.
1536
1537 if Aname /= Name_Elab_Body
1538 and then
1539 Aname /= Name_Elab_Spec
1540 and then
1541 Aname /= Name_UET_Address
1542 then
1543 Analyze (P);
1544 P_Type := Etype (P);
1545
1546 if Is_Entity_Name (P)
1547 and then Present (Entity (P))
1548 and then Is_Type (Entity (P))
1549 and then Ekind (Entity (P)) = E_Incomplete_Type
1550 then
1551 P_Type := Get_Full_View (P_Type);
1552 Set_Entity (P, P_Type);
1553 Set_Etype (P, P_Type);
1554 end if;
1555
1556 if P_Type = Any_Type then
1557 raise Bad_Attribute;
1558 end if;
1559
1560 P_Base_Type := Base_Type (P_Type);
1561 end if;
1562
1563 -- Analyze expressions that may be present, exiting if an error occurs
1564
1565 if No (Exprs) then
1566 E1 := Empty;
1567 E2 := Empty;
1568
1569 else
1570 E1 := First (Exprs);
1571 Analyze (E1);
1572
1573 -- Check for missing or bad expression (result of previous error)
1574
1575 if No (E1) or else Etype (E1) = Any_Type then
1576 raise Bad_Attribute;
1577 end if;
1578
1579 E2 := Next (E1);
1580
1581 if Present (E2) then
1582 Analyze (E2);
1583
1584 if Etype (E2) = Any_Type then
1585 raise Bad_Attribute;
1586 end if;
1587
1588 if Present (Next (E2)) then
1589 Unexpected_Argument (Next (E2));
1590 end if;
1591 end if;
1592 end if;
1593
1594 if Is_Overloaded (P)
1595 and then Aname /= Name_Access
1596 and then Aname /= Name_Address
1597 and then Aname /= Name_Code_Address
1598 and then Aname /= Name_Count
1599 and then Aname /= Name_Unchecked_Access
1600 then
1601 Error_Attr ("ambiguous prefix for % attribute", P);
1602 end if;
1603
1604 -- Remaining processing depends on attribute
1605
1606 case Attr_Id is
1607
1608 ------------------
1609 -- Abort_Signal --
1610 ------------------
1611
1612 when Attribute_Abort_Signal =>
1613 Check_Standard_Prefix;
1614 Rewrite (N,
1615 New_Reference_To (Stand.Abort_Signal, Loc));
1616 Analyze (N);
1617
1618 ------------
1619 -- Access --
1620 ------------
1621
1622 when Attribute_Access =>
1623 Analyze_Access_Attribute;
1624
1625 -------------
1626 -- Address --
1627 -------------
1628
1629 when Attribute_Address =>
1630 Check_E0;
1631
1632 -- Check for some junk cases, where we have to allow the address
1633 -- attribute but it does not make much sense, so at least for now
1634 -- just replace with Null_Address.
1635
1636 -- We also do this if the prefix is a reference to the AST_Entry
1637 -- attribute. If expansion is active, the attribute will be
1638 -- replaced by a function call, and address will work fine and
1639 -- get the proper value, but if expansion is not active, then
1640 -- the check here allows proper semantic analysis of the reference.
1641
1642 -- An Address attribute created by expansion is legal even when it
1643 -- applies to other entity-denoting expressions.
1644
1645 if Is_Entity_Name (P) then
1646 declare
1647 Ent : constant Entity_Id := Entity (P);
1648
1649 begin
1650 if Is_Subprogram (Ent) then
1651 if not Is_Library_Level_Entity (Ent) then
1652 Check_Restriction (No_Implicit_Dynamic_Code, P);
1653 end if;
1654
1655 Set_Address_Taken (Ent);
1656
1657 elsif Is_Object (Ent)
1658 or else Ekind (Ent) = E_Label
1659 then
1660 Set_Address_Taken (Ent);
1661
1662 -- If we have an address of an object, and the attribute
1663 -- comes from source, then set the object as potentially
1664 -- source modified. We do this because the resulting address
1665 -- can potentially be used to modify the variable and we
1666 -- might not detect this, leading to some junk warnings.
1667
1668 Set_Never_Set_In_Source (Ent, False);
1669
1670 elsif (Is_Concurrent_Type (Etype (Ent))
1671 and then Etype (Ent) = Base_Type (Ent))
1672 or else Ekind (Ent) = E_Package
1673 or else Is_Generic_Unit (Ent)
1674 then
1675 Rewrite (N,
1676 New_Occurrence_Of (RTE (RE_Null_Address), Sloc (N)));
1677
1678 else
1679 Error_Attr ("invalid prefix for % attribute", P);
1680 end if;
1681 end;
1682
1683 elsif Nkind (P) = N_Attribute_Reference
1684 and then Attribute_Name (P) = Name_AST_Entry
1685 then
1686 Rewrite (N,
1687 New_Occurrence_Of (RTE (RE_Null_Address), Sloc (N)));
1688
1689 elsif Is_Object_Reference (P) then
1690 null;
1691
1692 elsif Nkind (P) = N_Selected_Component
1693 and then Is_Subprogram (Entity (Selector_Name (P)))
1694 then
1695 null;
1696
1697 -- What exactly are we allowing here ??? and is this properly
1698 -- documented in the sinfo documentation for this node ???
1699
1700 elsif not Comes_From_Source (N) then
1701 null;
1702
1703 else
1704 Error_Attr ("invalid prefix for % attribute", P);
1705 end if;
1706
1707 Set_Etype (N, RTE (RE_Address));
1708
1709 ------------------
1710 -- Address_Size --
1711 ------------------
1712
1713 when Attribute_Address_Size =>
1714 Standard_Attribute (System_Address_Size);
1715
1716 --------------
1717 -- Adjacent --
1718 --------------
1719
1720 when Attribute_Adjacent =>
1721 Check_Floating_Point_Type_2;
1722 Set_Etype (N, P_Base_Type);
1723 Resolve (E1, P_Base_Type);
1724 Resolve (E2, P_Base_Type);
1725
1726 ---------
1727 -- Aft --
1728 ---------
1729
1730 when Attribute_Aft =>
1731 Check_Fixed_Point_Type_0;
1732 Set_Etype (N, Universal_Integer);
1733
1734 ---------------
1735 -- Alignment --
1736 ---------------
1737
1738 when Attribute_Alignment =>
1739
1740 -- Don't we need more checking here, cf Size ???
1741
1742 Check_E0;
1743 Check_Not_Incomplete_Type;
1744 Set_Etype (N, Universal_Integer);
1745
1746 ---------------
1747 -- Asm_Input --
1748 ---------------
1749
1750 when Attribute_Asm_Input =>
1751 Check_Asm_Attribute;
1752 Set_Etype (N, RTE (RE_Asm_Input_Operand));
1753
1754 ----------------
1755 -- Asm_Output --
1756 ----------------
1757
1758 when Attribute_Asm_Output =>
1759 Check_Asm_Attribute;
1760
1761 if Etype (E2) = Any_Type then
1762 return;
1763
1764 elsif Aname = Name_Asm_Output then
1765 if not Is_Variable (E2) then
1766 Error_Attr
1767 ("second argument for Asm_Output is not variable", E2);
1768 end if;
1769 end if;
1770
1771 Note_Possible_Modification (E2);
1772 Set_Etype (N, RTE (RE_Asm_Output_Operand));
1773
1774 ---------------
1775 -- AST_Entry --
1776 ---------------
1777
1778 when Attribute_AST_Entry => AST_Entry : declare
1779 Ent : Entity_Id;
1780 Pref : Node_Id;
1781 Ptyp : Entity_Id;
1782
1783 Indexed : Boolean;
1784 -- Indicates if entry family index is present. Note the coding
1785 -- here handles the entry family case, but in fact it cannot be
1786 -- executed currently, because pragma AST_Entry does not permit
1787 -- the specification of an entry family.
1788
1789 procedure Bad_AST_Entry;
1790 -- Signal a bad AST_Entry pragma
1791
1792 function OK_Entry (E : Entity_Id) return Boolean;
1793 -- Checks that E is of an appropriate entity kind for an entry
1794 -- (i.e. E_Entry if Index is False, or E_Entry_Family if Index
1795 -- is set True for the entry family case). In the True case,
1796 -- makes sure that Is_AST_Entry is set on the entry.
1797
1798 procedure Bad_AST_Entry is
1799 begin
1800 Error_Attr ("prefix for % attribute must be task entry", P);
1801 end Bad_AST_Entry;
1802
1803 function OK_Entry (E : Entity_Id) return Boolean is
1804 Result : Boolean;
1805
1806 begin
1807 if Indexed then
1808 Result := (Ekind (E) = E_Entry_Family);
1809 else
1810 Result := (Ekind (E) = E_Entry);
1811 end if;
1812
1813 if Result then
1814 if not Is_AST_Entry (E) then
1815 Error_Msg_Name_2 := Aname;
1816 Error_Attr
1817 ("% attribute requires previous % pragma", P);
1818 end if;
1819 end if;
1820
1821 return Result;
1822 end OK_Entry;
1823
1824 -- Start of processing for AST_Entry
1825
1826 begin
1827 Check_VMS (N);
1828 Check_E0;
1829
1830 -- Deal with entry family case
1831
1832 if Nkind (P) = N_Indexed_Component then
1833 Pref := Prefix (P);
1834 Indexed := True;
1835 else
1836 Pref := P;
1837 Indexed := False;
1838 end if;
1839
1840 Ptyp := Etype (Pref);
1841
1842 if Ptyp = Any_Type or else Error_Posted (Pref) then
1843 return;
1844 end if;
1845
1846 -- If the prefix is a selected component whose prefix is of an
1847 -- access type, then introduce an explicit dereference.
1848
1849 if Nkind (Pref) = N_Selected_Component
1850 and then Is_Access_Type (Ptyp)
1851 then
1852 Rewrite (Pref,
1853 Make_Explicit_Dereference (Sloc (Pref),
1854 Relocate_Node (Pref)));
1855 Analyze_And_Resolve (Pref, Designated_Type (Ptyp));
1856 end if;
1857
1858 -- Prefix can be of the form a.b, where a is a task object
1859 -- and b is one of the entries of the corresponding task type.
1860
1861 if Nkind (Pref) = N_Selected_Component
1862 and then OK_Entry (Entity (Selector_Name (Pref)))
1863 and then Is_Object_Reference (Prefix (Pref))
1864 and then Is_Task_Type (Etype (Prefix (Pref)))
1865 then
1866 null;
1867
1868 -- Otherwise the prefix must be an entry of a containing task,
1869 -- or of a variable of the enclosing task type.
1870
1871 else
1872 if Nkind (Pref) = N_Identifier
1873 or else Nkind (Pref) = N_Expanded_Name
1874 then
1875 Ent := Entity (Pref);
1876
1877 if not OK_Entry (Ent)
1878 or else not In_Open_Scopes (Scope (Ent))
1879 then
1880 Bad_AST_Entry;
1881 end if;
1882
1883 else
1884 Bad_AST_Entry;
1885 end if;
1886 end if;
1887
1888 Set_Etype (N, RTE (RE_AST_Handler));
1889 end AST_Entry;
1890
1891 ----------
1892 -- Base --
1893 ----------
1894
1895 -- Note: when the base attribute appears in the context of a subtype
1896 -- mark, the analysis is done by Sem_Ch8.Find_Type, rather than by
1897 -- the following circuit.
1898
1899 when Attribute_Base => Base : declare
1900 Typ : Entity_Id;
1901
1902 begin
1903 Check_Either_E0_Or_E1;
1904 Find_Type (P);
1905 Typ := Entity (P);
1906
1907 if Ada_95
1908 and then not Is_Scalar_Type (Typ)
1909 and then not Is_Generic_Type (Typ)
1910 then
1911 Error_Msg_N ("prefix of Base attribute must be scalar type", N);
1912
1913 elsif Sloc (Typ) = Standard_Location
1914 and then Base_Type (Typ) = Typ
1915 and then Warn_On_Redundant_Constructs
1916 then
1917 Error_Msg_NE
1918 ("?redudant attribute, & is its own base type", N, Typ);
1919 end if;
1920
1921 Set_Etype (N, Base_Type (Entity (P)));
1922
1923 -- If we have an expression present, then really this is a conversion
1924 -- and the tree must be reformed. Note that this is one of the cases
1925 -- in which we do a replace rather than a rewrite, because the
1926 -- original tree is junk.
1927
1928 if Present (E1) then
1929 Replace (N,
1930 Make_Type_Conversion (Loc,
1931 Subtype_Mark =>
1932 Make_Attribute_Reference (Loc,
1933 Prefix => Prefix (N),
1934 Attribute_Name => Name_Base),
1935 Expression => Relocate_Node (E1)));
1936
1937 -- E1 may be overloaded, and its interpretations preserved.
1938
1939 Save_Interps (E1, Expression (N));
1940 Analyze (N);
1941
1942 -- For other cases, set the proper type as the entity of the
1943 -- attribute reference, and then rewrite the node to be an
1944 -- occurrence of the referenced base type. This way, no one
1945 -- else in the compiler has to worry about the base attribute.
1946
1947 else
1948 Set_Entity (N, Base_Type (Entity (P)));
1949 Rewrite (N,
1950 New_Reference_To (Entity (N), Loc));
1951 Analyze (N);
1952 end if;
1953 end Base;
1954
1955 ---------
1956 -- Bit --
1957 ---------
1958
1959 when Attribute_Bit => Bit :
1960 begin
1961 Check_E0;
1962
1963 if not Is_Object_Reference (P) then
1964 Error_Attr ("prefix for % attribute must be object", P);
1965
1966 -- What about the access object cases ???
1967
1968 else
1969 null;
1970 end if;
1971
1972 Set_Etype (N, Universal_Integer);
1973 end Bit;
1974
1975 ---------------
1976 -- Bit_Order --
1977 ---------------
1978
1979 when Attribute_Bit_Order => Bit_Order :
1980 begin
1981 Check_E0;
1982 Check_Type;
1983
1984 if not Is_Record_Type (P_Type) then
1985 Error_Attr ("prefix of % attribute must be record type", P);
1986 end if;
1987
1988 if Bytes_Big_Endian xor Reverse_Bit_Order (P_Type) then
1989 Rewrite (N,
1990 New_Occurrence_Of (RTE (RE_High_Order_First), Loc));
1991 else
1992 Rewrite (N,
1993 New_Occurrence_Of (RTE (RE_Low_Order_First), Loc));
1994 end if;
1995
1996 Set_Etype (N, RTE (RE_Bit_Order));
1997 Resolve (N);
1998
1999 -- Reset incorrect indication of staticness
2000
2001 Set_Is_Static_Expression (N, False);
2002 end Bit_Order;
2003
2004 ------------------
2005 -- Bit_Position --
2006 ------------------
2007
2008 -- Note: in generated code, we can have a Bit_Position attribute
2009 -- applied to a (naked) record component (i.e. the prefix is an
2010 -- identifier that references an E_Component or E_Discriminant
2011 -- entity directly, and this is interpreted as expected by Gigi.
2012 -- The following code will not tolerate such usage, but when the
2013 -- expander creates this special case, it marks it as analyzed
2014 -- immediately and sets an appropriate type.
2015
2016 when Attribute_Bit_Position =>
2017
2018 if Comes_From_Source (N) then
2019 Check_Component;
2020 end if;
2021
2022 Set_Etype (N, Universal_Integer);
2023
2024 ------------------
2025 -- Body_Version --
2026 ------------------
2027
2028 when Attribute_Body_Version =>
2029 Check_E0;
2030 Check_Program_Unit;
2031 Set_Etype (N, RTE (RE_Version_String));
2032
2033 --------------
2034 -- Callable --
2035 --------------
2036
2037 when Attribute_Callable =>
2038 Check_E0;
2039 Set_Etype (N, Standard_Boolean);
2040 Check_Task_Prefix;
2041
2042 ------------
2043 -- Caller --
2044 ------------
2045
2046 when Attribute_Caller => Caller : declare
2047 Ent : Entity_Id;
2048 S : Entity_Id;
2049
2050 begin
2051 Check_E0;
2052
2053 if Nkind (P) = N_Identifier
2054 or else Nkind (P) = N_Expanded_Name
2055 then
2056 Ent := Entity (P);
2057
2058 if not Is_Entry (Ent) then
2059 Error_Attr ("invalid entry name", N);
2060 end if;
2061
2062 else
2063 Error_Attr ("invalid entry name", N);
2064 return;
2065 end if;
2066
2067 for J in reverse 0 .. Scope_Stack.Last loop
2068 S := Scope_Stack.Table (J).Entity;
2069
2070 if S = Scope (Ent) then
2071 Error_Attr ("Caller must appear in matching accept or body", N);
2072 elsif S = Ent then
2073 exit;
2074 end if;
2075 end loop;
2076
2077 Set_Etype (N, RTE (RO_AT_Task_ID));
2078 end Caller;
2079
2080 -------------
2081 -- Ceiling --
2082 -------------
2083
2084 when Attribute_Ceiling =>
2085 Check_Floating_Point_Type_1;
2086 Set_Etype (N, P_Base_Type);
2087 Resolve (E1, P_Base_Type);
2088
2089 -----------
2090 -- Class --
2091 -----------
2092
2093 when Attribute_Class => Class : declare
2094 begin
2095 Check_Restriction (No_Dispatch, N);
2096 Check_Either_E0_Or_E1;
2097
2098 -- If we have an expression present, then really this is a conversion
2099 -- and the tree must be reformed into a proper conversion. This is a
2100 -- Replace rather than a Rewrite, because the original tree is junk.
2101 -- If expression is overloaded, propagate interpretations to new one.
2102
2103 if Present (E1) then
2104 Replace (N,
2105 Make_Type_Conversion (Loc,
2106 Subtype_Mark =>
2107 Make_Attribute_Reference (Loc,
2108 Prefix => Prefix (N),
2109 Attribute_Name => Name_Class),
2110 Expression => Relocate_Node (E1)));
2111
2112 Save_Interps (E1, Expression (N));
2113 Analyze (N);
2114
2115 -- Otherwise we just need to find the proper type
2116
2117 else
2118 Find_Type (N);
2119 end if;
2120
2121 end Class;
2122
2123 ------------------
2124 -- Code_Address --
2125 ------------------
2126
2127 when Attribute_Code_Address =>
2128 Check_E0;
2129
2130 if Nkind (P) = N_Attribute_Reference
2131 and then (Attribute_Name (P) = Name_Elab_Body
2132 or else
2133 Attribute_Name (P) = Name_Elab_Spec)
2134 then
2135 null;
2136
2137 elsif not Is_Entity_Name (P)
2138 or else (Ekind (Entity (P)) /= E_Function
2139 and then
2140 Ekind (Entity (P)) /= E_Procedure)
2141 then
2142 Error_Attr ("invalid prefix for % attribute", P);
2143 Set_Address_Taken (Entity (P));
2144 end if;
2145
2146 Set_Etype (N, RTE (RE_Address));
2147
2148 --------------------
2149 -- Component_Size --
2150 --------------------
2151
2152 when Attribute_Component_Size =>
2153 Check_E0;
2154 Set_Etype (N, Universal_Integer);
2155
2156 -- Note: unlike other array attributes, unconstrained arrays are OK
2157
2158 if Is_Array_Type (P_Type) and then not Is_Constrained (P_Type) then
2159 null;
2160 else
2161 Check_Array_Type;
2162 end if;
2163
2164 -------------
2165 -- Compose --
2166 -------------
2167
2168 when Attribute_Compose =>
2169 Check_Floating_Point_Type_2;
2170 Set_Etype (N, P_Base_Type);
2171 Resolve (E1, P_Base_Type);
2172 Resolve (E2, Any_Integer);
2173
2174 -----------------
2175 -- Constrained --
2176 -----------------
2177
2178 when Attribute_Constrained =>
2179 Check_E0;
2180 Set_Etype (N, Standard_Boolean);
2181
2182 -- Case from RM J.4(2) of constrained applied to private type
2183
2184 if Is_Entity_Name (P) and then Is_Type (Entity (P)) then
2185
2186 -- If we are within an instance, the attribute must be legal
2187 -- because it was valid in the generic unit. Ditto if this is
2188 -- an inlining of a function declared in an instance.
2189
2190 if In_Instance
2191 or else In_Inlined_Body
2192 then
2193 return;
2194
2195 -- For sure OK if we have a real private type itself, but must
2196 -- be completed, cannot apply Constrained to incomplete type.
2197
2198 elsif Is_Private_Type (Entity (P)) then
2199
2200 -- Note: this is one of the Annex J features that does not
2201 -- generate a warning from -gnatwj, since in fact it seems
2202 -- very useful, and is used in the GNAT runtime.
2203
2204 Check_Not_Incomplete_Type;
2205 return;
2206 end if;
2207
2208 -- Normal (non-obsolescent case) of application to object of
2209 -- a discriminated type.
2210
2211 else
2212 Check_Object_Reference (P);
2213
2214 -- If N does not come from source, then we allow the
2215 -- the attribute prefix to be of a private type whose
2216 -- full type has discriminants. This occurs in cases
2217 -- involving expanded calls to stream attributes.
2218
2219 if not Comes_From_Source (N) then
2220 P_Type := Underlying_Type (P_Type);
2221 end if;
2222
2223 -- Must have discriminants or be an access type designating
2224 -- a type with discriminants. If it is a classwide type is
2225 -- has unknown discriminants.
2226
2227 if Has_Discriminants (P_Type)
2228 or else Has_Unknown_Discriminants (P_Type)
2229 or else
2230 (Is_Access_Type (P_Type)
2231 and then Has_Discriminants (Designated_Type (P_Type)))
2232 then
2233 return;
2234
2235 -- Also allow an object of a generic type if extensions allowed
2236 -- and allow this for any type at all.
2237
2238 elsif (Is_Generic_Type (P_Type)
2239 or else Is_Generic_Actual_Type (P_Type))
2240 and then Extensions_Allowed
2241 then
2242 return;
2243 end if;
2244 end if;
2245
2246 -- Fall through if bad prefix
2247
2248 Error_Attr
2249 ("prefix of % attribute must be object of discriminated type", P);
2250
2251 ---------------
2252 -- Copy_Sign --
2253 ---------------
2254
2255 when Attribute_Copy_Sign =>
2256 Check_Floating_Point_Type_2;
2257 Set_Etype (N, P_Base_Type);
2258 Resolve (E1, P_Base_Type);
2259 Resolve (E2, P_Base_Type);
2260
2261 -----------
2262 -- Count --
2263 -----------
2264
2265 when Attribute_Count => Count :
2266 declare
2267 Ent : Entity_Id;
2268 S : Entity_Id;
2269 Tsk : Entity_Id;
2270
2271 begin
2272 Check_E0;
2273
2274 if Nkind (P) = N_Identifier
2275 or else Nkind (P) = N_Expanded_Name
2276 then
2277 Ent := Entity (P);
2278
2279 if Ekind (Ent) /= E_Entry then
2280 Error_Attr ("invalid entry name", N);
2281 end if;
2282
2283 elsif Nkind (P) = N_Indexed_Component then
2284 if not Is_Entity_Name (Prefix (P))
2285 or else No (Entity (Prefix (P)))
2286 or else Ekind (Entity (Prefix (P))) /= E_Entry_Family
2287 then
2288 if Nkind (Prefix (P)) = N_Selected_Component
2289 and then Present (Entity (Selector_Name (Prefix (P))))
2290 and then Ekind (Entity (Selector_Name (Prefix (P)))) =
2291 E_Entry_Family
2292 then
2293 Error_Attr
2294 ("attribute % must apply to entry of current task", P);
2295
2296 else
2297 Error_Attr ("invalid entry family name", P);
2298 end if;
2299 return;
2300
2301 else
2302 Ent := Entity (Prefix (P));
2303 end if;
2304
2305 elsif Nkind (P) = N_Selected_Component
2306 and then Present (Entity (Selector_Name (P)))
2307 and then Ekind (Entity (Selector_Name (P))) = E_Entry
2308 then
2309 Error_Attr
2310 ("attribute % must apply to entry of current task", P);
2311
2312 else
2313 Error_Attr ("invalid entry name", N);
2314 return;
2315 end if;
2316
2317 for J in reverse 0 .. Scope_Stack.Last loop
2318 S := Scope_Stack.Table (J).Entity;
2319
2320 if S = Scope (Ent) then
2321 if Nkind (P) = N_Expanded_Name then
2322 Tsk := Entity (Prefix (P));
2323
2324 -- The prefix denotes either the task type, or else a
2325 -- single task whose task type is being analyzed.
2326
2327 if (Is_Type (Tsk)
2328 and then Tsk = S)
2329
2330 or else (not Is_Type (Tsk)
2331 and then Etype (Tsk) = S
2332 and then not (Comes_From_Source (S)))
2333 then
2334 null;
2335 else
2336 Error_Attr
2337 ("Attribute % must apply to entry of current task", N);
2338 end if;
2339 end if;
2340
2341 exit;
2342
2343 elsif Ekind (Scope (Ent)) in Task_Kind
2344 and then Ekind (S) /= E_Loop
2345 and then Ekind (S) /= E_Block
2346 and then Ekind (S) /= E_Entry
2347 and then Ekind (S) /= E_Entry_Family
2348 then
2349 Error_Attr ("Attribute % cannot appear in inner unit", N);
2350
2351 elsif Ekind (Scope (Ent)) = E_Protected_Type
2352 and then not Has_Completion (Scope (Ent))
2353 then
2354 Error_Attr ("attribute % can only be used inside body", N);
2355 end if;
2356 end loop;
2357
2358 if Is_Overloaded (P) then
2359 declare
2360 Index : Interp_Index;
2361 It : Interp;
2362
2363 begin
2364 Get_First_Interp (P, Index, It);
2365
2366 while Present (It.Nam) loop
2367 if It.Nam = Ent then
2368 null;
2369
2370 else
2371 Error_Attr ("ambiguous entry name", N);
2372 end if;
2373
2374 Get_Next_Interp (Index, It);
2375 end loop;
2376 end;
2377 end if;
2378
2379 Set_Etype (N, Universal_Integer);
2380 end Count;
2381
2382 -----------------------
2383 -- Default_Bit_Order --
2384 -----------------------
2385
2386 when Attribute_Default_Bit_Order => Default_Bit_Order :
2387 begin
2388 Check_Standard_Prefix;
2389 Check_E0;
2390
2391 if Bytes_Big_Endian then
2392 Rewrite (N,
2393 Make_Integer_Literal (Loc, False_Value));
2394 else
2395 Rewrite (N,
2396 Make_Integer_Literal (Loc, True_Value));
2397 end if;
2398
2399 Set_Etype (N, Universal_Integer);
2400 Set_Is_Static_Expression (N);
2401 end Default_Bit_Order;
2402
2403 --------------
2404 -- Definite --
2405 --------------
2406
2407 when Attribute_Definite =>
2408 Legal_Formal_Attribute;
2409
2410 -----------
2411 -- Delta --
2412 -----------
2413
2414 when Attribute_Delta =>
2415 Check_Fixed_Point_Type_0;
2416 Set_Etype (N, Universal_Real);
2417
2418 ------------
2419 -- Denorm --
2420 ------------
2421
2422 when Attribute_Denorm =>
2423 Check_Floating_Point_Type_0;
2424 Set_Etype (N, Standard_Boolean);
2425
2426 ------------
2427 -- Digits --
2428 ------------
2429
2430 when Attribute_Digits =>
2431 Check_E0;
2432 Check_Type;
2433
2434 if not Is_Floating_Point_Type (P_Type)
2435 and then not Is_Decimal_Fixed_Point_Type (P_Type)
2436 then
2437 Error_Attr
2438 ("prefix of % attribute must be float or decimal type", P);
2439 end if;
2440
2441 Set_Etype (N, Universal_Integer);
2442
2443 ---------------
2444 -- Elab_Body --
2445 ---------------
2446
2447 -- Also handles processing for Elab_Spec
2448
2449 when Attribute_Elab_Body | Attribute_Elab_Spec =>
2450 Check_E0;
2451 Check_Unit_Name (P);
2452 Set_Etype (N, Standard_Void_Type);
2453
2454 -- We have to manually call the expander in this case to get
2455 -- the necessary expansion (normally attributes that return
2456 -- entities are not expanded).
2457
2458 Expand (N);
2459
2460 ---------------
2461 -- Elab_Spec --
2462 ---------------
2463
2464 -- Shares processing with Elab_Body
2465
2466 ----------------
2467 -- Elaborated --
2468 ----------------
2469
2470 when Attribute_Elaborated =>
2471 Check_E0;
2472 Check_Library_Unit;
2473 Set_Etype (N, Standard_Boolean);
2474
2475 ----------
2476 -- Emax --
2477 ----------
2478
2479 when Attribute_Emax =>
2480 Check_Floating_Point_Type_0;
2481 Set_Etype (N, Universal_Integer);
2482
2483 --------------
2484 -- Enum_Rep --
2485 --------------
2486
2487 when Attribute_Enum_Rep => Enum_Rep : declare
2488 begin
2489 if Present (E1) then
2490 Check_E1;
2491 Check_Discrete_Type;
2492 Resolve (E1, P_Base_Type);
2493
2494 else
2495 if not Is_Entity_Name (P)
2496 or else (not Is_Object (Entity (P))
2497 and then
2498 Ekind (Entity (P)) /= E_Enumeration_Literal)
2499 then
2500 Error_Attr
2501 ("prefix of %attribute must be " &
2502 "discrete type/object or enum literal", P);
2503 end if;
2504 end if;
2505
2506 Set_Etype (N, Universal_Integer);
2507 end Enum_Rep;
2508
2509 -------------
2510 -- Epsilon --
2511 -------------
2512
2513 when Attribute_Epsilon =>
2514 Check_Floating_Point_Type_0;
2515 Set_Etype (N, Universal_Real);
2516
2517 --------------
2518 -- Exponent --
2519 --------------
2520
2521 when Attribute_Exponent =>
2522 Check_Floating_Point_Type_1;
2523 Set_Etype (N, Universal_Integer);
2524 Resolve (E1, P_Base_Type);
2525
2526 ------------------
2527 -- External_Tag --
2528 ------------------
2529
2530 when Attribute_External_Tag =>
2531 Check_E0;
2532 Check_Type;
2533
2534 Set_Etype (N, Standard_String);
2535
2536 if not Is_Tagged_Type (P_Type) then
2537 Error_Attr ("prefix of % attribute must be tagged", P);
2538 end if;
2539
2540 -----------
2541 -- First --
2542 -----------
2543
2544 when Attribute_First =>
2545 Check_Array_Or_Scalar_Type;
2546
2547 ---------------
2548 -- First_Bit --
2549 ---------------
2550
2551 when Attribute_First_Bit =>
2552 Check_Component;
2553 Set_Etype (N, Universal_Integer);
2554
2555 -----------------
2556 -- Fixed_Value --
2557 -----------------
2558
2559 when Attribute_Fixed_Value =>
2560 Check_E1;
2561 Check_Fixed_Point_Type;
2562 Resolve (E1, Any_Integer);
2563 Set_Etype (N, P_Base_Type);
2564
2565 -----------
2566 -- Floor --
2567 -----------
2568
2569 when Attribute_Floor =>
2570 Check_Floating_Point_Type_1;
2571 Set_Etype (N, P_Base_Type);
2572 Resolve (E1, P_Base_Type);
2573
2574 ----------
2575 -- Fore --
2576 ----------
2577
2578 when Attribute_Fore =>
2579 Check_Fixed_Point_Type_0;
2580 Set_Etype (N, Universal_Integer);
2581
2582 --------------
2583 -- Fraction --
2584 --------------
2585
2586 when Attribute_Fraction =>
2587 Check_Floating_Point_Type_1;
2588 Set_Etype (N, P_Base_Type);
2589 Resolve (E1, P_Base_Type);
2590
2591 -----------------------
2592 -- Has_Discriminants --
2593 -----------------------
2594
2595 when Attribute_Has_Discriminants =>
2596 Legal_Formal_Attribute;
2597
2598 --------------
2599 -- Identity --
2600 --------------
2601
2602 when Attribute_Identity =>
2603 Check_E0;
2604 Analyze (P);
2605
2606 if Etype (P) = Standard_Exception_Type then
2607 Set_Etype (N, RTE (RE_Exception_Id));
2608
2609 elsif Is_Task_Type (Etype (P))
2610 or else (Is_Access_Type (Etype (P))
2611 and then Is_Task_Type (Designated_Type (Etype (P))))
2612 then
2613 Resolve (P);
2614 Set_Etype (N, RTE (RO_AT_Task_ID));
2615
2616 else
2617 Error_Attr ("prefix of % attribute must be a task or an "
2618 & "exception", P);
2619 end if;
2620
2621 -----------
2622 -- Image --
2623 -----------
2624
2625 when Attribute_Image => Image :
2626 begin
2627 Set_Etype (N, Standard_String);
2628 Check_Scalar_Type;
2629
2630 if Is_Real_Type (P_Type) then
2631 if Ada_83 and then Comes_From_Source (N) then
2632 Error_Msg_Name_1 := Aname;
2633 Error_Msg_N
2634 ("(Ada 83) % attribute not allowed for real types", N);
2635 end if;
2636 end if;
2637
2638 if Is_Enumeration_Type (P_Type) then
2639 Check_Restriction (No_Enumeration_Maps, N);
2640 end if;
2641
2642 Check_E1;
2643 Resolve (E1, P_Base_Type);
2644 Check_Enum_Image;
2645 Validate_Non_Static_Attribute_Function_Call;
2646 end Image;
2647
2648 ---------
2649 -- Img --
2650 ---------
2651
2652 when Attribute_Img => Img :
2653 begin
2654 Set_Etype (N, Standard_String);
2655
2656 if not Is_Scalar_Type (P_Type)
2657 or else (Is_Entity_Name (P) and then Is_Type (Entity (P)))
2658 then
2659 Error_Attr
2660 ("prefix of % attribute must be scalar object name", N);
2661 end if;
2662
2663 Check_Enum_Image;
2664 end Img;
2665
2666 -----------
2667 -- Input --
2668 -----------
2669
2670 when Attribute_Input =>
2671 Check_E1;
2672 Check_Stream_Attribute (TSS_Stream_Input);
2673 Set_Etype (N, P_Base_Type);
2674
2675 -------------------
2676 -- Integer_Value --
2677 -------------------
2678
2679 when Attribute_Integer_Value =>
2680 Check_E1;
2681 Check_Integer_Type;
2682 Resolve (E1, Any_Fixed);
2683 Set_Etype (N, P_Base_Type);
2684
2685 -----------
2686 -- Large --
2687 -----------
2688
2689 when Attribute_Large =>
2690 Check_E0;
2691 Check_Real_Type;
2692 Set_Etype (N, Universal_Real);
2693
2694 ----------
2695 -- Last --
2696 ----------
2697
2698 when Attribute_Last =>
2699 Check_Array_Or_Scalar_Type;
2700
2701 --------------
2702 -- Last_Bit --
2703 --------------
2704
2705 when Attribute_Last_Bit =>
2706 Check_Component;
2707 Set_Etype (N, Universal_Integer);
2708
2709 ------------------
2710 -- Leading_Part --
2711 ------------------
2712
2713 when Attribute_Leading_Part =>
2714 Check_Floating_Point_Type_2;
2715 Set_Etype (N, P_Base_Type);
2716 Resolve (E1, P_Base_Type);
2717 Resolve (E2, Any_Integer);
2718
2719 ------------
2720 -- Length --
2721 ------------
2722
2723 when Attribute_Length =>
2724 Check_Array_Type;
2725 Set_Etype (N, Universal_Integer);
2726
2727 -------------
2728 -- Machine --
2729 -------------
2730
2731 when Attribute_Machine =>
2732 Check_Floating_Point_Type_1;
2733 Set_Etype (N, P_Base_Type);
2734 Resolve (E1, P_Base_Type);
2735
2736 ------------------
2737 -- Machine_Emax --
2738 ------------------
2739
2740 when Attribute_Machine_Emax =>
2741 Check_Floating_Point_Type_0;
2742 Set_Etype (N, Universal_Integer);
2743
2744 ------------------
2745 -- Machine_Emin --
2746 ------------------
2747
2748 when Attribute_Machine_Emin =>
2749 Check_Floating_Point_Type_0;
2750 Set_Etype (N, Universal_Integer);
2751
2752 ----------------------
2753 -- Machine_Mantissa --
2754 ----------------------
2755
2756 when Attribute_Machine_Mantissa =>
2757 Check_Floating_Point_Type_0;
2758 Set_Etype (N, Universal_Integer);
2759
2760 -----------------------
2761 -- Machine_Overflows --
2762 -----------------------
2763
2764 when Attribute_Machine_Overflows =>
2765 Check_Real_Type;
2766 Check_E0;
2767 Set_Etype (N, Standard_Boolean);
2768
2769 -------------------
2770 -- Machine_Radix --
2771 -------------------
2772
2773 when Attribute_Machine_Radix =>
2774 Check_Real_Type;
2775 Check_E0;
2776 Set_Etype (N, Universal_Integer);
2777
2778 --------------------
2779 -- Machine_Rounds --
2780 --------------------
2781
2782 when Attribute_Machine_Rounds =>
2783 Check_Real_Type;
2784 Check_E0;
2785 Set_Etype (N, Standard_Boolean);
2786
2787 ------------------
2788 -- Machine_Size --
2789 ------------------
2790
2791 when Attribute_Machine_Size =>
2792 Check_E0;
2793 Check_Type;
2794 Check_Not_Incomplete_Type;
2795 Set_Etype (N, Universal_Integer);
2796
2797 --------------
2798 -- Mantissa --
2799 --------------
2800
2801 when Attribute_Mantissa =>
2802 Check_E0;
2803 Check_Real_Type;
2804 Set_Etype (N, Universal_Integer);
2805
2806 ---------
2807 -- Max --
2808 ---------
2809
2810 when Attribute_Max =>
2811 Check_E2;
2812 Check_Scalar_Type;
2813 Resolve (E1, P_Base_Type);
2814 Resolve (E2, P_Base_Type);
2815 Set_Etype (N, P_Base_Type);
2816
2817 ----------------------------------
2818 -- Max_Size_In_Storage_Elements --
2819 ----------------------------------
2820
2821 when Attribute_Max_Size_In_Storage_Elements =>
2822 Check_E0;
2823 Check_Type;
2824 Check_Not_Incomplete_Type;
2825 Set_Etype (N, Universal_Integer);
2826
2827 -----------------------
2828 -- Maximum_Alignment --
2829 -----------------------
2830
2831 when Attribute_Maximum_Alignment =>
2832 Standard_Attribute (Ttypes.Maximum_Alignment);
2833
2834 --------------------
2835 -- Mechanism_Code --
2836 --------------------
2837
2838 when Attribute_Mechanism_Code =>
2839 if not Is_Entity_Name (P)
2840 or else not Is_Subprogram (Entity (P))
2841 then
2842 Error_Attr ("prefix of % attribute must be subprogram", P);
2843 end if;
2844
2845 Check_Either_E0_Or_E1;
2846
2847 if Present (E1) then
2848 Resolve (E1, Any_Integer);
2849 Set_Etype (E1, Standard_Integer);
2850
2851 if not Is_Static_Expression (E1) then
2852 Flag_Non_Static_Expr
2853 ("expression for parameter number must be static!", E1);
2854 Error_Attr;
2855
2856 elsif UI_To_Int (Intval (E1)) > Number_Formals (Entity (P))
2857 or else UI_To_Int (Intval (E1)) < 0
2858 then
2859 Error_Attr ("invalid parameter number for %attribute", E1);
2860 end if;
2861 end if;
2862
2863 Set_Etype (N, Universal_Integer);
2864
2865 ---------
2866 -- Min --
2867 ---------
2868
2869 when Attribute_Min =>
2870 Check_E2;
2871 Check_Scalar_Type;
2872 Resolve (E1, P_Base_Type);
2873 Resolve (E2, P_Base_Type);
2874 Set_Etype (N, P_Base_Type);
2875
2876 -----------
2877 -- Model --
2878 -----------
2879
2880 when Attribute_Model =>
2881 Check_Floating_Point_Type_1;
2882 Set_Etype (N, P_Base_Type);
2883 Resolve (E1, P_Base_Type);
2884
2885 ----------------
2886 -- Model_Emin --
2887 ----------------
2888
2889 when Attribute_Model_Emin =>
2890 Check_Floating_Point_Type_0;
2891 Set_Etype (N, Universal_Integer);
2892
2893 -------------------
2894 -- Model_Epsilon --
2895 -------------------
2896
2897 when Attribute_Model_Epsilon =>
2898 Check_Floating_Point_Type_0;
2899 Set_Etype (N, Universal_Real);
2900
2901 --------------------
2902 -- Model_Mantissa --
2903 --------------------
2904
2905 when Attribute_Model_Mantissa =>
2906 Check_Floating_Point_Type_0;
2907 Set_Etype (N, Universal_Integer);
2908
2909 -----------------
2910 -- Model_Small --
2911 -----------------
2912
2913 when Attribute_Model_Small =>
2914 Check_Floating_Point_Type_0;
2915 Set_Etype (N, Universal_Real);
2916
2917 -------------
2918 -- Modulus --
2919 -------------
2920
2921 when Attribute_Modulus =>
2922 Check_E0;
2923 Check_Type;
2924
2925 if not Is_Modular_Integer_Type (P_Type) then
2926 Error_Attr ("prefix of % attribute must be modular type", P);
2927 end if;
2928
2929 Set_Etype (N, Universal_Integer);
2930
2931 --------------------
2932 -- Null_Parameter --
2933 --------------------
2934
2935 when Attribute_Null_Parameter => Null_Parameter : declare
2936 Parnt : constant Node_Id := Parent (N);
2937 GParnt : constant Node_Id := Parent (Parnt);
2938
2939 procedure Bad_Null_Parameter (Msg : String);
2940 -- Used if bad Null parameter attribute node is found. Issues
2941 -- given error message, and also sets the type to Any_Type to
2942 -- avoid blowups later on from dealing with a junk node.
2943
2944 procedure Must_Be_Imported (Proc_Ent : Entity_Id);
2945 -- Called to check that Proc_Ent is imported subprogram
2946
2947 ------------------------
2948 -- Bad_Null_Parameter --
2949 ------------------------
2950
2951 procedure Bad_Null_Parameter (Msg : String) is
2952 begin
2953 Error_Msg_N (Msg, N);
2954 Set_Etype (N, Any_Type);
2955 end Bad_Null_Parameter;
2956
2957 ----------------------
2958 -- Must_Be_Imported --
2959 ----------------------
2960
2961 procedure Must_Be_Imported (Proc_Ent : Entity_Id) is
2962 Pent : Entity_Id := Proc_Ent;
2963
2964 begin
2965 while Present (Alias (Pent)) loop
2966 Pent := Alias (Pent);
2967 end loop;
2968
2969 -- Ignore check if procedure not frozen yet (we will get
2970 -- another chance when the default parameter is reanalyzed)
2971
2972 if not Is_Frozen (Pent) then
2973 return;
2974
2975 elsif not Is_Imported (Pent) then
2976 Bad_Null_Parameter
2977 ("Null_Parameter can only be used with imported subprogram");
2978
2979 else
2980 return;
2981 end if;
2982 end Must_Be_Imported;
2983
2984 -- Start of processing for Null_Parameter
2985
2986 begin
2987 Check_Type;
2988 Check_E0;
2989 Set_Etype (N, P_Type);
2990
2991 -- Case of attribute used as default expression
2992
2993 if Nkind (Parnt) = N_Parameter_Specification then
2994 Must_Be_Imported (Defining_Entity (GParnt));
2995
2996 -- Case of attribute used as actual for subprogram (positional)
2997
2998 elsif (Nkind (Parnt) = N_Procedure_Call_Statement
2999 or else
3000 Nkind (Parnt) = N_Function_Call)
3001 and then Is_Entity_Name (Name (Parnt))
3002 then
3003 Must_Be_Imported (Entity (Name (Parnt)));
3004
3005 -- Case of attribute used as actual for subprogram (named)
3006
3007 elsif Nkind (Parnt) = N_Parameter_Association
3008 and then (Nkind (GParnt) = N_Procedure_Call_Statement
3009 or else
3010 Nkind (GParnt) = N_Function_Call)
3011 and then Is_Entity_Name (Name (GParnt))
3012 then
3013 Must_Be_Imported (Entity (Name (GParnt)));
3014
3015 -- Not an allowed case
3016
3017 else
3018 Bad_Null_Parameter
3019 ("Null_Parameter must be actual or default parameter");
3020 end if;
3021
3022 end Null_Parameter;
3023
3024 -----------------
3025 -- Object_Size --
3026 -----------------
3027
3028 when Attribute_Object_Size =>
3029 Check_E0;
3030 Check_Type;
3031 Check_Not_Incomplete_Type;
3032 Set_Etype (N, Universal_Integer);
3033
3034 ------------
3035 -- Output --
3036 ------------
3037
3038 when Attribute_Output =>
3039 Check_E2;
3040 Check_Stream_Attribute (TSS_Stream_Output);
3041 Set_Etype (N, Standard_Void_Type);
3042 Resolve (N, Standard_Void_Type);
3043
3044 ------------------
3045 -- Partition_ID --
3046 ------------------
3047
3048 when Attribute_Partition_ID =>
3049 Check_E0;
3050
3051 if P_Type /= Any_Type then
3052 if not Is_Library_Level_Entity (Entity (P)) then
3053 Error_Attr
3054 ("prefix of % attribute must be library-level entity", P);
3055
3056 -- The defining entity of prefix should not be declared inside
3057 -- a Pure unit. RM E.1(8).
3058 -- The Is_Pure flag has been set during declaration.
3059
3060 elsif Is_Entity_Name (P)
3061 and then Is_Pure (Entity (P))
3062 then
3063 Error_Attr
3064 ("prefix of % attribute must not be declared pure", P);
3065 end if;
3066 end if;
3067
3068 Set_Etype (N, Universal_Integer);
3069
3070 -------------------------
3071 -- Passed_By_Reference --
3072 -------------------------
3073
3074 when Attribute_Passed_By_Reference =>
3075 Check_E0;
3076 Check_Type;
3077 Set_Etype (N, Standard_Boolean);
3078
3079 ------------------
3080 -- Pool_Address --
3081 ------------------
3082
3083 when Attribute_Pool_Address =>
3084 Check_E0;
3085 Set_Etype (N, RTE (RE_Address));
3086
3087 ---------
3088 -- Pos --
3089 ---------
3090
3091 when Attribute_Pos =>
3092 Check_Discrete_Type;
3093 Check_E1;
3094 Resolve (E1, P_Base_Type);
3095 Set_Etype (N, Universal_Integer);
3096
3097 --------------
3098 -- Position --
3099 --------------
3100
3101 when Attribute_Position =>
3102 Check_Component;
3103 Set_Etype (N, Universal_Integer);
3104
3105 ----------
3106 -- Pred --
3107 ----------
3108
3109 when Attribute_Pred =>
3110 Check_Scalar_Type;
3111 Check_E1;
3112 Resolve (E1, P_Base_Type);
3113 Set_Etype (N, P_Base_Type);
3114
3115 -- Nothing to do for real type case
3116
3117 if Is_Real_Type (P_Type) then
3118 null;
3119
3120 -- If not modular type, test for overflow check required
3121
3122 else
3123 if not Is_Modular_Integer_Type (P_Type)
3124 and then not Range_Checks_Suppressed (P_Base_Type)
3125 then
3126 Enable_Range_Check (E1);
3127 end if;
3128 end if;
3129
3130 -----------
3131 -- Range --
3132 -----------
3133
3134 when Attribute_Range =>
3135 Check_Array_Or_Scalar_Type;
3136
3137 if Ada_83
3138 and then Is_Scalar_Type (P_Type)
3139 and then Comes_From_Source (N)
3140 then
3141 Error_Attr
3142 ("(Ada 83) % attribute not allowed for scalar type", P);
3143 end if;
3144
3145 ------------------
3146 -- Range_Length --
3147 ------------------
3148
3149 when Attribute_Range_Length =>
3150 Check_Discrete_Type;
3151 Set_Etype (N, Universal_Integer);
3152
3153 ----------
3154 -- Read --
3155 ----------
3156
3157 when Attribute_Read =>
3158 Check_E2;
3159 Check_Stream_Attribute (TSS_Stream_Read);
3160 Set_Etype (N, Standard_Void_Type);
3161 Resolve (N, Standard_Void_Type);
3162 Note_Possible_Modification (E2);
3163
3164 ---------------
3165 -- Remainder --
3166 ---------------
3167
3168 when Attribute_Remainder =>
3169 Check_Floating_Point_Type_2;
3170 Set_Etype (N, P_Base_Type);
3171 Resolve (E1, P_Base_Type);
3172 Resolve (E2, P_Base_Type);
3173
3174 -----------
3175 -- Round --
3176 -----------
3177
3178 when Attribute_Round =>
3179 Check_E1;
3180 Check_Decimal_Fixed_Point_Type;
3181 Set_Etype (N, P_Base_Type);
3182
3183 -- Because the context is universal_real (3.5.10(12)) it is a legal
3184 -- context for a universal fixed expression. This is the only
3185 -- attribute whose functional description involves U_R.
3186
3187 if Etype (E1) = Universal_Fixed then
3188 declare
3189 Conv : constant Node_Id := Make_Type_Conversion (Loc,
3190 Subtype_Mark => New_Occurrence_Of (Universal_Real, Loc),
3191 Expression => Relocate_Node (E1));
3192
3193 begin
3194 Rewrite (E1, Conv);
3195 Analyze (E1);
3196 end;
3197 end if;
3198
3199 Resolve (E1, Any_Real);
3200
3201 --------------
3202 -- Rounding --
3203 --------------
3204
3205 when Attribute_Rounding =>
3206 Check_Floating_Point_Type_1;
3207 Set_Etype (N, P_Base_Type);
3208 Resolve (E1, P_Base_Type);
3209
3210 ---------------
3211 -- Safe_Emax --
3212 ---------------
3213
3214 when Attribute_Safe_Emax =>
3215 Check_Floating_Point_Type_0;
3216 Set_Etype (N, Universal_Integer);
3217
3218 ----------------
3219 -- Safe_First --
3220 ----------------
3221
3222 when Attribute_Safe_First =>
3223 Check_Floating_Point_Type_0;
3224 Set_Etype (N, Universal_Real);
3225
3226 ----------------
3227 -- Safe_Large --
3228 ----------------
3229
3230 when Attribute_Safe_Large =>
3231 Check_E0;
3232 Check_Real_Type;
3233 Set_Etype (N, Universal_Real);
3234
3235 ---------------
3236 -- Safe_Last --
3237 ---------------
3238
3239 when Attribute_Safe_Last =>
3240 Check_Floating_Point_Type_0;
3241 Set_Etype (N, Universal_Real);
3242
3243 ----------------
3244 -- Safe_Small --
3245 ----------------
3246
3247 when Attribute_Safe_Small =>
3248 Check_E0;
3249 Check_Real_Type;
3250 Set_Etype (N, Universal_Real);
3251
3252 -----------
3253 -- Scale --
3254 -----------
3255
3256 when Attribute_Scale =>
3257 Check_E0;
3258 Check_Decimal_Fixed_Point_Type;
3259 Set_Etype (N, Universal_Integer);
3260
3261 -------------
3262 -- Scaling --
3263 -------------
3264
3265 when Attribute_Scaling =>
3266 Check_Floating_Point_Type_2;
3267 Set_Etype (N, P_Base_Type);
3268 Resolve (E1, P_Base_Type);
3269
3270 ------------------
3271 -- Signed_Zeros --
3272 ------------------
3273
3274 when Attribute_Signed_Zeros =>
3275 Check_Floating_Point_Type_0;
3276 Set_Etype (N, Standard_Boolean);
3277
3278 ----------
3279 -- Size --
3280 ----------
3281
3282 when Attribute_Size | Attribute_VADS_Size =>
3283 Check_E0;
3284
3285 if Is_Object_Reference (P)
3286 or else (Is_Entity_Name (P)
3287 and then Ekind (Entity (P)) = E_Function)
3288 then
3289 Check_Object_Reference (P);
3290
3291 elsif Is_Entity_Name (P)
3292 and then Is_Type (Entity (P))
3293 then
3294 null;
3295
3296 elsif Nkind (P) = N_Type_Conversion
3297 and then not Comes_From_Source (P)
3298 then
3299 null;
3300
3301 else
3302 Error_Attr ("invalid prefix for % attribute", P);
3303 end if;
3304
3305 Check_Not_Incomplete_Type;
3306 Set_Etype (N, Universal_Integer);
3307
3308 -----------
3309 -- Small --
3310 -----------
3311
3312 when Attribute_Small =>
3313 Check_E0;
3314 Check_Real_Type;
3315 Set_Etype (N, Universal_Real);
3316
3317 ------------------
3318 -- Storage_Pool --
3319 ------------------
3320
3321 when Attribute_Storage_Pool =>
3322 if Is_Access_Type (P_Type) then
3323 Check_E0;
3324
3325 -- Set appropriate entity
3326
3327 if Present (Associated_Storage_Pool (Root_Type (P_Type))) then
3328 Set_Entity (N, Associated_Storage_Pool (Root_Type (P_Type)));
3329 else
3330 Set_Entity (N, RTE (RE_Global_Pool_Object));
3331 end if;
3332
3333 Set_Etype (N, Class_Wide_Type (RTE (RE_Root_Storage_Pool)));
3334
3335 -- Validate_Remote_Access_To_Class_Wide_Type for attribute
3336 -- Storage_Pool since this attribute is not defined for such
3337 -- types (RM E.2.3(22)).
3338
3339 Validate_Remote_Access_To_Class_Wide_Type (N);
3340
3341 else
3342 Error_Attr ("prefix of % attribute must be access type", P);
3343 end if;
3344
3345 ------------------
3346 -- Storage_Size --
3347 ------------------
3348
3349 when Attribute_Storage_Size =>
3350
3351 if Is_Task_Type (P_Type) then
3352 Check_E0;
3353 Set_Etype (N, Universal_Integer);
3354
3355 elsif Is_Access_Type (P_Type) then
3356 if Is_Entity_Name (P)
3357 and then Is_Type (Entity (P))
3358 then
3359 Check_E0;
3360 Check_Type;
3361 Set_Etype (N, Universal_Integer);
3362
3363 -- Validate_Remote_Access_To_Class_Wide_Type for attribute
3364 -- Storage_Size since this attribute is not defined for
3365 -- such types (RM E.2.3(22)).
3366
3367 Validate_Remote_Access_To_Class_Wide_Type (N);
3368
3369 -- The prefix is allowed to be an implicit dereference
3370 -- of an access value designating a task.
3371
3372 else
3373 Check_E0;
3374 Check_Task_Prefix;
3375 Set_Etype (N, Universal_Integer);
3376 end if;
3377
3378 else
3379 Error_Attr
3380 ("prefix of % attribute must be access or task type", P);
3381 end if;
3382
3383 ------------------
3384 -- Storage_Unit --
3385 ------------------
3386
3387 when Attribute_Storage_Unit =>
3388 Standard_Attribute (Ttypes.System_Storage_Unit);
3389
3390 ----------
3391 -- Succ --
3392 ----------
3393
3394 when Attribute_Succ =>
3395 Check_Scalar_Type;
3396 Check_E1;
3397 Resolve (E1, P_Base_Type);
3398 Set_Etype (N, P_Base_Type);
3399
3400 -- Nothing to do for real type case
3401
3402 if Is_Real_Type (P_Type) then
3403 null;
3404
3405 -- If not modular type, test for overflow check required.
3406
3407 else
3408 if not Is_Modular_Integer_Type (P_Type)
3409 and then not Range_Checks_Suppressed (P_Base_Type)
3410 then
3411 Enable_Range_Check (E1);
3412 end if;
3413 end if;
3414
3415 ---------
3416 -- Tag --
3417 ---------
3418
3419 when Attribute_Tag =>
3420 Check_E0;
3421 Check_Dereference;
3422
3423 if not Is_Tagged_Type (P_Type) then
3424 Error_Attr ("prefix of % attribute must be tagged", P);
3425
3426 -- Next test does not apply to generated code
3427 -- why not, and what does the illegal reference mean???
3428
3429 elsif Is_Object_Reference (P)
3430 and then not Is_Class_Wide_Type (P_Type)
3431 and then Comes_From_Source (N)
3432 then
3433 Error_Attr
3434 ("% attribute can only be applied to objects of class-wide type",
3435 P);
3436 end if;
3437
3438 Set_Etype (N, RTE (RE_Tag));
3439
3440 -----------------
3441 -- Target_Name --
3442 -----------------
3443
3444 when Attribute_Target_Name => Target_Name : declare
3445 TN : constant String := Sdefault.Target_Name.all;
3446 TL : Integer := TN'Last;
3447
3448 begin
3449 Check_Standard_Prefix;
3450 Check_E0;
3451 Start_String;
3452
3453 if TN (TL) = '/' or else TN (TL) = '\' then
3454 TL := TL - 1;
3455 end if;
3456
3457 Store_String_Chars (TN (TN'First .. TL));
3458
3459 Rewrite (N,
3460 Make_String_Literal (Loc,
3461 Strval => End_String));
3462 Analyze_And_Resolve (N, Standard_String);
3463 end Target_Name;
3464
3465 ----------------
3466 -- Terminated --
3467 ----------------
3468
3469 when Attribute_Terminated =>
3470 Check_E0;
3471 Set_Etype (N, Standard_Boolean);
3472 Check_Task_Prefix;
3473
3474 ----------------
3475 -- To_Address --
3476 ----------------
3477
3478 when Attribute_To_Address =>
3479 Check_E1;
3480 Analyze (P);
3481
3482 if Nkind (P) /= N_Identifier
3483 or else Chars (P) /= Name_System
3484 then
3485 Error_Attr ("prefix of %attribute must be System", P);
3486 end if;
3487
3488 Generate_Reference (RTE (RE_Address), P);
3489 Analyze_And_Resolve (E1, Any_Integer);
3490 Set_Etype (N, RTE (RE_Address));
3491
3492 ----------------
3493 -- Truncation --
3494 ----------------
3495
3496 when Attribute_Truncation =>
3497 Check_Floating_Point_Type_1;
3498 Resolve (E1, P_Base_Type);
3499 Set_Etype (N, P_Base_Type);
3500
3501 ----------------
3502 -- Type_Class --
3503 ----------------
3504
3505 when Attribute_Type_Class =>
3506 Check_E0;
3507 Check_Type;
3508 Check_Not_Incomplete_Type;
3509 Set_Etype (N, RTE (RE_Type_Class));
3510
3511 -----------------
3512 -- UET_Address --
3513 -----------------
3514
3515 when Attribute_UET_Address =>
3516 Check_E0;
3517 Check_Unit_Name (P);
3518 Set_Etype (N, RTE (RE_Address));
3519
3520 -----------------------
3521 -- Unbiased_Rounding --
3522 -----------------------
3523
3524 when Attribute_Unbiased_Rounding =>
3525 Check_Floating_Point_Type_1;
3526 Set_Etype (N, P_Base_Type);
3527 Resolve (E1, P_Base_Type);
3528
3529 ----------------------
3530 -- Unchecked_Access --
3531 ----------------------
3532
3533 when Attribute_Unchecked_Access =>
3534 if Comes_From_Source (N) then
3535 Check_Restriction (No_Unchecked_Access, N);
3536 end if;
3537
3538 Analyze_Access_Attribute;
3539
3540 -------------------------
3541 -- Unconstrained_Array --
3542 -------------------------
3543
3544 when Attribute_Unconstrained_Array =>
3545 Check_E0;
3546 Check_Type;
3547 Check_Not_Incomplete_Type;
3548 Set_Etype (N, Standard_Boolean);
3549
3550 ------------------------------
3551 -- Universal_Literal_String --
3552 ------------------------------
3553
3554 -- This is a GNAT specific attribute whose prefix must be a named
3555 -- number where the expression is either a single numeric literal,
3556 -- or a numeric literal immediately preceded by a minus sign. The
3557 -- result is equivalent to a string literal containing the text of
3558 -- the literal as it appeared in the source program with a possible
3559 -- leading minus sign.
3560
3561 when Attribute_Universal_Literal_String => Universal_Literal_String :
3562 begin
3563 Check_E0;
3564
3565 if not Is_Entity_Name (P)
3566 or else Ekind (Entity (P)) not in Named_Kind
3567 then
3568 Error_Attr ("prefix for % attribute must be named number", P);
3569
3570 else
3571 declare
3572 Expr : Node_Id;
3573 Negative : Boolean;
3574 S : Source_Ptr;
3575 Src : Source_Buffer_Ptr;
3576
3577 begin
3578 Expr := Original_Node (Expression (Parent (Entity (P))));
3579
3580 if Nkind (Expr) = N_Op_Minus then
3581 Negative := True;
3582 Expr := Original_Node (Right_Opnd (Expr));
3583 else
3584 Negative := False;
3585 end if;
3586
3587 if Nkind (Expr) /= N_Integer_Literal
3588 and then Nkind (Expr) /= N_Real_Literal
3589 then
3590 Error_Attr
3591 ("named number for % attribute must be simple literal", N);
3592 end if;
3593
3594 -- Build string literal corresponding to source literal text
3595
3596 Start_String;
3597
3598 if Negative then
3599 Store_String_Char (Get_Char_Code ('-'));
3600 end if;
3601
3602 S := Sloc (Expr);
3603 Src := Source_Text (Get_Source_File_Index (S));
3604
3605 while Src (S) /= ';' and then Src (S) /= ' ' loop
3606 Store_String_Char (Get_Char_Code (Src (S)));
3607 S := S + 1;
3608 end loop;
3609
3610 -- Now we rewrite the attribute with the string literal
3611
3612 Rewrite (N,
3613 Make_String_Literal (Loc, End_String));
3614 Analyze (N);
3615 end;
3616 end if;
3617 end Universal_Literal_String;
3618
3619 -------------------------
3620 -- Unrestricted_Access --
3621 -------------------------
3622
3623 -- This is a GNAT specific attribute which is like Access except that
3624 -- all scope checks and checks for aliased views are omitted.
3625
3626 when Attribute_Unrestricted_Access =>
3627 if Comes_From_Source (N) then
3628 Check_Restriction (No_Unchecked_Access, N);
3629 end if;
3630
3631 if Is_Entity_Name (P) then
3632 Set_Address_Taken (Entity (P));
3633 end if;
3634
3635 Analyze_Access_Attribute;
3636
3637 ---------
3638 -- Val --
3639 ---------
3640
3641 when Attribute_Val => Val : declare
3642 begin
3643 Check_E1;
3644 Check_Discrete_Type;
3645 Resolve (E1, Any_Integer);
3646 Set_Etype (N, P_Base_Type);
3647
3648 -- Note, we need a range check in general, but we wait for the
3649 -- Resolve call to do this, since we want to let Eval_Attribute
3650 -- have a chance to find an static illegality first!
3651 end Val;
3652
3653 -----------
3654 -- Valid --
3655 -----------
3656
3657 when Attribute_Valid =>
3658 Check_E0;
3659
3660 -- Ignore check for object if we have a 'Valid reference generated
3661 -- by the expanded code, since in some cases valid checks can occur
3662 -- on items that are names, but are not objects (e.g. attributes).
3663
3664 if Comes_From_Source (N) then
3665 Check_Object_Reference (P);
3666 end if;
3667
3668 if not Is_Scalar_Type (P_Type) then
3669 Error_Attr ("object for % attribute must be of scalar type", P);
3670 end if;
3671
3672 Set_Etype (N, Standard_Boolean);
3673
3674 -----------
3675 -- Value --
3676 -----------
3677
3678 when Attribute_Value => Value :
3679 begin
3680 Check_E1;
3681 Check_Scalar_Type;
3682
3683 if Is_Enumeration_Type (P_Type) then
3684 Check_Restriction (No_Enumeration_Maps, N);
3685 end if;
3686
3687 -- Set Etype before resolving expression because expansion of
3688 -- expression may require enclosing type. Note that the type
3689 -- returned by 'Value is the base type of the prefix type.
3690
3691 Set_Etype (N, P_Base_Type);
3692 Validate_Non_Static_Attribute_Function_Call;
3693 end Value;
3694
3695 ----------------
3696 -- Value_Size --
3697 ----------------
3698
3699 when Attribute_Value_Size =>
3700 Check_E0;
3701 Check_Type;
3702 Check_Not_Incomplete_Type;
3703 Set_Etype (N, Universal_Integer);
3704
3705 -------------
3706 -- Version --
3707 -------------
3708
3709 when Attribute_Version =>
3710 Check_E0;
3711 Check_Program_Unit;
3712 Set_Etype (N, RTE (RE_Version_String));
3713
3714 ------------------
3715 -- Wchar_T_Size --
3716 ------------------
3717
3718 when Attribute_Wchar_T_Size =>
3719 Standard_Attribute (Interfaces_Wchar_T_Size);
3720
3721 ----------------
3722 -- Wide_Image --
3723 ----------------
3724
3725 when Attribute_Wide_Image => Wide_Image :
3726 begin
3727 Check_Scalar_Type;
3728 Set_Etype (N, Standard_Wide_String);
3729 Check_E1;
3730 Resolve (E1, P_Base_Type);
3731 Validate_Non_Static_Attribute_Function_Call;
3732 end Wide_Image;
3733
3734 ----------------
3735 -- Wide_Value --
3736 ----------------
3737
3738 when Attribute_Wide_Value => Wide_Value :
3739 begin
3740 Check_E1;
3741 Check_Scalar_Type;
3742
3743 -- Set Etype before resolving expression because expansion
3744 -- of expression may require enclosing type.
3745
3746 Set_Etype (N, P_Type);
3747 Validate_Non_Static_Attribute_Function_Call;
3748 end Wide_Value;
3749
3750 ----------------
3751 -- Wide_Width --
3752 ----------------
3753
3754 when Attribute_Wide_Width =>
3755 Check_E0;
3756 Check_Scalar_Type;
3757 Set_Etype (N, Universal_Integer);
3758
3759 -----------
3760 -- Width --
3761 -----------
3762
3763 when Attribute_Width =>
3764 Check_E0;
3765 Check_Scalar_Type;
3766 Set_Etype (N, Universal_Integer);
3767
3768 ---------------
3769 -- Word_Size --
3770 ---------------
3771
3772 when Attribute_Word_Size =>
3773 Standard_Attribute (System_Word_Size);
3774
3775 -----------
3776 -- Write --
3777 -----------
3778
3779 when Attribute_Write =>
3780 Check_E2;
3781 Check_Stream_Attribute (TSS_Stream_Write);
3782 Set_Etype (N, Standard_Void_Type);
3783 Resolve (N, Standard_Void_Type);
3784
3785 end case;
3786
3787 -- All errors raise Bad_Attribute, so that we get out before any further
3788 -- damage occurs when an error is detected (for example, if we check for
3789 -- one attribute expression, and the check succeeds, we want to be able
3790 -- to proceed securely assuming that an expression is in fact present.
3791
3792 exception
3793 when Bad_Attribute =>
3794 Set_Etype (N, Any_Type);
3795 return;
3796
3797 end Analyze_Attribute;
3798
3799 --------------------
3800 -- Eval_Attribute --
3801 --------------------
3802
3803 procedure Eval_Attribute (N : Node_Id) is
3804 Loc : constant Source_Ptr := Sloc (N);
3805 Aname : constant Name_Id := Attribute_Name (N);
3806 Id : constant Attribute_Id := Get_Attribute_Id (Aname);
3807 P : constant Node_Id := Prefix (N);
3808
3809 C_Type : constant Entity_Id := Etype (N);
3810 -- The type imposed by the context.
3811
3812 E1 : Node_Id;
3813 -- First expression, or Empty if none
3814
3815 E2 : Node_Id;
3816 -- Second expression, or Empty if none
3817
3818 P_Entity : Entity_Id;
3819 -- Entity denoted by prefix
3820
3821 P_Type : Entity_Id;
3822 -- The type of the prefix
3823
3824 P_Base_Type : Entity_Id;
3825 -- The base type of the prefix type
3826
3827 P_Root_Type : Entity_Id;
3828 -- The root type of the prefix type
3829
3830 Static : Boolean;
3831 -- True if the result is Static. This is set by the general processing
3832 -- to true if the prefix is static, and all expressions are static. It
3833 -- can be reset as processing continues for particular attributes
3834
3835 Lo_Bound, Hi_Bound : Node_Id;
3836 -- Expressions for low and high bounds of type or array index referenced
3837 -- by First, Last, or Length attribute for array, set by Set_Bounds.
3838
3839 CE_Node : Node_Id;
3840 -- Constraint error node used if we have an attribute reference has
3841 -- an argument that raises a constraint error. In this case we replace
3842 -- the attribute with a raise constraint_error node. This is important
3843 -- processing, since otherwise gigi might see an attribute which it is
3844 -- unprepared to deal with.
3845
3846 function Aft_Value return Nat;
3847 -- Computes Aft value for current attribute prefix (used by Aft itself
3848 -- and also by Width for computing the Width of a fixed point type).
3849
3850 procedure Check_Expressions;
3851 -- In case where the attribute is not foldable, the expressions, if
3852 -- any, of the attribute, are in a non-static context. This procedure
3853 -- performs the required additional checks.
3854
3855 function Compile_Time_Known_Bounds (Typ : Entity_Id) return Boolean;
3856 -- Determines if the given type has compile time known bounds. Note
3857 -- that we enter the case statement even in cases where the prefix
3858 -- type does NOT have known bounds, so it is important to guard any
3859 -- attempt to evaluate both bounds with a call to this function.
3860
3861 procedure Compile_Time_Known_Attribute (N : Node_Id; Val : Uint);
3862 -- This procedure is called when the attribute N has a non-static
3863 -- but compile time known value given by Val. It includes the
3864 -- necessary checks for out of range values.
3865
3866 procedure Float_Attribute_Universal_Integer
3867 (IEEES_Val : Int;
3868 IEEEL_Val : Int;
3869 IEEEX_Val : Int;
3870 VAXFF_Val : Int;
3871 VAXDF_Val : Int;
3872 VAXGF_Val : Int;
3873 AAMPS_Val : Int;
3874 AAMPL_Val : Int);
3875 -- This procedure evaluates a float attribute with no arguments that
3876 -- returns a universal integer result. The parameters give the values
3877 -- for the possible floating-point root types. See ttypef for details.
3878 -- The prefix type is a float type (and is thus not a generic type).
3879
3880 procedure Float_Attribute_Universal_Real
3881 (IEEES_Val : String;
3882 IEEEL_Val : String;
3883 IEEEX_Val : String;
3884 VAXFF_Val : String;
3885 VAXDF_Val : String;
3886 VAXGF_Val : String;
3887 AAMPS_Val : String;
3888 AAMPL_Val : String);
3889 -- This procedure evaluates a float attribute with no arguments that
3890 -- returns a universal real result. The parameters give the values
3891 -- required for the possible floating-point root types in string
3892 -- format as real literals with a possible leading minus sign.
3893 -- The prefix type is a float type (and is thus not a generic type).
3894
3895 function Fore_Value return Nat;
3896 -- Computes the Fore value for the current attribute prefix, which is
3897 -- known to be a static fixed-point type. Used by Fore and Width.
3898
3899 function Mantissa return Uint;
3900 -- Returns the Mantissa value for the prefix type
3901
3902 procedure Set_Bounds;
3903 -- Used for First, Last and Length attributes applied to an array or
3904 -- array subtype. Sets the variables Lo_Bound and Hi_Bound to the low
3905 -- and high bound expressions for the index referenced by the attribute
3906 -- designator (i.e. the first index if no expression is present, and
3907 -- the N'th index if the value N is present as an expression). Also
3908 -- used for First and Last of scalar types. Static is reset to False
3909 -- if the type or index type is not statically constrained.
3910
3911 ---------------
3912 -- Aft_Value --
3913 ---------------
3914
3915 function Aft_Value return Nat is
3916 Result : Nat;
3917 Delta_Val : Ureal;
3918
3919 begin
3920 Result := 1;
3921 Delta_Val := Delta_Value (P_Type);
3922
3923 while Delta_Val < Ureal_Tenth loop
3924 Delta_Val := Delta_Val * Ureal_10;
3925 Result := Result + 1;
3926 end loop;
3927
3928 return Result;
3929 end Aft_Value;
3930
3931 -----------------------
3932 -- Check_Expressions --
3933 -----------------------
3934
3935 procedure Check_Expressions is
3936 E : Node_Id := E1;
3937
3938 begin
3939 while Present (E) loop
3940 Check_Non_Static_Context (E);
3941 Next (E);
3942 end loop;
3943 end Check_Expressions;
3944
3945 ----------------------------------
3946 -- Compile_Time_Known_Attribute --
3947 ----------------------------------
3948
3949 procedure Compile_Time_Known_Attribute (N : Node_Id; Val : Uint) is
3950 T : constant Entity_Id := Etype (N);
3951
3952 begin
3953 Fold_Uint (N, Val, False);
3954
3955 -- Check that result is in bounds of the type if it is static
3956
3957 if Is_In_Range (N, T) then
3958 null;
3959
3960 elsif Is_Out_Of_Range (N, T) then
3961 Apply_Compile_Time_Constraint_Error
3962 (N, "value not in range of}?", CE_Range_Check_Failed);
3963
3964 elsif not Range_Checks_Suppressed (T) then
3965 Enable_Range_Check (N);
3966
3967 else
3968 Set_Do_Range_Check (N, False);
3969 end if;
3970 end Compile_Time_Known_Attribute;
3971
3972 -------------------------------
3973 -- Compile_Time_Known_Bounds --
3974 -------------------------------
3975
3976 function Compile_Time_Known_Bounds (Typ : Entity_Id) return Boolean is
3977 begin
3978 return
3979 Compile_Time_Known_Value (Type_Low_Bound (Typ))
3980 and then
3981 Compile_Time_Known_Value (Type_High_Bound (Typ));
3982 end Compile_Time_Known_Bounds;
3983
3984 ---------------------------------------
3985 -- Float_Attribute_Universal_Integer --
3986 ---------------------------------------
3987
3988 procedure Float_Attribute_Universal_Integer
3989 (IEEES_Val : Int;
3990 IEEEL_Val : Int;
3991 IEEEX_Val : Int;
3992 VAXFF_Val : Int;
3993 VAXDF_Val : Int;
3994 VAXGF_Val : Int;
3995 AAMPS_Val : Int;
3996 AAMPL_Val : Int)
3997 is
3998 Val : Int;
3999 Digs : constant Nat := UI_To_Int (Digits_Value (P_Base_Type));
4000
4001 begin
4002 if Vax_Float (P_Base_Type) then
4003 if Digs = VAXFF_Digits then
4004 Val := VAXFF_Val;
4005 elsif Digs = VAXDF_Digits then
4006 Val := VAXDF_Val;
4007 else pragma Assert (Digs = VAXGF_Digits);
4008 Val := VAXGF_Val;
4009 end if;
4010
4011 elsif Is_AAMP_Float (P_Base_Type) then
4012 if Digs = AAMPS_Digits then
4013 Val := AAMPS_Val;
4014 else pragma Assert (Digs = AAMPL_Digits);
4015 Val := AAMPL_Val;
4016 end if;
4017
4018 else
4019 if Digs = IEEES_Digits then
4020 Val := IEEES_Val;
4021 elsif Digs = IEEEL_Digits then
4022 Val := IEEEL_Val;
4023 else pragma Assert (Digs = IEEEX_Digits);
4024 Val := IEEEX_Val;
4025 end if;
4026 end if;
4027
4028 Fold_Uint (N, UI_From_Int (Val), True);
4029 end Float_Attribute_Universal_Integer;
4030
4031 ------------------------------------
4032 -- Float_Attribute_Universal_Real --
4033 ------------------------------------
4034
4035 procedure Float_Attribute_Universal_Real
4036 (IEEES_Val : String;
4037 IEEEL_Val : String;
4038 IEEEX_Val : String;
4039 VAXFF_Val : String;
4040 VAXDF_Val : String;
4041 VAXGF_Val : String;
4042 AAMPS_Val : String;
4043 AAMPL_Val : String)
4044 is
4045 Val : Node_Id;
4046 Digs : constant Nat := UI_To_Int (Digits_Value (P_Base_Type));
4047
4048 begin
4049 if Vax_Float (P_Base_Type) then
4050 if Digs = VAXFF_Digits then
4051 Val := Real_Convert (VAXFF_Val);
4052 elsif Digs = VAXDF_Digits then
4053 Val := Real_Convert (VAXDF_Val);
4054 else pragma Assert (Digs = VAXGF_Digits);
4055 Val := Real_Convert (VAXGF_Val);
4056 end if;
4057
4058 elsif Is_AAMP_Float (P_Base_Type) then
4059 if Digs = AAMPS_Digits then
4060 Val := Real_Convert (AAMPS_Val);
4061 else pragma Assert (Digs = AAMPL_Digits);
4062 Val := Real_Convert (AAMPL_Val);
4063 end if;
4064
4065 else
4066 if Digs = IEEES_Digits then
4067 Val := Real_Convert (IEEES_Val);
4068 elsif Digs = IEEEL_Digits then
4069 Val := Real_Convert (IEEEL_Val);
4070 else pragma Assert (Digs = IEEEX_Digits);
4071 Val := Real_Convert (IEEEX_Val);
4072 end if;
4073 end if;
4074
4075 Set_Sloc (Val, Loc);
4076 Rewrite (N, Val);
4077 Set_Is_Static_Expression (N, Static);
4078 Analyze_And_Resolve (N, C_Type);
4079 end Float_Attribute_Universal_Real;
4080
4081 ----------------
4082 -- Fore_Value --
4083 ----------------
4084
4085 -- Note that the Fore calculation is based on the actual values
4086 -- of the bounds, and does not take into account possible rounding.
4087
4088 function Fore_Value return Nat is
4089 Lo : constant Uint := Expr_Value (Type_Low_Bound (P_Type));
4090 Hi : constant Uint := Expr_Value (Type_High_Bound (P_Type));
4091 Small : constant Ureal := Small_Value (P_Type);
4092 Lo_Real : constant Ureal := Lo * Small;
4093 Hi_Real : constant Ureal := Hi * Small;
4094 T : Ureal;
4095 R : Nat;
4096
4097 begin
4098 -- Bounds are given in terms of small units, so first compute
4099 -- proper values as reals.
4100
4101 T := UR_Max (abs Lo_Real, abs Hi_Real);
4102 R := 2;
4103
4104 -- Loop to compute proper value if more than one digit required
4105
4106 while T >= Ureal_10 loop
4107 R := R + 1;
4108 T := T / Ureal_10;
4109 end loop;
4110
4111 return R;
4112 end Fore_Value;
4113
4114 --------------
4115 -- Mantissa --
4116 --------------
4117
4118 -- Table of mantissa values accessed by function Computed using
4119 -- the relation:
4120
4121 -- T'Mantissa = integer next above (D * log(10)/log(2)) + 1)
4122
4123 -- where D is T'Digits (RM83 3.5.7)
4124
4125 Mantissa_Value : constant array (Nat range 1 .. 40) of Nat := (
4126 1 => 5,
4127 2 => 8,
4128 3 => 11,
4129 4 => 15,
4130 5 => 18,
4131 6 => 21,
4132 7 => 25,
4133 8 => 28,
4134 9 => 31,
4135 10 => 35,
4136 11 => 38,
4137 12 => 41,
4138 13 => 45,
4139 14 => 48,
4140 15 => 51,
4141 16 => 55,
4142 17 => 58,
4143 18 => 61,
4144 19 => 65,
4145 20 => 68,
4146 21 => 71,
4147 22 => 75,
4148 23 => 78,
4149 24 => 81,
4150 25 => 85,
4151 26 => 88,
4152 27 => 91,
4153 28 => 95,
4154 29 => 98,
4155 30 => 101,
4156 31 => 104,
4157 32 => 108,
4158 33 => 111,
4159 34 => 114,
4160 35 => 118,
4161 36 => 121,
4162 37 => 124,
4163 38 => 128,
4164 39 => 131,
4165 40 => 134);
4166
4167 function Mantissa return Uint is
4168 begin
4169 return
4170 UI_From_Int (Mantissa_Value (UI_To_Int (Digits_Value (P_Type))));
4171 end Mantissa;
4172
4173 ----------------
4174 -- Set_Bounds --
4175 ----------------
4176
4177 procedure Set_Bounds is
4178 Ndim : Nat;
4179 Indx : Node_Id;
4180 Ityp : Entity_Id;
4181
4182 begin
4183 -- For a string literal subtype, we have to construct the bounds.
4184 -- Valid Ada code never applies attributes to string literals, but
4185 -- it is convenient to allow the expander to generate attribute
4186 -- references of this type (e.g. First and Last applied to a string
4187 -- literal).
4188
4189 -- Note that the whole point of the E_String_Literal_Subtype is to
4190 -- avoid this construction of bounds, but the cases in which we
4191 -- have to materialize them are rare enough that we don't worry!
4192
4193 -- The low bound is simply the low bound of the base type. The
4194 -- high bound is computed from the length of the string and this
4195 -- low bound.
4196
4197 if Ekind (P_Type) = E_String_Literal_Subtype then
4198 Ityp := Etype (First_Index (Base_Type (P_Type)));
4199 Lo_Bound := Type_Low_Bound (Ityp);
4200
4201 Hi_Bound :=
4202 Make_Integer_Literal (Sloc (P),
4203 Intval =>
4204 Expr_Value (Lo_Bound) + String_Literal_Length (P_Type) - 1);
4205
4206 Set_Parent (Hi_Bound, P);
4207 Analyze_And_Resolve (Hi_Bound, Etype (Lo_Bound));
4208 return;
4209
4210 -- For non-array case, just get bounds of scalar type
4211
4212 elsif Is_Scalar_Type (P_Type) then
4213 Ityp := P_Type;
4214
4215 -- For a fixed-point type, we must freeze to get the attributes
4216 -- of the fixed-point type set now so we can reference them.
4217
4218 if Is_Fixed_Point_Type (P_Type)
4219 and then not Is_Frozen (Base_Type (P_Type))
4220 and then Compile_Time_Known_Value (Type_Low_Bound (P_Type))
4221 and then Compile_Time_Known_Value (Type_High_Bound (P_Type))
4222 then
4223 Freeze_Fixed_Point_Type (Base_Type (P_Type));
4224 end if;
4225
4226 -- For array case, get type of proper index
4227
4228 else
4229 if No (E1) then
4230 Ndim := 1;
4231 else
4232 Ndim := UI_To_Int (Expr_Value (E1));
4233 end if;
4234
4235 Indx := First_Index (P_Type);
4236 for J in 1 .. Ndim - 1 loop
4237 Next_Index (Indx);
4238 end loop;
4239
4240 -- If no index type, get out (some other error occurred, and
4241 -- we don't have enough information to complete the job!)
4242
4243 if No (Indx) then
4244 Lo_Bound := Error;
4245 Hi_Bound := Error;
4246 return;
4247 end if;
4248
4249 Ityp := Etype (Indx);
4250 end if;
4251
4252 -- A discrete range in an index constraint is allowed to be a
4253 -- subtype indication. This is syntactically a pain, but should
4254 -- not propagate to the entity for the corresponding index subtype.
4255 -- After checking that the subtype indication is legal, the range
4256 -- of the subtype indication should be transfered to the entity.
4257 -- The attributes for the bounds should remain the simple retrievals
4258 -- that they are now.
4259
4260 Lo_Bound := Type_Low_Bound (Ityp);
4261 Hi_Bound := Type_High_Bound (Ityp);
4262
4263 if not Is_Static_Subtype (Ityp) then
4264 Static := False;
4265 end if;
4266 end Set_Bounds;
4267
4268 -- Start of processing for Eval_Attribute
4269
4270 begin
4271 -- Acquire first two expressions (at the moment, no attributes
4272 -- take more than two expressions in any case).
4273
4274 if Present (Expressions (N)) then
4275 E1 := First (Expressions (N));
4276 E2 := Next (E1);
4277 else
4278 E1 := Empty;
4279 E2 := Empty;
4280 end if;
4281
4282 -- Special processing for cases where the prefix is an object. For
4283 -- this purpose, a string literal counts as an object (attributes
4284 -- of string literals can only appear in generated code).
4285
4286 if Is_Object_Reference (P) or else Nkind (P) = N_String_Literal then
4287
4288 -- For Component_Size, the prefix is an array object, and we apply
4289 -- the attribute to the type of the object. This is allowed for
4290 -- both unconstrained and constrained arrays, since the bounds
4291 -- have no influence on the value of this attribute.
4292
4293 if Id = Attribute_Component_Size then
4294 P_Entity := Etype (P);
4295
4296 -- For First and Last, the prefix is an array object, and we apply
4297 -- the attribute to the type of the array, but we need a constrained
4298 -- type for this, so we use the actual subtype if available.
4299
4300 elsif Id = Attribute_First
4301 or else
4302 Id = Attribute_Last
4303 or else
4304 Id = Attribute_Length
4305 then
4306 declare
4307 AS : constant Entity_Id := Get_Actual_Subtype_If_Available (P);
4308
4309 begin
4310 if Present (AS) and then Is_Constrained (AS) then
4311 P_Entity := AS;
4312
4313 -- If we have an unconstrained type, cannot fold
4314
4315 else
4316 Check_Expressions;
4317 return;
4318 end if;
4319 end;
4320
4321 -- For Size, give size of object if available, otherwise we
4322 -- cannot fold Size.
4323
4324 elsif Id = Attribute_Size then
4325 if Is_Entity_Name (P)
4326 and then Known_Esize (Entity (P))
4327 then
4328 Compile_Time_Known_Attribute (N, Esize (Entity (P)));
4329 return;
4330
4331 else
4332 Check_Expressions;
4333 return;
4334 end if;
4335
4336 -- For Alignment, give size of object if available, otherwise we
4337 -- cannot fold Alignment.
4338
4339 elsif Id = Attribute_Alignment then
4340 if Is_Entity_Name (P)
4341 and then Known_Alignment (Entity (P))
4342 then
4343 Fold_Uint (N, Alignment (Entity (P)), False);
4344 return;
4345
4346 else
4347 Check_Expressions;
4348 return;
4349 end if;
4350
4351 -- No other attributes for objects are folded
4352
4353 else
4354 Check_Expressions;
4355 return;
4356 end if;
4357
4358 -- Cases where P is not an object. Cannot do anything if P is
4359 -- not the name of an entity.
4360
4361 elsif not Is_Entity_Name (P) then
4362 Check_Expressions;
4363 return;
4364
4365 -- Otherwise get prefix entity
4366
4367 else
4368 P_Entity := Entity (P);
4369 end if;
4370
4371 -- At this stage P_Entity is the entity to which the attribute
4372 -- is to be applied. This is usually simply the entity of the
4373 -- prefix, except in some cases of attributes for objects, where
4374 -- as described above, we apply the attribute to the object type.
4375
4376 -- First foldable possibility is a scalar or array type (RM 4.9(7))
4377 -- that is not generic (generic types are eliminated by RM 4.9(25)).
4378 -- Note we allow non-static non-generic types at this stage as further
4379 -- described below.
4380
4381 if Is_Type (P_Entity)
4382 and then (Is_Scalar_Type (P_Entity) or Is_Array_Type (P_Entity))
4383 and then (not Is_Generic_Type (P_Entity))
4384 then
4385 P_Type := P_Entity;
4386
4387 -- Second foldable possibility is an array object (RM 4.9(8))
4388
4389 elsif (Ekind (P_Entity) = E_Variable
4390 or else
4391 Ekind (P_Entity) = E_Constant)
4392 and then Is_Array_Type (Etype (P_Entity))
4393 and then (not Is_Generic_Type (Etype (P_Entity)))
4394 then
4395 P_Type := Etype (P_Entity);
4396
4397 -- If the entity is an array constant with an unconstrained
4398 -- nominal subtype then get the type from the initial value.
4399 -- If the value has been expanded into assignments, the expression
4400 -- is not present and the attribute reference remains dynamic.
4401 -- We could do better here and retrieve the type ???
4402
4403 if Ekind (P_Entity) = E_Constant
4404 and then not Is_Constrained (P_Type)
4405 then
4406 if No (Constant_Value (P_Entity)) then
4407 return;
4408 else
4409 P_Type := Etype (Constant_Value (P_Entity));
4410 end if;
4411 end if;
4412
4413 -- Definite must be folded if the prefix is not a generic type,
4414 -- that is to say if we are within an instantiation. Same processing
4415 -- applies to the GNAT attributes Has_Discriminants, Type_Class,
4416 -- and Unconstrained_Array.
4417
4418 elsif (Id = Attribute_Definite
4419 or else
4420 Id = Attribute_Has_Discriminants
4421 or else
4422 Id = Attribute_Type_Class
4423 or else
4424 Id = Attribute_Unconstrained_Array)
4425 and then not Is_Generic_Type (P_Entity)
4426 then
4427 P_Type := P_Entity;
4428
4429 -- We can fold 'Size applied to a type if the size is known
4430 -- (as happens for a size from an attribute definition clause).
4431 -- At this stage, this can happen only for types (e.g. record
4432 -- types) for which the size is always non-static. We exclude
4433 -- generic types from consideration (since they have bogus
4434 -- sizes set within templates).
4435
4436 elsif Id = Attribute_Size
4437 and then Is_Type (P_Entity)
4438 and then (not Is_Generic_Type (P_Entity))
4439 and then Known_Static_RM_Size (P_Entity)
4440 then
4441 Compile_Time_Known_Attribute (N, RM_Size (P_Entity));
4442 return;
4443
4444 -- We can fold 'Alignment applied to a type if the alignment is known
4445 -- (as happens for an alignment from an attribute definition clause).
4446 -- At this stage, this can happen only for types (e.g. record
4447 -- types) for which the size is always non-static. We exclude
4448 -- generic types from consideration (since they have bogus
4449 -- sizes set within templates).
4450
4451 elsif Id = Attribute_Alignment
4452 and then Is_Type (P_Entity)
4453 and then (not Is_Generic_Type (P_Entity))
4454 and then Known_Alignment (P_Entity)
4455 then
4456 Compile_Time_Known_Attribute (N, Alignment (P_Entity));
4457 return;
4458
4459 -- No other cases are foldable (they certainly aren't static, and at
4460 -- the moment we don't try to fold any cases other than these three).
4461
4462 else
4463 Check_Expressions;
4464 return;
4465 end if;
4466
4467 -- If either attribute or the prefix is Any_Type, then propagate
4468 -- Any_Type to the result and don't do anything else at all.
4469
4470 if P_Type = Any_Type
4471 or else (Present (E1) and then Etype (E1) = Any_Type)
4472 or else (Present (E2) and then Etype (E2) = Any_Type)
4473 then
4474 Set_Etype (N, Any_Type);
4475 return;
4476 end if;
4477
4478 -- Scalar subtype case. We have not yet enforced the static requirement
4479 -- of (RM 4.9(7)) and we don't intend to just yet, since there are cases
4480 -- of non-static attribute references (e.g. S'Digits for a non-static
4481 -- floating-point type, which we can compute at compile time).
4482
4483 -- Note: this folding of non-static attributes is not simply a case of
4484 -- optimization. For many of the attributes affected, Gigi cannot handle
4485 -- the attribute and depends on the front end having folded them away.
4486
4487 -- Note: although we don't require staticness at this stage, we do set
4488 -- the Static variable to record the staticness, for easy reference by
4489 -- those attributes where it matters (e.g. Succ and Pred), and also to
4490 -- be used to ensure that non-static folded things are not marked as
4491 -- being static (a check that is done right at the end).
4492
4493 P_Root_Type := Root_Type (P_Type);
4494 P_Base_Type := Base_Type (P_Type);
4495
4496 -- If the root type or base type is generic, then we cannot fold. This
4497 -- test is needed because subtypes of generic types are not always
4498 -- marked as being generic themselves (which seems odd???)
4499
4500 if Is_Generic_Type (P_Root_Type)
4501 or else Is_Generic_Type (P_Base_Type)
4502 then
4503 return;
4504 end if;
4505
4506 if Is_Scalar_Type (P_Type) then
4507 Static := Is_OK_Static_Subtype (P_Type);
4508
4509 -- Array case. We enforce the constrained requirement of (RM 4.9(7-8))
4510 -- since we can't do anything with unconstrained arrays. In addition,
4511 -- only the First, Last and Length attributes are possibly static.
4512 -- In addition Component_Size is possibly foldable, even though it
4513 -- can never be static.
4514
4515 -- Definite, Has_Discriminants, Type_Class and Unconstrained_Array are
4516 -- again exceptions, because they apply as well to unconstrained types.
4517
4518 elsif Id = Attribute_Definite
4519 or else
4520 Id = Attribute_Has_Discriminants
4521 or else
4522 Id = Attribute_Type_Class
4523 or else
4524 Id = Attribute_Unconstrained_Array
4525 then
4526 Static := False;
4527
4528 else
4529 if not Is_Constrained (P_Type)
4530 or else (Id /= Attribute_Component_Size and then
4531 Id /= Attribute_First and then
4532 Id /= Attribute_Last and then
4533 Id /= Attribute_Length)
4534 then
4535 Check_Expressions;
4536 return;
4537 end if;
4538
4539 -- The rules in (RM 4.9(7,8)) require a static array, but as in the
4540 -- scalar case, we hold off on enforcing staticness, since there are
4541 -- cases which we can fold at compile time even though they are not
4542 -- static (e.g. 'Length applied to a static index, even though other
4543 -- non-static indexes make the array type non-static). This is only
4544 -- an optimization, but it falls out essentially free, so why not.
4545 -- Again we compute the variable Static for easy reference later
4546 -- (note that no array attributes are static in Ada 83).
4547
4548 Static := Ada_95;
4549
4550 declare
4551 N : Node_Id;
4552
4553 begin
4554 N := First_Index (P_Type);
4555 while Present (N) loop
4556 Static := Static and then Is_Static_Subtype (Etype (N));
4557
4558 -- If however the index type is generic, attributes cannot
4559 -- be folded.
4560
4561 if Is_Generic_Type (Etype (N))
4562 and then Id /= Attribute_Component_Size
4563 then
4564 return;
4565 end if;
4566
4567 Next_Index (N);
4568 end loop;
4569 end;
4570 end if;
4571
4572 -- Check any expressions that are present. Note that these expressions,
4573 -- depending on the particular attribute type, are either part of the
4574 -- attribute designator, or they are arguments in a case where the
4575 -- attribute reference returns a function. In the latter case, the
4576 -- rule in (RM 4.9(22)) applies and in particular requires the type
4577 -- of the expressions to be scalar in order for the attribute to be
4578 -- considered to be static.
4579
4580 declare
4581 E : Node_Id;
4582
4583 begin
4584 E := E1;
4585 while Present (E) loop
4586
4587 -- If expression is not static, then the attribute reference
4588 -- result certainly cannot be static.
4589
4590 if not Is_Static_Expression (E) then
4591 Static := False;
4592 end if;
4593
4594 -- If the result is not known at compile time, or is not of
4595 -- a scalar type, then the result is definitely not static,
4596 -- so we can quit now.
4597
4598 if not Compile_Time_Known_Value (E)
4599 or else not Is_Scalar_Type (Etype (E))
4600 then
4601 -- An odd special case, if this is a Pos attribute, this
4602 -- is where we need to apply a range check since it does
4603 -- not get done anywhere else.
4604
4605 if Id = Attribute_Pos then
4606 if Is_Integer_Type (Etype (E)) then
4607 Apply_Range_Check (E, Etype (N));
4608 end if;
4609 end if;
4610
4611 Check_Expressions;
4612 return;
4613
4614 -- If the expression raises a constraint error, then so does
4615 -- the attribute reference. We keep going in this case because
4616 -- we are still interested in whether the attribute reference
4617 -- is static even if it is not static.
4618
4619 elsif Raises_Constraint_Error (E) then
4620 Set_Raises_Constraint_Error (N);
4621 end if;
4622
4623 Next (E);
4624 end loop;
4625
4626 if Raises_Constraint_Error (Prefix (N)) then
4627 return;
4628 end if;
4629 end;
4630
4631 -- Deal with the case of a static attribute reference that raises
4632 -- constraint error. The Raises_Constraint_Error flag will already
4633 -- have been set, and the Static flag shows whether the attribute
4634 -- reference is static. In any case we certainly can't fold such an
4635 -- attribute reference.
4636
4637 -- Note that the rewriting of the attribute node with the constraint
4638 -- error node is essential in this case, because otherwise Gigi might
4639 -- blow up on one of the attributes it never expects to see.
4640
4641 -- The constraint_error node must have the type imposed by the context,
4642 -- to avoid spurious errors in the enclosing expression.
4643
4644 if Raises_Constraint_Error (N) then
4645 CE_Node :=
4646 Make_Raise_Constraint_Error (Sloc (N),
4647 Reason => CE_Range_Check_Failed);
4648 Set_Etype (CE_Node, Etype (N));
4649 Set_Raises_Constraint_Error (CE_Node);
4650 Check_Expressions;
4651 Rewrite (N, Relocate_Node (CE_Node));
4652 Set_Is_Static_Expression (N, Static);
4653 return;
4654 end if;
4655
4656 -- At this point we have a potentially foldable attribute reference.
4657 -- If Static is set, then the attribute reference definitely obeys
4658 -- the requirements in (RM 4.9(7,8,22)), and it definitely can be
4659 -- folded. If Static is not set, then the attribute may or may not
4660 -- be foldable, and the individual attribute processing routines
4661 -- test Static as required in cases where it makes a difference.
4662
4663 -- In the case where Static is not set, we do know that all the
4664 -- expressions present are at least known at compile time (we
4665 -- assumed above that if this was not the case, then there was
4666 -- no hope of static evaluation). However, we did not require
4667 -- that the bounds of the prefix type be compile time known,
4668 -- let alone static). That's because there are many attributes
4669 -- that can be computed at compile time on non-static subtypes,
4670 -- even though such references are not static expressions.
4671
4672 case Id is
4673
4674 --------------
4675 -- Adjacent --
4676 --------------
4677
4678 when Attribute_Adjacent =>
4679 Fold_Ureal (N,
4680 Eval_Fat.Adjacent
4681 (P_Root_Type, Expr_Value_R (E1), Expr_Value_R (E2)), Static);
4682
4683 ---------
4684 -- Aft --
4685 ---------
4686
4687 when Attribute_Aft =>
4688 Fold_Uint (N, UI_From_Int (Aft_Value), True);
4689
4690 ---------------
4691 -- Alignment --
4692 ---------------
4693
4694 when Attribute_Alignment => Alignment_Block : declare
4695 P_TypeA : constant Entity_Id := Underlying_Type (P_Type);
4696
4697 begin
4698 -- Fold if alignment is set and not otherwise
4699
4700 if Known_Alignment (P_TypeA) then
4701 Fold_Uint (N, Alignment (P_TypeA), Is_Discrete_Type (P_TypeA));
4702 end if;
4703 end Alignment_Block;
4704
4705 ---------------
4706 -- AST_Entry --
4707 ---------------
4708
4709 -- Can only be folded in No_Ast_Handler case
4710
4711 when Attribute_AST_Entry =>
4712 if not Is_AST_Entry (P_Entity) then
4713 Rewrite (N,
4714 New_Occurrence_Of (RTE (RE_No_AST_Handler), Loc));
4715 else
4716 null;
4717 end if;
4718
4719 ---------
4720 -- Bit --
4721 ---------
4722
4723 -- Bit can never be folded
4724
4725 when Attribute_Bit =>
4726 null;
4727
4728 ------------------
4729 -- Body_Version --
4730 ------------------
4731
4732 -- Body_version can never be static
4733
4734 when Attribute_Body_Version =>
4735 null;
4736
4737 -------------
4738 -- Ceiling --
4739 -------------
4740
4741 when Attribute_Ceiling =>
4742 Fold_Ureal (N,
4743 Eval_Fat.Ceiling (P_Root_Type, Expr_Value_R (E1)), Static);
4744
4745 --------------------
4746 -- Component_Size --
4747 --------------------
4748
4749 when Attribute_Component_Size =>
4750 if Known_Static_Component_Size (P_Type) then
4751 Fold_Uint (N, Component_Size (P_Type), False);
4752 end if;
4753
4754 -------------
4755 -- Compose --
4756 -------------
4757
4758 when Attribute_Compose =>
4759 Fold_Ureal (N,
4760 Eval_Fat.Compose
4761 (P_Root_Type, Expr_Value_R (E1), Expr_Value (E2)),
4762 Static);
4763
4764 -----------------
4765 -- Constrained --
4766 -----------------
4767
4768 -- Constrained is never folded for now, there may be cases that
4769 -- could be handled at compile time. to be looked at later.
4770
4771 when Attribute_Constrained =>
4772 null;
4773
4774 ---------------
4775 -- Copy_Sign --
4776 ---------------
4777
4778 when Attribute_Copy_Sign =>
4779 Fold_Ureal (N,
4780 Eval_Fat.Copy_Sign
4781 (P_Root_Type, Expr_Value_R (E1), Expr_Value_R (E2)), Static);
4782
4783 -----------
4784 -- Delta --
4785 -----------
4786
4787 when Attribute_Delta =>
4788 Fold_Ureal (N, Delta_Value (P_Type), True);
4789
4790 --------------
4791 -- Definite --
4792 --------------
4793
4794 when Attribute_Definite =>
4795 declare
4796 Result : Node_Id;
4797
4798 begin
4799 if Is_Indefinite_Subtype (P_Entity) then
4800 Result := New_Occurrence_Of (Standard_False, Loc);
4801 else
4802 Result := New_Occurrence_Of (Standard_True, Loc);
4803 end if;
4804
4805 Rewrite (N, Result);
4806 Analyze_And_Resolve (N, Standard_Boolean);
4807 end;
4808
4809 ------------
4810 -- Denorm --
4811 ------------
4812
4813 when Attribute_Denorm =>
4814 Fold_Uint
4815 (N, UI_From_Int (Boolean'Pos (Denorm_On_Target)), True);
4816
4817 ------------
4818 -- Digits --
4819 ------------
4820
4821 when Attribute_Digits =>
4822 Fold_Uint (N, Digits_Value (P_Type), True);
4823
4824 ----------
4825 -- Emax --
4826 ----------
4827
4828 when Attribute_Emax =>
4829
4830 -- Ada 83 attribute is defined as (RM83 3.5.8)
4831
4832 -- T'Emax = 4 * T'Mantissa
4833
4834 Fold_Uint (N, 4 * Mantissa, True);
4835
4836 --------------
4837 -- Enum_Rep --
4838 --------------
4839
4840 when Attribute_Enum_Rep =>
4841
4842 -- For an enumeration type with a non-standard representation
4843 -- use the Enumeration_Rep field of the proper constant. Note
4844 -- that this would not work for types Character/Wide_Character,
4845 -- since no real entities are created for the enumeration
4846 -- literals, but that does not matter since these two types
4847 -- do not have non-standard representations anyway.
4848
4849 if Is_Enumeration_Type (P_Type)
4850 and then Has_Non_Standard_Rep (P_Type)
4851 then
4852 Fold_Uint (N, Enumeration_Rep (Expr_Value_E (E1)), Static);
4853
4854 -- For enumeration types with standard representations and all
4855 -- other cases (i.e. all integer and modular types), Enum_Rep
4856 -- is equivalent to Pos.
4857
4858 else
4859 Fold_Uint (N, Expr_Value (E1), Static);
4860 end if;
4861
4862 -------------
4863 -- Epsilon --
4864 -------------
4865
4866 when Attribute_Epsilon =>
4867
4868 -- Ada 83 attribute is defined as (RM83 3.5.8)
4869
4870 -- T'Epsilon = 2.0**(1 - T'Mantissa)
4871
4872 Fold_Ureal (N, Ureal_2 ** (1 - Mantissa), True);
4873
4874 --------------
4875 -- Exponent --
4876 --------------
4877
4878 when Attribute_Exponent =>
4879 Fold_Uint (N,
4880 Eval_Fat.Exponent (P_Root_Type, Expr_Value_R (E1)), Static);
4881
4882 -----------
4883 -- First --
4884 -----------
4885
4886 when Attribute_First => First_Attr :
4887 begin
4888 Set_Bounds;
4889
4890 if Compile_Time_Known_Value (Lo_Bound) then
4891 if Is_Real_Type (P_Type) then
4892 Fold_Ureal (N, Expr_Value_R (Lo_Bound), Static);
4893 else
4894 Fold_Uint (N, Expr_Value (Lo_Bound), Static);
4895 end if;
4896 end if;
4897 end First_Attr;
4898
4899 -----------------
4900 -- Fixed_Value --
4901 -----------------
4902
4903 when Attribute_Fixed_Value =>
4904 null;
4905
4906 -----------
4907 -- Floor --
4908 -----------
4909
4910 when Attribute_Floor =>
4911 Fold_Ureal (N,
4912 Eval_Fat.Floor (P_Root_Type, Expr_Value_R (E1)), Static);
4913
4914 ----------
4915 -- Fore --
4916 ----------
4917
4918 when Attribute_Fore =>
4919 if Compile_Time_Known_Bounds (P_Type) then
4920 Fold_Uint (N, UI_From_Int (Fore_Value), Static);
4921 end if;
4922
4923 --------------
4924 -- Fraction --
4925 --------------
4926
4927 when Attribute_Fraction =>
4928 Fold_Ureal (N,
4929 Eval_Fat.Fraction (P_Root_Type, Expr_Value_R (E1)), Static);
4930
4931 -----------------------
4932 -- Has_Discriminants --
4933 -----------------------
4934
4935 when Attribute_Has_Discriminants =>
4936 declare
4937 Result : Node_Id;
4938
4939 begin
4940 if Has_Discriminants (P_Entity) then
4941 Result := New_Occurrence_Of (Standard_True, Loc);
4942 else
4943 Result := New_Occurrence_Of (Standard_False, Loc);
4944 end if;
4945
4946 Rewrite (N, Result);
4947 Analyze_And_Resolve (N, Standard_Boolean);
4948 end;
4949
4950 --------------
4951 -- Identity --
4952 --------------
4953
4954 when Attribute_Identity =>
4955 null;
4956
4957 -----------
4958 -- Image --
4959 -----------
4960
4961 -- Image is a scalar attribute, but is never static, because it is
4962 -- not a static function (having a non-scalar argument (RM 4.9(22))
4963
4964 when Attribute_Image =>
4965 null;
4966
4967 ---------
4968 -- Img --
4969 ---------
4970
4971 -- Img is a scalar attribute, but is never static, because it is
4972 -- not a static function (having a non-scalar argument (RM 4.9(22))
4973
4974 when Attribute_Img =>
4975 null;
4976
4977 -------------------
4978 -- Integer_Value --
4979 -------------------
4980
4981 when Attribute_Integer_Value =>
4982 null;
4983
4984 -----------
4985 -- Large --
4986 -----------
4987
4988 when Attribute_Large =>
4989
4990 -- For fixed-point, we use the identity:
4991
4992 -- T'Large = (2.0**T'Mantissa - 1.0) * T'Small
4993
4994 if Is_Fixed_Point_Type (P_Type) then
4995 Rewrite (N,
4996 Make_Op_Multiply (Loc,
4997 Left_Opnd =>
4998 Make_Op_Subtract (Loc,
4999 Left_Opnd =>
5000 Make_Op_Expon (Loc,
5001 Left_Opnd =>
5002 Make_Real_Literal (Loc, Ureal_2),
5003 Right_Opnd =>
5004 Make_Attribute_Reference (Loc,
5005 Prefix => P,
5006 Attribute_Name => Name_Mantissa)),
5007 Right_Opnd => Make_Real_Literal (Loc, Ureal_1)),
5008
5009 Right_Opnd =>
5010 Make_Real_Literal (Loc, Small_Value (Entity (P)))));
5011
5012 Analyze_And_Resolve (N, C_Type);
5013
5014 -- Floating-point (Ada 83 compatibility)
5015
5016 else
5017 -- Ada 83 attribute is defined as (RM83 3.5.8)
5018
5019 -- T'Large = 2.0**T'Emax * (1.0 - 2.0**(-T'Mantissa))
5020
5021 -- where
5022
5023 -- T'Emax = 4 * T'Mantissa
5024
5025 Fold_Ureal (N,
5026 Ureal_2 ** (4 * Mantissa) * (Ureal_1 - Ureal_2 ** (-Mantissa)),
5027 True);
5028 end if;
5029
5030 ----------
5031 -- Last --
5032 ----------
5033
5034 when Attribute_Last => Last :
5035 begin
5036 Set_Bounds;
5037
5038 if Compile_Time_Known_Value (Hi_Bound) then
5039 if Is_Real_Type (P_Type) then
5040 Fold_Ureal (N, Expr_Value_R (Hi_Bound), Static);
5041 else
5042 Fold_Uint (N, Expr_Value (Hi_Bound), Static);
5043 end if;
5044 end if;
5045 end Last;
5046
5047 ------------------
5048 -- Leading_Part --
5049 ------------------
5050
5051 when Attribute_Leading_Part =>
5052 Fold_Ureal (N,
5053 Eval_Fat.Leading_Part
5054 (P_Root_Type, Expr_Value_R (E1), Expr_Value (E2)), Static);
5055
5056 ------------
5057 -- Length --
5058 ------------
5059
5060 when Attribute_Length => Length : declare
5061 Ind : Node_Id;
5062
5063 begin
5064 -- In the case of a generic index type, the bounds may
5065 -- appear static but the computation is not meaningful,
5066 -- and may generate a spurious warning.
5067
5068 Ind := First_Index (P_Type);
5069
5070 while Present (Ind) loop
5071 if Is_Generic_Type (Etype (Ind)) then
5072 return;
5073 end if;
5074
5075 Next_Index (Ind);
5076 end loop;
5077
5078 Set_Bounds;
5079
5080 if Compile_Time_Known_Value (Lo_Bound)
5081 and then Compile_Time_Known_Value (Hi_Bound)
5082 then
5083 Fold_Uint (N,
5084 UI_Max (0, 1 + (Expr_Value (Hi_Bound) - Expr_Value (Lo_Bound))),
5085 True);
5086 end if;
5087 end Length;
5088
5089 -------------
5090 -- Machine --
5091 -------------
5092
5093 when Attribute_Machine =>
5094 Fold_Ureal (N,
5095 Eval_Fat.Machine
5096 (P_Root_Type, Expr_Value_R (E1), Eval_Fat.Round, N),
5097 Static);
5098
5099 ------------------
5100 -- Machine_Emax --
5101 ------------------
5102
5103 when Attribute_Machine_Emax =>
5104 Float_Attribute_Universal_Integer (
5105 IEEES_Machine_Emax,
5106 IEEEL_Machine_Emax,
5107 IEEEX_Machine_Emax,
5108 VAXFF_Machine_Emax,
5109 VAXDF_Machine_Emax,
5110 VAXGF_Machine_Emax,
5111 AAMPS_Machine_Emax,
5112 AAMPL_Machine_Emax);
5113
5114 ------------------
5115 -- Machine_Emin --
5116 ------------------
5117
5118 when Attribute_Machine_Emin =>
5119 Float_Attribute_Universal_Integer (
5120 IEEES_Machine_Emin,
5121 IEEEL_Machine_Emin,
5122 IEEEX_Machine_Emin,
5123 VAXFF_Machine_Emin,
5124 VAXDF_Machine_Emin,
5125 VAXGF_Machine_Emin,
5126 AAMPS_Machine_Emin,
5127 AAMPL_Machine_Emin);
5128
5129 ----------------------
5130 -- Machine_Mantissa --
5131 ----------------------
5132
5133 when Attribute_Machine_Mantissa =>
5134 Float_Attribute_Universal_Integer (
5135 IEEES_Machine_Mantissa,
5136 IEEEL_Machine_Mantissa,
5137 IEEEX_Machine_Mantissa,
5138 VAXFF_Machine_Mantissa,
5139 VAXDF_Machine_Mantissa,
5140 VAXGF_Machine_Mantissa,
5141 AAMPS_Machine_Mantissa,
5142 AAMPL_Machine_Mantissa);
5143
5144 -----------------------
5145 -- Machine_Overflows --
5146 -----------------------
5147
5148 when Attribute_Machine_Overflows =>
5149
5150 -- Always true for fixed-point
5151
5152 if Is_Fixed_Point_Type (P_Type) then
5153 Fold_Uint (N, True_Value, True);
5154
5155 -- Floating point case
5156
5157 else
5158 Fold_Uint (N,
5159 UI_From_Int (Boolean'Pos (Machine_Overflows_On_Target)),
5160 True);
5161 end if;
5162
5163 -------------------
5164 -- Machine_Radix --
5165 -------------------
5166
5167 when Attribute_Machine_Radix =>
5168 if Is_Fixed_Point_Type (P_Type) then
5169 if Is_Decimal_Fixed_Point_Type (P_Type)
5170 and then Machine_Radix_10 (P_Type)
5171 then
5172 Fold_Uint (N, Uint_10, True);
5173 else
5174 Fold_Uint (N, Uint_2, True);
5175 end if;
5176
5177 -- All floating-point type always have radix 2
5178
5179 else
5180 Fold_Uint (N, Uint_2, True);
5181 end if;
5182
5183 --------------------
5184 -- Machine_Rounds --
5185 --------------------
5186
5187 when Attribute_Machine_Rounds =>
5188
5189 -- Always False for fixed-point
5190
5191 if Is_Fixed_Point_Type (P_Type) then
5192 Fold_Uint (N, False_Value, True);
5193
5194 -- Else yield proper floating-point result
5195
5196 else
5197 Fold_Uint
5198 (N, UI_From_Int (Boolean'Pos (Machine_Rounds_On_Target)), True);
5199 end if;
5200
5201 ------------------
5202 -- Machine_Size --
5203 ------------------
5204
5205 -- Note: Machine_Size is identical to Object_Size
5206
5207 when Attribute_Machine_Size => Machine_Size : declare
5208 P_TypeA : constant Entity_Id := Underlying_Type (P_Type);
5209
5210 begin
5211 if Known_Esize (P_TypeA) then
5212 Fold_Uint (N, Esize (P_TypeA), True);
5213 end if;
5214 end Machine_Size;
5215
5216 --------------
5217 -- Mantissa --
5218 --------------
5219
5220 when Attribute_Mantissa =>
5221
5222 -- Fixed-point mantissa
5223
5224 if Is_Fixed_Point_Type (P_Type) then
5225
5226 -- Compile time foldable case
5227
5228 if Compile_Time_Known_Value (Type_Low_Bound (P_Type))
5229 and then
5230 Compile_Time_Known_Value (Type_High_Bound (P_Type))
5231 then
5232 -- The calculation of the obsolete Ada 83 attribute Mantissa
5233 -- is annoying, because of AI00143, quoted here:
5234
5235 -- !question 84-01-10
5236
5237 -- Consider the model numbers for F:
5238
5239 -- type F is delta 1.0 range -7.0 .. 8.0;
5240
5241 -- The wording requires that F'MANTISSA be the SMALLEST
5242 -- integer number for which each bound of the specified
5243 -- range is either a model number or lies at most small
5244 -- distant from a model number. This means F'MANTISSA
5245 -- is required to be 3 since the range -7.0 .. 7.0 fits
5246 -- in 3 signed bits, and 8 is "at most" 1.0 from a model
5247 -- number, namely, 7. Is this analysis correct? Note that
5248 -- this implies the upper bound of the range is not
5249 -- represented as a model number.
5250
5251 -- !response 84-03-17
5252
5253 -- The analysis is correct. The upper and lower bounds for
5254 -- a fixed point type can lie outside the range of model
5255 -- numbers.
5256
5257 declare
5258 Siz : Uint;
5259 LBound : Ureal;
5260 UBound : Ureal;
5261 Bound : Ureal;
5262 Max_Man : Uint;
5263
5264 begin
5265 LBound := Expr_Value_R (Type_Low_Bound (P_Type));
5266 UBound := Expr_Value_R (Type_High_Bound (P_Type));
5267 Bound := UR_Max (UR_Abs (LBound), UR_Abs (UBound));
5268 Max_Man := UR_Trunc (Bound / Small_Value (P_Type));
5269
5270 -- If the Bound is exactly a model number, i.e. a multiple
5271 -- of Small, then we back it off by one to get the integer
5272 -- value that must be representable.
5273
5274 if Small_Value (P_Type) * Max_Man = Bound then
5275 Max_Man := Max_Man - 1;
5276 end if;
5277
5278 -- Now find corresponding size = Mantissa value
5279
5280 Siz := Uint_0;
5281 while 2 ** Siz < Max_Man loop
5282 Siz := Siz + 1;
5283 end loop;
5284
5285 Fold_Uint (N, Siz, True);
5286 end;
5287
5288 else
5289 -- The case of dynamic bounds cannot be evaluated at compile
5290 -- time. Instead we use a runtime routine (see Exp_Attr).
5291
5292 null;
5293 end if;
5294
5295 -- Floating-point Mantissa
5296
5297 else
5298 Fold_Uint (N, Mantissa, True);
5299 end if;
5300
5301 ---------
5302 -- Max --
5303 ---------
5304
5305 when Attribute_Max => Max :
5306 begin
5307 if Is_Real_Type (P_Type) then
5308 Fold_Ureal
5309 (N, UR_Max (Expr_Value_R (E1), Expr_Value_R (E2)), Static);
5310 else
5311 Fold_Uint (N, UI_Max (Expr_Value (E1), Expr_Value (E2)), Static);
5312 end if;
5313 end Max;
5314
5315 ----------------------------------
5316 -- Max_Size_In_Storage_Elements --
5317 ----------------------------------
5318
5319 -- Max_Size_In_Storage_Elements is simply the Size rounded up to a
5320 -- Storage_Unit boundary. We can fold any cases for which the size
5321 -- is known by the front end.
5322
5323 when Attribute_Max_Size_In_Storage_Elements =>
5324 if Known_Esize (P_Type) then
5325 Fold_Uint (N,
5326 (Esize (P_Type) + System_Storage_Unit - 1) /
5327 System_Storage_Unit,
5328 Static);
5329 end if;
5330
5331 --------------------
5332 -- Mechanism_Code --
5333 --------------------
5334
5335 when Attribute_Mechanism_Code =>
5336 declare
5337 Val : Int;
5338 Formal : Entity_Id;
5339 Mech : Mechanism_Type;
5340
5341 begin
5342 if No (E1) then
5343 Mech := Mechanism (P_Entity);
5344
5345 else
5346 Val := UI_To_Int (Expr_Value (E1));
5347
5348 Formal := First_Formal (P_Entity);
5349 for J in 1 .. Val - 1 loop
5350 Next_Formal (Formal);
5351 end loop;
5352 Mech := Mechanism (Formal);
5353 end if;
5354
5355 if Mech < 0 then
5356 Fold_Uint (N, UI_From_Int (Int (-Mech)), True);
5357 end if;
5358 end;
5359
5360 ---------
5361 -- Min --
5362 ---------
5363
5364 when Attribute_Min => Min :
5365 begin
5366 if Is_Real_Type (P_Type) then
5367 Fold_Ureal
5368 (N, UR_Min (Expr_Value_R (E1), Expr_Value_R (E2)), Static);
5369 else
5370 Fold_Uint (N, UI_Min (Expr_Value (E1), Expr_Value (E2)), Static);
5371 end if;
5372 end Min;
5373
5374 -----------
5375 -- Model --
5376 -----------
5377
5378 when Attribute_Model =>
5379 Fold_Ureal (N,
5380 Eval_Fat.Model (P_Root_Type, Expr_Value_R (E1)), Static);
5381
5382 ----------------
5383 -- Model_Emin --
5384 ----------------
5385
5386 when Attribute_Model_Emin =>
5387 Float_Attribute_Universal_Integer (
5388 IEEES_Model_Emin,
5389 IEEEL_Model_Emin,
5390 IEEEX_Model_Emin,
5391 VAXFF_Model_Emin,
5392 VAXDF_Model_Emin,
5393 VAXGF_Model_Emin,
5394 AAMPS_Model_Emin,
5395 AAMPL_Model_Emin);
5396
5397 -------------------
5398 -- Model_Epsilon --
5399 -------------------
5400
5401 when Attribute_Model_Epsilon =>
5402 Float_Attribute_Universal_Real (
5403 IEEES_Model_Epsilon'Universal_Literal_String,
5404 IEEEL_Model_Epsilon'Universal_Literal_String,
5405 IEEEX_Model_Epsilon'Universal_Literal_String,
5406 VAXFF_Model_Epsilon'Universal_Literal_String,
5407 VAXDF_Model_Epsilon'Universal_Literal_String,
5408 VAXGF_Model_Epsilon'Universal_Literal_String,
5409 AAMPS_Model_Epsilon'Universal_Literal_String,
5410 AAMPL_Model_Epsilon'Universal_Literal_String);
5411
5412 --------------------
5413 -- Model_Mantissa --
5414 --------------------
5415
5416 when Attribute_Model_Mantissa =>
5417 Float_Attribute_Universal_Integer (
5418 IEEES_Model_Mantissa,
5419 IEEEL_Model_Mantissa,
5420 IEEEX_Model_Mantissa,
5421 VAXFF_Model_Mantissa,
5422 VAXDF_Model_Mantissa,
5423 VAXGF_Model_Mantissa,
5424 AAMPS_Model_Mantissa,
5425 AAMPL_Model_Mantissa);
5426
5427 -----------------
5428 -- Model_Small --
5429 -----------------
5430
5431 when Attribute_Model_Small =>
5432 Float_Attribute_Universal_Real (
5433 IEEES_Model_Small'Universal_Literal_String,
5434 IEEEL_Model_Small'Universal_Literal_String,
5435 IEEEX_Model_Small'Universal_Literal_String,
5436 VAXFF_Model_Small'Universal_Literal_String,
5437 VAXDF_Model_Small'Universal_Literal_String,
5438 VAXGF_Model_Small'Universal_Literal_String,
5439 AAMPS_Model_Small'Universal_Literal_String,
5440 AAMPL_Model_Small'Universal_Literal_String);
5441
5442 -------------
5443 -- Modulus --
5444 -------------
5445
5446 when Attribute_Modulus =>
5447 Fold_Uint (N, Modulus (P_Type), True);
5448
5449 --------------------
5450 -- Null_Parameter --
5451 --------------------
5452
5453 -- Cannot fold, we know the value sort of, but the whole point is
5454 -- that there is no way to talk about this imaginary value except
5455 -- by using the attribute, so we leave it the way it is.
5456
5457 when Attribute_Null_Parameter =>
5458 null;
5459
5460 -----------------
5461 -- Object_Size --
5462 -----------------
5463
5464 -- The Object_Size attribute for a type returns the Esize of the
5465 -- type and can be folded if this value is known.
5466
5467 when Attribute_Object_Size => Object_Size : declare
5468 P_TypeA : constant Entity_Id := Underlying_Type (P_Type);
5469
5470 begin
5471 if Known_Esize (P_TypeA) then
5472 Fold_Uint (N, Esize (P_TypeA), True);
5473 end if;
5474 end Object_Size;
5475
5476 -------------------------
5477 -- Passed_By_Reference --
5478 -------------------------
5479
5480 -- Scalar types are never passed by reference
5481
5482 when Attribute_Passed_By_Reference =>
5483 Fold_Uint (N, False_Value, True);
5484
5485 ---------
5486 -- Pos --
5487 ---------
5488
5489 when Attribute_Pos =>
5490 Fold_Uint (N, Expr_Value (E1), True);
5491
5492 ----------
5493 -- Pred --
5494 ----------
5495
5496 when Attribute_Pred => Pred :
5497 begin
5498 -- Floating-point case
5499
5500 if Is_Floating_Point_Type (P_Type) then
5501 Fold_Ureal (N,
5502 Eval_Fat.Pred (P_Root_Type, Expr_Value_R (E1)), Static);
5503
5504 -- Fixed-point case
5505
5506 elsif Is_Fixed_Point_Type (P_Type) then
5507 Fold_Ureal (N,
5508 Expr_Value_R (E1) - Small_Value (P_Type), True);
5509
5510 -- Modular integer case (wraps)
5511
5512 elsif Is_Modular_Integer_Type (P_Type) then
5513 Fold_Uint (N, (Expr_Value (E1) - 1) mod Modulus (P_Type), Static);
5514
5515 -- Other scalar cases
5516
5517 else
5518 pragma Assert (Is_Scalar_Type (P_Type));
5519
5520 if Is_Enumeration_Type (P_Type)
5521 and then Expr_Value (E1) =
5522 Expr_Value (Type_Low_Bound (P_Base_Type))
5523 then
5524 Apply_Compile_Time_Constraint_Error
5525 (N, "Pred of `&''First`",
5526 CE_Overflow_Check_Failed,
5527 Ent => P_Base_Type,
5528 Warn => not Static);
5529
5530 Check_Expressions;
5531 return;
5532 end if;
5533
5534 Fold_Uint (N, Expr_Value (E1) - 1, Static);
5535 end if;
5536 end Pred;
5537
5538 -----------
5539 -- Range --
5540 -----------
5541
5542 -- No processing required, because by this stage, Range has been
5543 -- replaced by First .. Last, so this branch can never be taken.
5544
5545 when Attribute_Range =>
5546 raise Program_Error;
5547
5548 ------------------
5549 -- Range_Length --
5550 ------------------
5551
5552 when Attribute_Range_Length =>
5553 Set_Bounds;
5554
5555 if Compile_Time_Known_Value (Hi_Bound)
5556 and then Compile_Time_Known_Value (Lo_Bound)
5557 then
5558 Fold_Uint (N,
5559 UI_Max
5560 (0, Expr_Value (Hi_Bound) - Expr_Value (Lo_Bound) + 1),
5561 Static);
5562 end if;
5563
5564 ---------------
5565 -- Remainder --
5566 ---------------
5567
5568 when Attribute_Remainder =>
5569 Fold_Ureal (N,
5570 Eval_Fat.Remainder
5571 (P_Root_Type, Expr_Value_R (E1), Expr_Value_R (E2)),
5572 Static);
5573
5574 -----------
5575 -- Round --
5576 -----------
5577
5578 when Attribute_Round => Round :
5579 declare
5580 Sr : Ureal;
5581 Si : Uint;
5582
5583 begin
5584 -- First we get the (exact result) in units of small
5585
5586 Sr := Expr_Value_R (E1) / Small_Value (C_Type);
5587
5588 -- Now round that exactly to an integer
5589
5590 Si := UR_To_Uint (Sr);
5591
5592 -- Finally the result is obtained by converting back to real
5593
5594 Fold_Ureal (N, Si * Small_Value (C_Type), Static);
5595 end Round;
5596
5597 --------------
5598 -- Rounding --
5599 --------------
5600
5601 when Attribute_Rounding =>
5602 Fold_Ureal (N,
5603 Eval_Fat.Rounding (P_Root_Type, Expr_Value_R (E1)), Static);
5604
5605 ---------------
5606 -- Safe_Emax --
5607 ---------------
5608
5609 when Attribute_Safe_Emax =>
5610 Float_Attribute_Universal_Integer (
5611 IEEES_Safe_Emax,
5612 IEEEL_Safe_Emax,
5613 IEEEX_Safe_Emax,
5614 VAXFF_Safe_Emax,
5615 VAXDF_Safe_Emax,
5616 VAXGF_Safe_Emax,
5617 AAMPS_Safe_Emax,
5618 AAMPL_Safe_Emax);
5619
5620 ----------------
5621 -- Safe_First --
5622 ----------------
5623
5624 when Attribute_Safe_First =>
5625 Float_Attribute_Universal_Real (
5626 IEEES_Safe_First'Universal_Literal_String,
5627 IEEEL_Safe_First'Universal_Literal_String,
5628 IEEEX_Safe_First'Universal_Literal_String,
5629 VAXFF_Safe_First'Universal_Literal_String,
5630 VAXDF_Safe_First'Universal_Literal_String,
5631 VAXGF_Safe_First'Universal_Literal_String,
5632 AAMPS_Safe_First'Universal_Literal_String,
5633 AAMPL_Safe_First'Universal_Literal_String);
5634
5635 ----------------
5636 -- Safe_Large --
5637 ----------------
5638
5639 when Attribute_Safe_Large =>
5640 if Is_Fixed_Point_Type (P_Type) then
5641 Fold_Ureal
5642 (N, Expr_Value_R (Type_High_Bound (P_Base_Type)), Static);
5643 else
5644 Float_Attribute_Universal_Real (
5645 IEEES_Safe_Large'Universal_Literal_String,
5646 IEEEL_Safe_Large'Universal_Literal_String,
5647 IEEEX_Safe_Large'Universal_Literal_String,
5648 VAXFF_Safe_Large'Universal_Literal_String,
5649 VAXDF_Safe_Large'Universal_Literal_String,
5650 VAXGF_Safe_Large'Universal_Literal_String,
5651 AAMPS_Safe_Large'Universal_Literal_String,
5652 AAMPL_Safe_Large'Universal_Literal_String);
5653 end if;
5654
5655 ---------------
5656 -- Safe_Last --
5657 ---------------
5658
5659 when Attribute_Safe_Last =>
5660 Float_Attribute_Universal_Real (
5661 IEEES_Safe_Last'Universal_Literal_String,
5662 IEEEL_Safe_Last'Universal_Literal_String,
5663 IEEEX_Safe_Last'Universal_Literal_String,
5664 VAXFF_Safe_Last'Universal_Literal_String,
5665 VAXDF_Safe_Last'Universal_Literal_String,
5666 VAXGF_Safe_Last'Universal_Literal_String,
5667 AAMPS_Safe_Last'Universal_Literal_String,
5668 AAMPL_Safe_Last'Universal_Literal_String);
5669
5670 ----------------
5671 -- Safe_Small --
5672 ----------------
5673
5674 when Attribute_Safe_Small =>
5675
5676 -- In Ada 95, the old Ada 83 attribute Safe_Small is redundant
5677 -- for fixed-point, since is the same as Small, but we implement
5678 -- it for backwards compatibility.
5679
5680 if Is_Fixed_Point_Type (P_Type) then
5681 Fold_Ureal (N, Small_Value (P_Type), Static);
5682
5683 -- Ada 83 Safe_Small for floating-point cases
5684
5685 else
5686 Float_Attribute_Universal_Real (
5687 IEEES_Safe_Small'Universal_Literal_String,
5688 IEEEL_Safe_Small'Universal_Literal_String,
5689 IEEEX_Safe_Small'Universal_Literal_String,
5690 VAXFF_Safe_Small'Universal_Literal_String,
5691 VAXDF_Safe_Small'Universal_Literal_String,
5692 VAXGF_Safe_Small'Universal_Literal_String,
5693 AAMPS_Safe_Small'Universal_Literal_String,
5694 AAMPL_Safe_Small'Universal_Literal_String);
5695 end if;
5696
5697 -----------
5698 -- Scale --
5699 -----------
5700
5701 when Attribute_Scale =>
5702 Fold_Uint (N, Scale_Value (P_Type), True);
5703
5704 -------------
5705 -- Scaling --
5706 -------------
5707
5708 when Attribute_Scaling =>
5709 Fold_Ureal (N,
5710 Eval_Fat.Scaling
5711 (P_Root_Type, Expr_Value_R (E1), Expr_Value (E2)), Static);
5712
5713 ------------------
5714 -- Signed_Zeros --
5715 ------------------
5716
5717 when Attribute_Signed_Zeros =>
5718 Fold_Uint
5719 (N, UI_From_Int (Boolean'Pos (Signed_Zeros_On_Target)), Static);
5720
5721 ----------
5722 -- Size --
5723 ----------
5724
5725 -- Size attribute returns the RM size. All scalar types can be folded,
5726 -- as well as any types for which the size is known by the front end,
5727 -- including any type for which a size attribute is specified.
5728
5729 when Attribute_Size | Attribute_VADS_Size => Size : declare
5730 P_TypeA : constant Entity_Id := Underlying_Type (P_Type);
5731
5732 begin
5733 if RM_Size (P_TypeA) /= Uint_0 then
5734
5735 -- VADS_Size case
5736
5737 if Id = Attribute_VADS_Size or else Use_VADS_Size then
5738 declare
5739 S : constant Node_Id := Size_Clause (P_TypeA);
5740
5741 begin
5742 -- If a size clause applies, then use the size from it.
5743 -- This is one of the rare cases where we can use the
5744 -- Size_Clause field for a subtype when Has_Size_Clause
5745 -- is False. Consider:
5746
5747 -- type x is range 1 .. 64; g
5748 -- for x'size use 12;
5749 -- subtype y is x range 0 .. 3;
5750
5751 -- Here y has a size clause inherited from x, but normally
5752 -- it does not apply, and y'size is 2. However, y'VADS_Size
5753 -- is indeed 12 and not 2.
5754
5755 if Present (S)
5756 and then Is_OK_Static_Expression (Expression (S))
5757 then
5758 Fold_Uint (N, Expr_Value (Expression (S)), True);
5759
5760 -- If no size is specified, then we simply use the object
5761 -- size in the VADS_Size case (e.g. Natural'Size is equal
5762 -- to Integer'Size, not one less).
5763
5764 else
5765 Fold_Uint (N, Esize (P_TypeA), True);
5766 end if;
5767 end;
5768
5769 -- Normal case (Size) in which case we want the RM_Size
5770
5771 else
5772 Fold_Uint (N,
5773 RM_Size (P_TypeA),
5774 Static and then Is_Discrete_Type (P_TypeA));
5775 end if;
5776 end if;
5777 end Size;
5778
5779 -----------
5780 -- Small --
5781 -----------
5782
5783 when Attribute_Small =>
5784
5785 -- The floating-point case is present only for Ada 83 compatability.
5786 -- Note that strictly this is an illegal addition, since we are
5787 -- extending an Ada 95 defined attribute, but we anticipate an
5788 -- ARG ruling that will permit this.
5789
5790 if Is_Floating_Point_Type (P_Type) then
5791
5792 -- Ada 83 attribute is defined as (RM83 3.5.8)
5793
5794 -- T'Small = 2.0**(-T'Emax - 1)
5795
5796 -- where
5797
5798 -- T'Emax = 4 * T'Mantissa
5799
5800 Fold_Ureal (N, Ureal_2 ** ((-(4 * Mantissa)) - 1), Static);
5801
5802 -- Normal Ada 95 fixed-point case
5803
5804 else
5805 Fold_Ureal (N, Small_Value (P_Type), True);
5806 end if;
5807
5808 ----------
5809 -- Succ --
5810 ----------
5811
5812 when Attribute_Succ => Succ :
5813 begin
5814 -- Floating-point case
5815
5816 if Is_Floating_Point_Type (P_Type) then
5817 Fold_Ureal (N,
5818 Eval_Fat.Succ (P_Root_Type, Expr_Value_R (E1)), Static);
5819
5820 -- Fixed-point case
5821
5822 elsif Is_Fixed_Point_Type (P_Type) then
5823 Fold_Ureal (N,
5824 Expr_Value_R (E1) + Small_Value (P_Type), Static);
5825
5826 -- Modular integer case (wraps)
5827
5828 elsif Is_Modular_Integer_Type (P_Type) then
5829 Fold_Uint (N, (Expr_Value (E1) + 1) mod Modulus (P_Type), Static);
5830
5831 -- Other scalar cases
5832
5833 else
5834 pragma Assert (Is_Scalar_Type (P_Type));
5835
5836 if Is_Enumeration_Type (P_Type)
5837 and then Expr_Value (E1) =
5838 Expr_Value (Type_High_Bound (P_Base_Type))
5839 then
5840 Apply_Compile_Time_Constraint_Error
5841 (N, "Succ of `&''Last`",
5842 CE_Overflow_Check_Failed,
5843 Ent => P_Base_Type,
5844 Warn => not Static);
5845
5846 Check_Expressions;
5847 return;
5848 else
5849 Fold_Uint (N, Expr_Value (E1) + 1, Static);
5850 end if;
5851 end if;
5852 end Succ;
5853
5854 ----------------
5855 -- Truncation --
5856 ----------------
5857
5858 when Attribute_Truncation =>
5859 Fold_Ureal (N,
5860 Eval_Fat.Truncation (P_Root_Type, Expr_Value_R (E1)), Static);
5861
5862 ----------------
5863 -- Type_Class --
5864 ----------------
5865
5866 when Attribute_Type_Class => Type_Class : declare
5867 Typ : constant Entity_Id := Underlying_Type (P_Base_Type);
5868 Id : RE_Id;
5869
5870 begin
5871 if Is_RTE (P_Root_Type, RE_Address) then
5872 Id := RE_Type_Class_Address;
5873
5874 elsif Is_Enumeration_Type (Typ) then
5875 Id := RE_Type_Class_Enumeration;
5876
5877 elsif Is_Integer_Type (Typ) then
5878 Id := RE_Type_Class_Integer;
5879
5880 elsif Is_Fixed_Point_Type (Typ) then
5881 Id := RE_Type_Class_Fixed_Point;
5882
5883 elsif Is_Floating_Point_Type (Typ) then
5884 Id := RE_Type_Class_Floating_Point;
5885
5886 elsif Is_Array_Type (Typ) then
5887 Id := RE_Type_Class_Array;
5888
5889 elsif Is_Record_Type (Typ) then
5890 Id := RE_Type_Class_Record;
5891
5892 elsif Is_Access_Type (Typ) then
5893 Id := RE_Type_Class_Access;
5894
5895 elsif Is_Enumeration_Type (Typ) then
5896 Id := RE_Type_Class_Enumeration;
5897
5898 elsif Is_Task_Type (Typ) then
5899 Id := RE_Type_Class_Task;
5900
5901 -- We treat protected types like task types. It would make more
5902 -- sense to have another enumeration value, but after all the
5903 -- whole point of this feature is to be exactly DEC compatible,
5904 -- and changing the type Type_Clas would not meet this requirement.
5905
5906 elsif Is_Protected_Type (Typ) then
5907 Id := RE_Type_Class_Task;
5908
5909 -- Not clear if there are any other possibilities, but if there
5910 -- are, then we will treat them as the address case.
5911
5912 else
5913 Id := RE_Type_Class_Address;
5914 end if;
5915
5916 Rewrite (N, New_Occurrence_Of (RTE (Id), Loc));
5917
5918 end Type_Class;
5919
5920 -----------------------
5921 -- Unbiased_Rounding --
5922 -----------------------
5923
5924 when Attribute_Unbiased_Rounding =>
5925 Fold_Ureal (N,
5926 Eval_Fat.Unbiased_Rounding (P_Root_Type, Expr_Value_R (E1)),
5927 Static);
5928
5929 -------------------------
5930 -- Unconstrained_Array --
5931 -------------------------
5932
5933 when Attribute_Unconstrained_Array => Unconstrained_Array : declare
5934 Typ : constant Entity_Id := Underlying_Type (P_Type);
5935
5936 begin
5937 if Is_Array_Type (P_Type)
5938 and then not Is_Constrained (Typ)
5939 then
5940 Rewrite (N, New_Occurrence_Of (Standard_True, Loc));
5941 else
5942 Rewrite (N, New_Occurrence_Of (Standard_False, Loc));
5943 end if;
5944
5945 -- Analyze and resolve as boolean, note that this attribute is
5946 -- a static attribute in GNAT.
5947
5948 Analyze_And_Resolve (N, Standard_Boolean);
5949 Static := True;
5950 end Unconstrained_Array;
5951
5952 ---------------
5953 -- VADS_Size --
5954 ---------------
5955
5956 -- Processing is shared with Size
5957
5958 ---------
5959 -- Val --
5960 ---------
5961
5962 when Attribute_Val => Val :
5963 begin
5964 if Expr_Value (E1) < Expr_Value (Type_Low_Bound (P_Base_Type))
5965 or else
5966 Expr_Value (E1) > Expr_Value (Type_High_Bound (P_Base_Type))
5967 then
5968 Apply_Compile_Time_Constraint_Error
5969 (N, "Val expression out of range",
5970 CE_Range_Check_Failed,
5971 Warn => not Static);
5972
5973 Check_Expressions;
5974 return;
5975
5976 else
5977 Fold_Uint (N, Expr_Value (E1), Static);
5978 end if;
5979 end Val;
5980
5981 ----------------
5982 -- Value_Size --
5983 ----------------
5984
5985 -- The Value_Size attribute for a type returns the RM size of the
5986 -- type. This an always be folded for scalar types, and can also
5987 -- be folded for non-scalar types if the size is set.
5988
5989 when Attribute_Value_Size => Value_Size : declare
5990 P_TypeA : constant Entity_Id := Underlying_Type (P_Type);
5991
5992 begin
5993 if RM_Size (P_TypeA) /= Uint_0 then
5994 Fold_Uint (N, RM_Size (P_TypeA), True);
5995 end if;
5996
5997 end Value_Size;
5998
5999 -------------
6000 -- Version --
6001 -------------
6002
6003 -- Version can never be static
6004
6005 when Attribute_Version =>
6006 null;
6007
6008 ----------------
6009 -- Wide_Image --
6010 ----------------
6011
6012 -- Wide_Image is a scalar attribute, but is never static, because it
6013 -- is not a static function (having a non-scalar argument (RM 4.9(22))
6014
6015 when Attribute_Wide_Image =>
6016 null;
6017
6018 ----------------
6019 -- Wide_Width --
6020 ----------------
6021
6022 -- Processing for Wide_Width is combined with Width
6023
6024 -----------
6025 -- Width --
6026 -----------
6027
6028 -- This processing also handles the case of Wide_Width
6029
6030 when Attribute_Width | Attribute_Wide_Width => Width :
6031 begin
6032 if Compile_Time_Known_Bounds (P_Type) then
6033
6034 -- Floating-point types
6035
6036 if Is_Floating_Point_Type (P_Type) then
6037
6038 -- Width is zero for a null range (RM 3.5 (38))
6039
6040 if Expr_Value_R (Type_High_Bound (P_Type)) <
6041 Expr_Value_R (Type_Low_Bound (P_Type))
6042 then
6043 Fold_Uint (N, Uint_0, True);
6044
6045 else
6046 -- For floating-point, we have +N.dddE+nnn where length
6047 -- of ddd is determined by type'Digits - 1, but is one
6048 -- if Digits is one (RM 3.5 (33)).
6049
6050 -- nnn is set to 2 for Short_Float and Float (32 bit
6051 -- floats), and 3 for Long_Float and Long_Long_Float.
6052 -- This is not quite right, but is good enough.
6053
6054 declare
6055 Len : Int :=
6056 Int'Max (2, UI_To_Int (Digits_Value (P_Type)));
6057
6058 begin
6059 if Esize (P_Type) <= 32 then
6060 Len := Len + 6;
6061 else
6062 Len := Len + 7;
6063 end if;
6064
6065 Fold_Uint (N, UI_From_Int (Len), True);
6066 end;
6067 end if;
6068
6069 -- Fixed-point types
6070
6071 elsif Is_Fixed_Point_Type (P_Type) then
6072
6073 -- Width is zero for a null range (RM 3.5 (38))
6074
6075 if Expr_Value (Type_High_Bound (P_Type)) <
6076 Expr_Value (Type_Low_Bound (P_Type))
6077 then
6078 Fold_Uint (N, Uint_0, True);
6079
6080 -- The non-null case depends on the specific real type
6081
6082 else
6083 -- For fixed-point type width is Fore + 1 + Aft (RM 3.5(34))
6084
6085 Fold_Uint
6086 (N, UI_From_Int (Fore_Value + 1 + Aft_Value), True);
6087 end if;
6088
6089 -- Discrete types
6090
6091 else
6092 declare
6093 R : constant Entity_Id := Root_Type (P_Type);
6094 Lo : constant Uint :=
6095 Expr_Value (Type_Low_Bound (P_Type));
6096 Hi : constant Uint :=
6097 Expr_Value (Type_High_Bound (P_Type));
6098 W : Nat;
6099 Wt : Nat;
6100 T : Uint;
6101 L : Node_Id;
6102 C : Character;
6103
6104 begin
6105 -- Empty ranges
6106
6107 if Lo > Hi then
6108 W := 0;
6109
6110 -- Width for types derived from Standard.Character
6111 -- and Standard.Wide_Character.
6112
6113 elsif R = Standard_Character
6114 or else R = Standard_Wide_Character
6115 then
6116 W := 0;
6117
6118 -- Set W larger if needed
6119
6120 for J in UI_To_Int (Lo) .. UI_To_Int (Hi) loop
6121
6122 -- Assume all wide-character escape sequences are
6123 -- same length, so we can quit when we reach one.
6124
6125 if J > 255 then
6126 if Id = Attribute_Wide_Width then
6127 W := Int'Max (W, 3);
6128 exit;
6129 else
6130 W := Int'Max (W, Length_Wide);
6131 exit;
6132 end if;
6133
6134 else
6135 C := Character'Val (J);
6136
6137 -- Test for all cases where Character'Image
6138 -- yields an image that is longer than three
6139 -- characters. First the cases of Reserved_xxx
6140 -- names (length = 12).
6141
6142 case C is
6143 when Reserved_128 | Reserved_129 |
6144 Reserved_132 | Reserved_153
6145
6146 => Wt := 12;
6147
6148 when BS | HT | LF | VT | FF | CR |
6149 SO | SI | EM | FS | GS | RS |
6150 US | RI | MW | ST | PM
6151
6152 => Wt := 2;
6153
6154 when NUL | SOH | STX | ETX | EOT |
6155 ENQ | ACK | BEL | DLE | DC1 |
6156 DC2 | DC3 | DC4 | NAK | SYN |
6157 ETB | CAN | SUB | ESC | DEL |
6158 BPH | NBH | NEL | SSA | ESA |
6159 HTS | HTJ | VTS | PLD | PLU |
6160 SS2 | SS3 | DCS | PU1 | PU2 |
6161 STS | CCH | SPA | EPA | SOS |
6162 SCI | CSI | OSC | APC
6163
6164 => Wt := 3;
6165
6166 when Space .. Tilde |
6167 No_Break_Space .. LC_Y_Diaeresis
6168
6169 => Wt := 3;
6170 end case;
6171
6172 W := Int'Max (W, Wt);
6173 end if;
6174 end loop;
6175
6176 -- Width for types derived from Standard.Boolean
6177
6178 elsif R = Standard_Boolean then
6179 if Lo = 0 then
6180 W := 5; -- FALSE
6181 else
6182 W := 4; -- TRUE
6183 end if;
6184
6185 -- Width for integer types
6186
6187 elsif Is_Integer_Type (P_Type) then
6188 T := UI_Max (abs Lo, abs Hi);
6189
6190 W := 2;
6191 while T >= 10 loop
6192 W := W + 1;
6193 T := T / 10;
6194 end loop;
6195
6196 -- Only remaining possibility is user declared enum type
6197
6198 else
6199 pragma Assert (Is_Enumeration_Type (P_Type));
6200
6201 W := 0;
6202 L := First_Literal (P_Type);
6203
6204 while Present (L) loop
6205
6206 -- Only pay attention to in range characters
6207
6208 if Lo <= Enumeration_Pos (L)
6209 and then Enumeration_Pos (L) <= Hi
6210 then
6211 -- For Width case, use decoded name
6212
6213 if Id = Attribute_Width then
6214 Get_Decoded_Name_String (Chars (L));
6215 Wt := Nat (Name_Len);
6216
6217 -- For Wide_Width, use encoded name, and then
6218 -- adjust for the encoding.
6219
6220 else
6221 Get_Name_String (Chars (L));
6222
6223 -- Character literals are always of length 3
6224
6225 if Name_Buffer (1) = 'Q' then
6226 Wt := 3;
6227
6228 -- Otherwise loop to adjust for upper/wide chars
6229
6230 else
6231 Wt := Nat (Name_Len);
6232
6233 for J in 1 .. Name_Len loop
6234 if Name_Buffer (J) = 'U' then
6235 Wt := Wt - 2;
6236 elsif Name_Buffer (J) = 'W' then
6237 Wt := Wt - 4;
6238 end if;
6239 end loop;
6240 end if;
6241 end if;
6242
6243 W := Int'Max (W, Wt);
6244 end if;
6245
6246 Next_Literal (L);
6247 end loop;
6248 end if;
6249
6250 Fold_Uint (N, UI_From_Int (W), True);
6251 end;
6252 end if;
6253 end if;
6254 end Width;
6255
6256 -- The following attributes can never be folded, and furthermore we
6257 -- should not even have entered the case statement for any of these.
6258 -- Note that in some cases, the values have already been folded as
6259 -- a result of the processing in Analyze_Attribute.
6260
6261 when Attribute_Abort_Signal |
6262 Attribute_Access |
6263 Attribute_Address |
6264 Attribute_Address_Size |
6265 Attribute_Asm_Input |
6266 Attribute_Asm_Output |
6267 Attribute_Base |
6268 Attribute_Bit_Order |
6269 Attribute_Bit_Position |
6270 Attribute_Callable |
6271 Attribute_Caller |
6272 Attribute_Class |
6273 Attribute_Code_Address |
6274 Attribute_Count |
6275 Attribute_Default_Bit_Order |
6276 Attribute_Elaborated |
6277 Attribute_Elab_Body |
6278 Attribute_Elab_Spec |
6279 Attribute_External_Tag |
6280 Attribute_First_Bit |
6281 Attribute_Input |
6282 Attribute_Last_Bit |
6283 Attribute_Maximum_Alignment |
6284 Attribute_Output |
6285 Attribute_Partition_ID |
6286 Attribute_Pool_Address |
6287 Attribute_Position |
6288 Attribute_Read |
6289 Attribute_Storage_Pool |
6290 Attribute_Storage_Size |
6291 Attribute_Storage_Unit |
6292 Attribute_Tag |
6293 Attribute_Target_Name |
6294 Attribute_Terminated |
6295 Attribute_To_Address |
6296 Attribute_UET_Address |
6297 Attribute_Unchecked_Access |
6298 Attribute_Universal_Literal_String |
6299 Attribute_Unrestricted_Access |
6300 Attribute_Valid |
6301 Attribute_Value |
6302 Attribute_Wchar_T_Size |
6303 Attribute_Wide_Value |
6304 Attribute_Word_Size |
6305 Attribute_Write =>
6306
6307 raise Program_Error;
6308
6309 end case;
6310
6311 -- At the end of the case, one more check. If we did a static evaluation
6312 -- so that the result is now a literal, then set Is_Static_Expression
6313 -- in the constant only if the prefix type is a static subtype. For
6314 -- non-static subtypes, the folding is still OK, but not static.
6315
6316 -- An exception is the GNAT attribute Constrained_Array which is
6317 -- defined to be a static attribute in all cases.
6318
6319 if Nkind (N) = N_Integer_Literal
6320 or else Nkind (N) = N_Real_Literal
6321 or else Nkind (N) = N_Character_Literal
6322 or else Nkind (N) = N_String_Literal
6323 or else (Is_Entity_Name (N)
6324 and then Ekind (Entity (N)) = E_Enumeration_Literal)
6325 then
6326 Set_Is_Static_Expression (N, Static);
6327
6328 -- If this is still an attribute reference, then it has not been folded
6329 -- and that means that its expressions are in a non-static context.
6330
6331 elsif Nkind (N) = N_Attribute_Reference then
6332 Check_Expressions;
6333
6334 -- Note: the else case not covered here are odd cases where the
6335 -- processing has transformed the attribute into something other
6336 -- than a constant. Nothing more to do in such cases.
6337
6338 else
6339 null;
6340 end if;
6341
6342 end Eval_Attribute;
6343
6344 ------------------------------
6345 -- Is_Anonymous_Tagged_Base --
6346 ------------------------------
6347
6348 function Is_Anonymous_Tagged_Base
6349 (Anon : Entity_Id;
6350 Typ : Entity_Id)
6351 return Boolean
6352 is
6353 begin
6354 return
6355 Anon = Current_Scope
6356 and then Is_Itype (Anon)
6357 and then Associated_Node_For_Itype (Anon) = Parent (Typ);
6358 end Is_Anonymous_Tagged_Base;
6359
6360 -----------------------
6361 -- Resolve_Attribute --
6362 -----------------------
6363
6364 procedure Resolve_Attribute (N : Node_Id; Typ : Entity_Id) is
6365 Loc : constant Source_Ptr := Sloc (N);
6366 P : constant Node_Id := Prefix (N);
6367 Aname : constant Name_Id := Attribute_Name (N);
6368 Attr_Id : constant Attribute_Id := Get_Attribute_Id (Aname);
6369 Btyp : constant Entity_Id := Base_Type (Typ);
6370 Index : Interp_Index;
6371 It : Interp;
6372 Nom_Subt : Entity_Id;
6373
6374 begin
6375 -- If error during analysis, no point in continuing, except for
6376 -- array types, where we get better recovery by using unconstrained
6377 -- indices than nothing at all (see Check_Array_Type).
6378
6379 if Error_Posted (N)
6380 and then Attr_Id /= Attribute_First
6381 and then Attr_Id /= Attribute_Last
6382 and then Attr_Id /= Attribute_Length
6383 and then Attr_Id /= Attribute_Range
6384 then
6385 return;
6386 end if;
6387
6388 -- If attribute was universal type, reset to actual type
6389
6390 if Etype (N) = Universal_Integer
6391 or else Etype (N) = Universal_Real
6392 then
6393 Set_Etype (N, Typ);
6394 end if;
6395
6396 -- Remaining processing depends on attribute
6397
6398 case Attr_Id is
6399
6400 ------------
6401 -- Access --
6402 ------------
6403
6404 -- For access attributes, if the prefix denotes an entity, it is
6405 -- interpreted as a name, never as a call. It may be overloaded,
6406 -- in which case resolution uses the profile of the context type.
6407 -- Otherwise prefix must be resolved.
6408
6409 when Attribute_Access
6410 | Attribute_Unchecked_Access
6411 | Attribute_Unrestricted_Access =>
6412
6413 if Is_Variable (P) then
6414 Note_Possible_Modification (P);
6415 end if;
6416
6417 if Is_Entity_Name (P) then
6418 if Is_Overloaded (P) then
6419 Get_First_Interp (P, Index, It);
6420
6421 while Present (It.Nam) loop
6422
6423 if Type_Conformant (Designated_Type (Typ), It.Nam) then
6424 Set_Entity (P, It.Nam);
6425
6426 -- The prefix is definitely NOT overloaded anymore
6427 -- at this point, so we reset the Is_Overloaded
6428 -- flag to avoid any confusion when reanalyzing
6429 -- the node.
6430
6431 Set_Is_Overloaded (P, False);
6432 Generate_Reference (Entity (P), P);
6433 exit;
6434 end if;
6435
6436 Get_Next_Interp (Index, It);
6437 end loop;
6438
6439 -- If it is a subprogram name or a type, there is nothing
6440 -- to resolve.
6441
6442 elsif not Is_Overloadable (Entity (P))
6443 and then not Is_Type (Entity (P))
6444 then
6445 Resolve (P);
6446 end if;
6447
6448 Error_Msg_Name_1 := Aname;
6449
6450 if not Is_Entity_Name (P) then
6451 null;
6452
6453 elsif Is_Abstract (Entity (P))
6454 and then Is_Overloadable (Entity (P))
6455 then
6456 Error_Msg_N ("prefix of % attribute cannot be abstract", P);
6457 Set_Etype (N, Any_Type);
6458
6459 elsif Convention (Entity (P)) = Convention_Intrinsic then
6460 if Ekind (Entity (P)) = E_Enumeration_Literal then
6461 Error_Msg_N
6462 ("prefix of % attribute cannot be enumeration literal",
6463 P);
6464 else
6465 Error_Msg_N
6466 ("prefix of % attribute cannot be intrinsic", P);
6467 end if;
6468
6469 Set_Etype (N, Any_Type);
6470
6471 elsif Is_Thread_Body (Entity (P)) then
6472 Error_Msg_N
6473 ("prefix of % attribute cannot be a thread body", P);
6474 end if;
6475
6476 -- Assignments, return statements, components of aggregates,
6477 -- generic instantiations will require convention checks if
6478 -- the type is an access to subprogram. Given that there will
6479 -- also be accessibility checks on those, this is where the
6480 -- checks can eventually be centralized ???
6481
6482 if Ekind (Btyp) = E_Access_Subprogram_Type then
6483 if Convention (Btyp) /= Convention (Entity (P)) then
6484 Error_Msg_N
6485 ("subprogram has invalid convention for context", P);
6486
6487 else
6488 Check_Subtype_Conformant
6489 (New_Id => Entity (P),
6490 Old_Id => Designated_Type (Btyp),
6491 Err_Loc => P);
6492 end if;
6493
6494 if Attr_Id = Attribute_Unchecked_Access then
6495 Error_Msg_Name_1 := Aname;
6496 Error_Msg_N
6497 ("attribute% cannot be applied to a subprogram", P);
6498
6499 elsif Aname = Name_Unrestricted_Access then
6500 null; -- Nothing to check
6501
6502 -- Check the static accessibility rule of 3.10.2(32)
6503
6504 elsif Attr_Id = Attribute_Access
6505 and then Subprogram_Access_Level (Entity (P))
6506 > Type_Access_Level (Btyp)
6507 then
6508 if not In_Instance_Body then
6509 Error_Msg_N
6510 ("subprogram must not be deeper than access type",
6511 P);
6512 else
6513 Error_Msg_N
6514 ("subprogram must not be deeper than access type?",
6515 P);
6516 Error_Msg_N
6517 ("Constraint_Error will be raised ?", P);
6518 Set_Raises_Constraint_Error (N);
6519 end if;
6520
6521 -- Check the restriction of 3.10.2(32) that disallows
6522 -- the type of the access attribute to be declared
6523 -- outside a generic body when the attribute occurs
6524 -- within that generic body.
6525
6526 elsif Enclosing_Generic_Body (Entity (P))
6527 /= Enclosing_Generic_Body (Btyp)
6528 then
6529 Error_Msg_N
6530 ("access type must not be outside generic body", P);
6531 end if;
6532 end if;
6533
6534 -- if this is a renaming, an inherited operation, or a
6535 -- subprogram instance, use the original entity.
6536
6537 if Is_Entity_Name (P)
6538 and then Is_Overloadable (Entity (P))
6539 and then Present (Alias (Entity (P)))
6540 then
6541 Rewrite (P,
6542 New_Occurrence_Of (Alias (Entity (P)), Sloc (P)));
6543 end if;
6544
6545 elsif Nkind (P) = N_Selected_Component
6546 and then Is_Overloadable (Entity (Selector_Name (P)))
6547 then
6548 -- Protected operation. If operation is overloaded, must
6549 -- disambiguate. Prefix that denotes protected object itself
6550 -- is resolved with its own type.
6551
6552 if Attr_Id = Attribute_Unchecked_Access then
6553 Error_Msg_Name_1 := Aname;
6554 Error_Msg_N
6555 ("attribute% cannot be applied to protected operation", P);
6556 end if;
6557
6558 Resolve (Prefix (P));
6559 Generate_Reference (Entity (Selector_Name (P)), P);
6560
6561 elsif Is_Overloaded (P) then
6562
6563 -- Use the designated type of the context to disambiguate.
6564 declare
6565 Index : Interp_Index;
6566 It : Interp;
6567 begin
6568 Get_First_Interp (P, Index, It);
6569
6570 while Present (It.Typ) loop
6571 if Covers (Designated_Type (Typ), It.Typ) then
6572 Resolve (P, It.Typ);
6573 exit;
6574 end if;
6575
6576 Get_Next_Interp (Index, It);
6577 end loop;
6578 end;
6579 else
6580 Resolve (P);
6581 end if;
6582
6583 -- X'Access is illegal if X denotes a constant and the access
6584 -- type is access-to-variable. Same for 'Unchecked_Access.
6585 -- The rule does not apply to 'Unrestricted_Access.
6586
6587 if not (Ekind (Btyp) = E_Access_Subprogram_Type
6588 or else (Is_Record_Type (Btyp) and then
6589 Present (Corresponding_Remote_Type (Btyp)))
6590 or else Ekind (Btyp) = E_Access_Protected_Subprogram_Type
6591 or else Is_Access_Constant (Btyp)
6592 or else Is_Variable (P)
6593 or else Attr_Id = Attribute_Unrestricted_Access)
6594 then
6595 if Comes_From_Source (N) then
6596 Error_Msg_N ("access-to-variable designates constant", P);
6597 end if;
6598 end if;
6599
6600 if (Attr_Id = Attribute_Access
6601 or else
6602 Attr_Id = Attribute_Unchecked_Access)
6603 and then (Ekind (Btyp) = E_General_Access_Type
6604 or else Ekind (Btyp) = E_Anonymous_Access_Type)
6605 then
6606 if Is_Dependent_Component_Of_Mutable_Object (P) then
6607 Error_Msg_N
6608 ("illegal attribute for discriminant-dependent component",
6609 P);
6610 end if;
6611
6612 -- Check the static matching rule of 3.10.2(27). The
6613 -- nominal subtype of the prefix must statically
6614 -- match the designated type.
6615
6616 Nom_Subt := Etype (P);
6617
6618 if Is_Constr_Subt_For_U_Nominal (Nom_Subt) then
6619 Nom_Subt := Etype (Nom_Subt);
6620 end if;
6621
6622 if Is_Tagged_Type (Designated_Type (Typ)) then
6623
6624 -- If the attribute is in the context of an access
6625 -- parameter, then the prefix is allowed to be of
6626 -- the class-wide type (by AI-127).
6627
6628 if Ekind (Typ) = E_Anonymous_Access_Type then
6629 if not Covers (Designated_Type (Typ), Nom_Subt)
6630 and then not Covers (Nom_Subt, Designated_Type (Typ))
6631 then
6632 declare
6633 Desig : Entity_Id;
6634
6635 begin
6636 Desig := Designated_Type (Typ);
6637
6638 if Is_Class_Wide_Type (Desig) then
6639 Desig := Etype (Desig);
6640 end if;
6641
6642 if Is_Anonymous_Tagged_Base (Nom_Subt, Desig) then
6643 null;
6644
6645 else
6646 Error_Msg_NE
6647 ("type of prefix: & not compatible",
6648 P, Nom_Subt);
6649 Error_Msg_NE
6650 ("\with &, the expected designated type",
6651 P, Designated_Type (Typ));
6652 end if;
6653 end;
6654 end if;
6655
6656 elsif not Covers (Designated_Type (Typ), Nom_Subt)
6657 or else
6658 (not Is_Class_Wide_Type (Designated_Type (Typ))
6659 and then Is_Class_Wide_Type (Nom_Subt))
6660 then
6661 Error_Msg_NE
6662 ("type of prefix: & is not covered", P, Nom_Subt);
6663 Error_Msg_NE
6664 ("\by &, the expected designated type" &
6665 " ('R'M 3.10.2 (27))", P, Designated_Type (Typ));
6666 end if;
6667
6668 if Is_Class_Wide_Type (Designated_Type (Typ))
6669 and then Has_Discriminants (Etype (Designated_Type (Typ)))
6670 and then Is_Constrained (Etype (Designated_Type (Typ)))
6671 and then Designated_Type (Typ) /= Nom_Subt
6672 then
6673 Apply_Discriminant_Check
6674 (N, Etype (Designated_Type (Typ)));
6675 end if;
6676
6677 elsif not Subtypes_Statically_Match
6678 (Designated_Type (Base_Type (Typ)), Nom_Subt)
6679 and then
6680 not (Has_Discriminants (Designated_Type (Typ))
6681 and then
6682 not Is_Constrained
6683 (Designated_Type (Base_Type (Typ))))
6684 then
6685 Error_Msg_N
6686 ("object subtype must statically match "
6687 & "designated subtype", P);
6688
6689 if Is_Entity_Name (P)
6690 and then Is_Array_Type (Designated_Type (Typ))
6691 then
6692
6693 declare
6694 D : constant Node_Id := Declaration_Node (Entity (P));
6695
6696 begin
6697 Error_Msg_N ("aliased object has explicit bounds?",
6698 D);
6699 Error_Msg_N ("\declare without bounds"
6700 & " (and with explicit initialization)?", D);
6701 Error_Msg_N ("\for use with unconstrained access?", D);
6702 end;
6703 end if;
6704 end if;
6705
6706 -- Check the static accessibility rule of 3.10.2(28).
6707 -- Note that this check is not performed for the
6708 -- case of an anonymous access type, since the access
6709 -- attribute is always legal in such a context.
6710
6711 if Attr_Id /= Attribute_Unchecked_Access
6712 and then Object_Access_Level (P) > Type_Access_Level (Btyp)
6713 and then Ekind (Btyp) = E_General_Access_Type
6714 then
6715 -- In an instance, this is a runtime check, but one we
6716 -- know will fail, so generate an appropriate warning.
6717
6718 if In_Instance_Body then
6719 Error_Msg_N
6720 ("?non-local pointer cannot point to local object", P);
6721 Error_Msg_N
6722 ("?Program_Error will be raised at run time", P);
6723 Rewrite (N,
6724 Make_Raise_Program_Error (Loc,
6725 Reason => PE_Accessibility_Check_Failed));
6726 Set_Etype (N, Typ);
6727 return;
6728
6729 else
6730 Error_Msg_N
6731 ("non-local pointer cannot point to local object", P);
6732
6733 if Is_Record_Type (Current_Scope)
6734 and then (Nkind (Parent (N)) =
6735 N_Discriminant_Association
6736 or else
6737 Nkind (Parent (N)) =
6738 N_Index_Or_Discriminant_Constraint)
6739 then
6740 declare
6741 Indic : Node_Id := Parent (Parent (N));
6742
6743 begin
6744 while Present (Indic)
6745 and then Nkind (Indic) /= N_Subtype_Indication
6746 loop
6747 Indic := Parent (Indic);
6748 end loop;
6749
6750 if Present (Indic) then
6751 Error_Msg_NE
6752 ("\use an access definition for" &
6753 " the access discriminant of&", N,
6754 Entity (Subtype_Mark (Indic)));
6755 end if;
6756 end;
6757 end if;
6758 end if;
6759 end if;
6760 end if;
6761
6762 if Ekind (Btyp) = E_Access_Protected_Subprogram_Type
6763 and then Is_Entity_Name (P)
6764 and then not Is_Protected_Type (Scope (Entity (P)))
6765 then
6766 Error_Msg_N ("context requires a protected subprogram", P);
6767
6768 elsif Ekind (Btyp) = E_Access_Subprogram_Type
6769 and then Ekind (Etype (N)) = E_Access_Protected_Subprogram_Type
6770 then
6771 Error_Msg_N ("context requires a non-protected subprogram", P);
6772 end if;
6773
6774 -- The context cannot be a pool-specific type, but this is a
6775 -- legality rule, not a resolution rule, so it must be checked
6776 -- separately, after possibly disambiguation (see AI-245).
6777
6778 if Ekind (Btyp) = E_Access_Type
6779 and then Attr_Id /= Attribute_Unrestricted_Access
6780 then
6781 Wrong_Type (N, Typ);
6782 end if;
6783
6784 Set_Etype (N, Typ);
6785
6786 -- Check for incorrect atomic/volatile reference (RM C.6(12))
6787
6788 if Attr_Id /= Attribute_Unrestricted_Access then
6789 if Is_Atomic_Object (P)
6790 and then not Is_Atomic (Designated_Type (Typ))
6791 then
6792 Error_Msg_N
6793 ("access to atomic object cannot yield access-to-" &
6794 "non-atomic type", P);
6795
6796 elsif Is_Volatile_Object (P)
6797 and then not Is_Volatile (Designated_Type (Typ))
6798 then
6799 Error_Msg_N
6800 ("access to volatile object cannot yield access-to-" &
6801 "non-volatile type", P);
6802 end if;
6803 end if;
6804
6805 -------------
6806 -- Address --
6807 -------------
6808
6809 -- Deal with resolving the type for Address attribute, overloading
6810 -- is not permitted here, since there is no context to resolve it.
6811
6812 when Attribute_Address | Attribute_Code_Address =>
6813
6814 -- To be safe, assume that if the address of a variable is taken,
6815 -- it may be modified via this address, so note modification.
6816
6817 if Is_Variable (P) then
6818 Note_Possible_Modification (P);
6819 end if;
6820
6821 if Nkind (P) in N_Subexpr
6822 and then Is_Overloaded (P)
6823 then
6824 Get_First_Interp (P, Index, It);
6825 Get_Next_Interp (Index, It);
6826
6827 if Present (It.Nam) then
6828 Error_Msg_Name_1 := Aname;
6829 Error_Msg_N
6830 ("prefix of % attribute cannot be overloaded", N);
6831 return;
6832 end if;
6833 end if;
6834
6835 if not Is_Entity_Name (P)
6836 or else not Is_Overloadable (Entity (P))
6837 then
6838 if not Is_Task_Type (Etype (P))
6839 or else Nkind (P) = N_Explicit_Dereference
6840 then
6841 Resolve (P);
6842 end if;
6843 end if;
6844
6845 -- If this is the name of a derived subprogram, or that of a
6846 -- generic actual, the address is that of the original entity.
6847
6848 if Is_Entity_Name (P)
6849 and then Is_Overloadable (Entity (P))
6850 and then Present (Alias (Entity (P)))
6851 then
6852 Rewrite (P,
6853 New_Occurrence_Of (Alias (Entity (P)), Sloc (P)));
6854 end if;
6855
6856 ---------------
6857 -- AST_Entry --
6858 ---------------
6859
6860 -- Prefix of the AST_Entry attribute is an entry name which must
6861 -- not be resolved, since this is definitely not an entry call.
6862
6863 when Attribute_AST_Entry =>
6864 null;
6865
6866 ------------------
6867 -- Body_Version --
6868 ------------------
6869
6870 -- Prefix of Body_Version attribute can be a subprogram name which
6871 -- must not be resolved, since this is not a call.
6872
6873 when Attribute_Body_Version =>
6874 null;
6875
6876 ------------
6877 -- Caller --
6878 ------------
6879
6880 -- Prefix of Caller attribute is an entry name which must not
6881 -- be resolved, since this is definitely not an entry call.
6882
6883 when Attribute_Caller =>
6884 null;
6885
6886 ------------------
6887 -- Code_Address --
6888 ------------------
6889
6890 -- Shares processing with Address attribute
6891
6892 -----------
6893 -- Count --
6894 -----------
6895
6896 -- If the prefix of the Count attribute is an entry name it must not
6897 -- be resolved, since this is definitely not an entry call. However,
6898 -- if it is an element of an entry family, the index itself may
6899 -- have to be resolved because it can be a general expression.
6900
6901 when Attribute_Count =>
6902 if Nkind (P) = N_Indexed_Component
6903 and then Is_Entity_Name (Prefix (P))
6904 then
6905 declare
6906 Indx : constant Node_Id := First (Expressions (P));
6907 Fam : constant Entity_Id := Entity (Prefix (P));
6908 begin
6909 Resolve (Indx, Entry_Index_Type (Fam));
6910 Apply_Range_Check (Indx, Entry_Index_Type (Fam));
6911 end;
6912 end if;
6913
6914 ----------------
6915 -- Elaborated --
6916 ----------------
6917
6918 -- Prefix of the Elaborated attribute is a subprogram name which
6919 -- must not be resolved, since this is definitely not a call. Note
6920 -- that it is a library unit, so it cannot be overloaded here.
6921
6922 when Attribute_Elaborated =>
6923 null;
6924
6925 --------------------
6926 -- Mechanism_Code --
6927 --------------------
6928
6929 -- Prefix of the Mechanism_Code attribute is a function name
6930 -- which must not be resolved. Should we check for overloaded ???
6931
6932 when Attribute_Mechanism_Code =>
6933 null;
6934
6935 ------------------
6936 -- Partition_ID --
6937 ------------------
6938
6939 -- Most processing is done in sem_dist, after determining the
6940 -- context type. Node is rewritten as a conversion to a runtime call.
6941
6942 when Attribute_Partition_ID =>
6943 Process_Partition_Id (N);
6944 return;
6945
6946 when Attribute_Pool_Address =>
6947 Resolve (P);
6948
6949 -----------
6950 -- Range --
6951 -----------
6952
6953 -- We replace the Range attribute node with a range expression
6954 -- whose bounds are the 'First and 'Last attributes applied to the
6955 -- same prefix. The reason that we do this transformation here
6956 -- instead of in the expander is that it simplifies other parts of
6957 -- the semantic analysis which assume that the Range has been
6958 -- replaced; thus it must be done even when in semantic-only mode
6959 -- (note that the RM specifically mentions this equivalence, we
6960 -- take care that the prefix is only evaluated once).
6961
6962 when Attribute_Range => Range_Attribute :
6963 declare
6964 LB : Node_Id;
6965 HB : Node_Id;
6966
6967 function Check_Discriminated_Prival
6968 (N : Node_Id)
6969 return Node_Id;
6970 -- The range of a private component constrained by a
6971 -- discriminant is rewritten to make the discriminant
6972 -- explicit. This solves some complex visibility problems
6973 -- related to the use of privals.
6974
6975 --------------------------------
6976 -- Check_Discriminated_Prival --
6977 --------------------------------
6978
6979 function Check_Discriminated_Prival
6980 (N : Node_Id)
6981 return Node_Id
6982 is
6983 begin
6984 if Is_Entity_Name (N)
6985 and then Ekind (Entity (N)) = E_In_Parameter
6986 and then not Within_Init_Proc
6987 then
6988 return Make_Identifier (Sloc (N), Chars (Entity (N)));
6989 else
6990 return Duplicate_Subexpr (N);
6991 end if;
6992 end Check_Discriminated_Prival;
6993
6994 -- Start of processing for Range_Attribute
6995
6996 begin
6997 if not Is_Entity_Name (P)
6998 or else not Is_Type (Entity (P))
6999 then
7000 Resolve (P);
7001 end if;
7002
7003 -- Check whether prefix is (renaming of) private component
7004 -- of protected type.
7005
7006 if Is_Entity_Name (P)
7007 and then Comes_From_Source (N)
7008 and then Is_Array_Type (Etype (P))
7009 and then Number_Dimensions (Etype (P)) = 1
7010 and then (Ekind (Scope (Entity (P))) = E_Protected_Type
7011 or else
7012 Ekind (Scope (Scope (Entity (P)))) =
7013 E_Protected_Type)
7014 then
7015 LB :=
7016 Check_Discriminated_Prival
7017 (Type_Low_Bound (Etype (First_Index (Etype (P)))));
7018
7019 HB :=
7020 Check_Discriminated_Prival
7021 (Type_High_Bound (Etype (First_Index (Etype (P)))));
7022
7023 else
7024 HB :=
7025 Make_Attribute_Reference (Loc,
7026 Prefix => Duplicate_Subexpr (P),
7027 Attribute_Name => Name_Last,
7028 Expressions => Expressions (N));
7029
7030 LB :=
7031 Make_Attribute_Reference (Loc,
7032 Prefix => P,
7033 Attribute_Name => Name_First,
7034 Expressions => Expressions (N));
7035 end if;
7036
7037 -- If the original was marked as Must_Not_Freeze (see code
7038 -- in Sem_Ch3.Make_Index), then make sure the rewriting
7039 -- does not freeze either.
7040
7041 if Must_Not_Freeze (N) then
7042 Set_Must_Not_Freeze (HB);
7043 Set_Must_Not_Freeze (LB);
7044 Set_Must_Not_Freeze (Prefix (HB));
7045 Set_Must_Not_Freeze (Prefix (LB));
7046 end if;
7047
7048 if Raises_Constraint_Error (Prefix (N)) then
7049
7050 -- Preserve Sloc of prefix in the new bounds, so that
7051 -- the posted warning can be removed if we are within
7052 -- unreachable code.
7053
7054 Set_Sloc (LB, Sloc (Prefix (N)));
7055 Set_Sloc (HB, Sloc (Prefix (N)));
7056 end if;
7057
7058 Rewrite (N, Make_Range (Loc, LB, HB));
7059 Analyze_And_Resolve (N, Typ);
7060
7061 -- Normally after resolving attribute nodes, Eval_Attribute
7062 -- is called to do any possible static evaluation of the node.
7063 -- However, here since the Range attribute has just been
7064 -- transformed into a range expression it is no longer an
7065 -- attribute node and therefore the call needs to be avoided
7066 -- and is accomplished by simply returning from the procedure.
7067
7068 return;
7069 end Range_Attribute;
7070
7071 -----------------
7072 -- UET_Address --
7073 -----------------
7074
7075 -- Prefix must not be resolved in this case, since it is not a
7076 -- real entity reference. No action of any kind is require!
7077
7078 when Attribute_UET_Address =>
7079 return;
7080
7081 ----------------------
7082 -- Unchecked_Access --
7083 ----------------------
7084
7085 -- Processing is shared with Access
7086
7087 -------------------------
7088 -- Unrestricted_Access --
7089 -------------------------
7090
7091 -- Processing is shared with Access
7092
7093 ---------
7094 -- Val --
7095 ---------
7096
7097 -- Apply range check. Note that we did not do this during the
7098 -- analysis phase, since we wanted Eval_Attribute to have a
7099 -- chance at finding an illegal out of range value.
7100
7101 when Attribute_Val =>
7102
7103 -- Note that we do our own Eval_Attribute call here rather than
7104 -- use the common one, because we need to do processing after
7105 -- the call, as per above comment.
7106
7107 Eval_Attribute (N);
7108
7109 -- Eval_Attribute may replace the node with a raise CE, or
7110 -- fold it to a constant. Obviously we only apply a scalar
7111 -- range check if this did not happen!
7112
7113 if Nkind (N) = N_Attribute_Reference
7114 and then Attribute_Name (N) = Name_Val
7115 then
7116 Apply_Scalar_Range_Check (First (Expressions (N)), Btyp);
7117 end if;
7118
7119 return;
7120
7121 -------------
7122 -- Version --
7123 -------------
7124
7125 -- Prefix of Version attribute can be a subprogram name which
7126 -- must not be resolved, since this is not a call.
7127
7128 when Attribute_Version =>
7129 null;
7130
7131 ----------------------
7132 -- Other Attributes --
7133 ----------------------
7134
7135 -- For other attributes, resolve prefix unless it is a type. If
7136 -- the attribute reference itself is a type name ('Base and 'Class)
7137 -- then this is only legal within a task or protected record.
7138
7139 when others =>
7140 if not Is_Entity_Name (P)
7141 or else not Is_Type (Entity (P))
7142 then
7143 Resolve (P);
7144 end if;
7145
7146 -- If the attribute reference itself is a type name ('Base,
7147 -- 'Class) then this is only legal within a task or protected
7148 -- record. What is this all about ???
7149
7150 if Is_Entity_Name (N)
7151 and then Is_Type (Entity (N))
7152 then
7153 if Is_Concurrent_Type (Entity (N))
7154 and then In_Open_Scopes (Entity (P))
7155 then
7156 null;
7157 else
7158 Error_Msg_N
7159 ("invalid use of subtype name in expression or call", N);
7160 end if;
7161 end if;
7162
7163 -- For attributes whose argument may be a string, complete
7164 -- resolution of argument now. This avoids premature expansion
7165 -- (and the creation of transient scopes) before the attribute
7166 -- reference is resolved.
7167
7168 case Attr_Id is
7169 when Attribute_Value =>
7170 Resolve (First (Expressions (N)), Standard_String);
7171
7172 when Attribute_Wide_Value =>
7173 Resolve (First (Expressions (N)), Standard_Wide_String);
7174
7175 when others => null;
7176 end case;
7177 end case;
7178
7179 -- Normally the Freezing is done by Resolve but sometimes the Prefix
7180 -- is not resolved, in which case the freezing must be done now.
7181
7182 Freeze_Expression (P);
7183
7184 -- Finally perform static evaluation on the attribute reference
7185
7186 Eval_Attribute (N);
7187
7188 end Resolve_Attribute;
7189
7190 end Sem_Attr;