* gimplify.c (find_single_pointer_decl_1): New static function.
[official-gcc.git] / gcc / ada / cstand.adb
blobefd3237bf7542e8429162e04ef523688f68b5fdc
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- C S T A N D --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2005 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, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, 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 ------------------------------------------------------------------------------
27 with Atree; use Atree;
28 with Csets; use Csets;
29 with Debug; use Debug;
30 with Einfo; use Einfo;
31 with Layout; use Layout;
32 with Namet; use Namet;
33 with Nlists; use Nlists;
34 with Nmake; use Nmake;
35 with Opt; use Opt;
36 with Output; use Output;
37 with Targparm; use Targparm;
38 with Tbuild; use Tbuild;
39 with Ttypes; use Ttypes;
40 with Ttypef; use Ttypef;
41 with Scn;
42 with Sem_Mech; use Sem_Mech;
43 with Sem_Util; use Sem_Util;
44 with Sinfo; use Sinfo;
45 with Snames; use Snames;
46 with Stand; use Stand;
47 with Uintp; use Uintp;
48 with Urealp; use Urealp;
50 package body CStand is
52 Stloc : constant Source_Ptr := Standard_Location;
53 Staloc : constant Source_Ptr := Standard_ASCII_Location;
54 -- Standard abbreviations used throughout this package
56 -----------------------
57 -- Local Subprograms --
58 -----------------------
60 procedure Build_Float_Type (E : Entity_Id; Siz : Int; Digs : Int);
61 -- Procedure to build standard predefined float base type. The first
62 -- parameter is the entity for the type, and the second parameter
63 -- is the size in bits. The third parameter is the digits value.
65 procedure Build_Signed_Integer_Type (E : Entity_Id; Siz : Int);
66 -- Procedure to build standard predefined signed integer subtype. The
67 -- first parameter is the entity for the subtype. The second parameter
68 -- is the size in bits. The corresponding base type is not built by
69 -- this routine but instead must be built by the caller where needed.
71 procedure Create_Operators;
72 -- Make entries for each of the predefined operators in Standard
74 procedure Create_Unconstrained_Base_Type
75 (E : Entity_Id;
76 K : Entity_Kind);
77 -- The predefined signed integer types are constrained subtypes which
78 -- must have a corresponding unconstrained base type. This type is almost
79 -- useless. The only place it has semantics is Subtypes_Statically_Match.
80 -- Consequently, we arrange for it to be identical apart from the setting
81 -- of the constrained bit. This routine takes an entity E for the Type,
82 -- copies it to estabish the base type, then resets the Ekind of the
83 -- original entity to K (the Ekind for the subtype). The Etype field of
84 -- E is set by the call (to point to the created base type entity), and
85 -- also the Is_Constrained flag of E is set.
87 -- To understand the exact requirement for this, see RM 3.5.4(11) which
88 -- makes it clear that Integer, for example, is constrained, with the
89 -- constraint bounds matching the bounds of the (unconstrained) base
90 -- type. The point is that Integer and Integer'Base have identical
91 -- bounds, but do not statically match, since a subtype with constraints
92 -- never matches a subtype with no constraints.
94 function Identifier_For (S : Standard_Entity_Type) return Node_Id;
95 -- Returns an identifier node with the same name as the defining
96 -- identifier corresponding to the given Standard_Entity_Type value
98 procedure Make_Component
99 (Rec : Entity_Id;
100 Typ : Entity_Id;
101 Nam : String);
102 -- Build a record component with the given type and name, and append to
103 -- the list of components of Rec.
105 function Make_Formal
106 (Typ : Entity_Id;
107 Formal_Name : String) return Entity_Id;
108 -- Construct entity for subprogram formal with given name and type
110 function Make_Integer (V : Uint) return Node_Id;
111 -- Builds integer literal with given value
113 procedure Make_Name (Id : Entity_Id; Nam : String);
114 -- Make an entry in the names table for Nam, and set as Chars field of Id
116 function New_Operator (Op : Name_Id; Typ : Entity_Id) return Entity_Id;
117 -- Build entity for standard operator with given name and type
119 function New_Standard_Entity
120 (New_Node_Kind : Node_Kind := N_Defining_Identifier) return Entity_Id;
121 -- Builds a new entity for Standard
123 procedure Print_Standard;
124 -- Print representation of package Standard if switch set
126 procedure Set_Integer_Bounds
127 (Id : Entity_Id;
128 Typ : Entity_Id;
129 Lb : Uint;
130 Hb : Uint);
131 -- Procedure to set bounds for integer type or subtype. Id is the entity
132 -- whose bounds and type are to be set. The Typ parameter is the Etype
133 -- value for the entity (which will be the same as Id for all predefined
134 -- integer base types. The third and fourth parameters are the bounds.
136 ----------------------
137 -- Build_Float_Type --
138 ----------------------
140 procedure Build_Float_Type (E : Entity_Id; Siz : Int; Digs : Int) is
141 begin
142 Set_Type_Definition (Parent (E),
143 Make_Floating_Point_Definition (Stloc,
144 Digits_Expression => Make_Integer (UI_From_Int (Digs))));
145 Set_Ekind (E, E_Floating_Point_Type);
146 Set_Etype (E, E);
147 Init_Size (E, Siz);
148 Set_Elem_Alignment (E);
149 Init_Digits_Value (E, Digs);
150 Set_Float_Bounds (E);
151 Set_Is_Frozen (E);
152 Set_Is_Public (E);
153 Set_Size_Known_At_Compile_Time (E);
154 end Build_Float_Type;
156 -------------------------------
157 -- Build_Signed_Integer_Type --
158 -------------------------------
160 procedure Build_Signed_Integer_Type (E : Entity_Id; Siz : Int) is
161 U2Siz1 : constant Uint := 2 ** (Siz - 1);
162 Lbound : constant Uint := -U2Siz1;
163 Ubound : constant Uint := U2Siz1 - 1;
165 begin
166 Set_Type_Definition (Parent (E),
167 Make_Signed_Integer_Type_Definition (Stloc,
168 Low_Bound => Make_Integer (Lbound),
169 High_Bound => Make_Integer (Ubound)));
171 Set_Ekind (E, E_Signed_Integer_Type);
172 Set_Etype (E, E);
173 Init_Size (E, Siz);
174 Set_Elem_Alignment (E);
175 Set_Integer_Bounds (E, E, Lbound, Ubound);
176 Set_Is_Frozen (E);
177 Set_Is_Public (E);
178 Set_Is_Known_Valid (E);
179 Set_Size_Known_At_Compile_Time (E);
180 end Build_Signed_Integer_Type;
182 ----------------------
183 -- Create_Operators --
184 ----------------------
186 -- Each operator has an abbreviated signature. The formals have the names
187 -- LEFT and RIGHT. Their types are not actually used for resolution.
189 procedure Create_Operators is
190 Op_Node : Entity_Id;
192 -- The following tables define the binary and unary operators and their
193 -- corresponding result type.
195 Binary_Ops : constant array (S_Binary_Ops) of Name_Id :=
197 -- There is one entry here for each binary operator, except for the
198 -- case of concatenation, where there are three entries, one for a
199 -- String result, one for Wide_String, and one for Wide_Wide_String.
201 (Name_Op_Add,
202 Name_Op_And,
203 Name_Op_Concat,
204 Name_Op_Concat,
205 Name_Op_Concat,
206 Name_Op_Divide,
207 Name_Op_Eq,
208 Name_Op_Expon,
209 Name_Op_Ge,
210 Name_Op_Gt,
211 Name_Op_Le,
212 Name_Op_Lt,
213 Name_Op_Mod,
214 Name_Op_Multiply,
215 Name_Op_Ne,
216 Name_Op_Or,
217 Name_Op_Rem,
218 Name_Op_Subtract,
219 Name_Op_Xor);
221 Bin_Op_Types : constant array (S_Binary_Ops) of Entity_Id :=
223 -- This table has the corresponding result types. The entries are
224 -- ordered so they correspond to the Binary_Ops array above.
226 (Universal_Integer, -- Add
227 Standard_Boolean, -- And
228 Standard_String, -- Concat (String)
229 Standard_Wide_String, -- Concat (Wide_String)
230 Standard_Wide_Wide_String, -- Concat (Wide_Wide_String)
231 Universal_Integer, -- Divide
232 Standard_Boolean, -- Eq
233 Universal_Integer, -- Expon
234 Standard_Boolean, -- Ge
235 Standard_Boolean, -- Gt
236 Standard_Boolean, -- Le
237 Standard_Boolean, -- Lt
238 Universal_Integer, -- Mod
239 Universal_Integer, -- Multiply
240 Standard_Boolean, -- Ne
241 Standard_Boolean, -- Or
242 Universal_Integer, -- Rem
243 Universal_Integer, -- Subtract
244 Standard_Boolean); -- Xor
246 Unary_Ops : constant array (S_Unary_Ops) of Name_Id :=
248 -- There is one entry here for each unary operator
250 (Name_Op_Abs,
251 Name_Op_Subtract,
252 Name_Op_Not,
253 Name_Op_Add);
255 Unary_Op_Types : constant array (S_Unary_Ops) of Entity_Id :=
257 -- This table has the corresponding result types. The entries are
258 -- ordered so they correspond to the Unary_Ops array above.
260 (Universal_Integer, -- Abs
261 Universal_Integer, -- Subtract
262 Standard_Boolean, -- Not
263 Universal_Integer); -- Add
265 begin
266 for J in S_Binary_Ops loop
267 Op_Node := New_Operator (Binary_Ops (J), Bin_Op_Types (J));
268 SE (J) := Op_Node;
269 Append_Entity (Make_Formal (Any_Type, "LEFT"), Op_Node);
270 Append_Entity (Make_Formal (Any_Type, "RIGHT"), Op_Node);
271 end loop;
273 for J in S_Unary_Ops loop
274 Op_Node := New_Operator (Unary_Ops (J), Unary_Op_Types (J));
275 SE (J) := Op_Node;
276 Append_Entity (Make_Formal (Any_Type, "RIGHT"), Op_Node);
277 end loop;
279 -- For concatenation, we create a separate operator for each
280 -- array type. This simplifies the resolution of the component-
281 -- component concatenation operation. In Standard, we set the types
282 -- of the formals for string, wide [wide]_string, concatenations.
284 Set_Etype (First_Entity (Standard_Op_Concat), Standard_String);
285 Set_Etype (Last_Entity (Standard_Op_Concat), Standard_String);
287 Set_Etype (First_Entity (Standard_Op_Concatw), Standard_Wide_String);
288 Set_Etype (Last_Entity (Standard_Op_Concatw), Standard_Wide_String);
290 Set_Etype (First_Entity (Standard_Op_Concatww),
291 Standard_Wide_Wide_String);
293 Set_Etype (Last_Entity (Standard_Op_Concatww),
294 Standard_Wide_Wide_String);
296 end Create_Operators;
298 ---------------------
299 -- Create_Standard --
300 ---------------------
302 -- The tree for the package Standard is prefixed to all compilations.
303 -- Several entities required by semantic analysis are denoted by global
304 -- variables that are initialized to point to the corresponding
305 -- occurrences in STANDARD. The visible entities of STANDARD are
306 -- created here. The private entities defined in STANDARD are created
307 -- by Initialize_Standard in the semantics module.
309 procedure Create_Standard is
310 Decl_S : constant List_Id := New_List;
311 -- List of declarations in Standard
313 Decl_A : constant List_Id := New_List;
314 -- List of declarations in ASCII
316 Decl : Node_Id;
317 Pspec : Node_Id;
318 Tdef_Node : Node_Id;
319 Ident_Node : Node_Id;
320 Ccode : Char_Code;
321 E_Id : Entity_Id;
322 R_Node : Node_Id;
323 B_Node : Node_Id;
325 procedure Build_Exception (S : Standard_Entity_Type);
326 -- Procedure to declare given entity as an exception
328 ---------------------
329 -- Build_Exception --
330 ---------------------
332 procedure Build_Exception (S : Standard_Entity_Type) is
333 begin
334 Set_Ekind (Standard_Entity (S), E_Exception);
335 Set_Etype (Standard_Entity (S), Standard_Exception_Type);
336 Set_Exception_Code (Standard_Entity (S), Uint_0);
337 Set_Is_Public (Standard_Entity (S), True);
339 Decl :=
340 Make_Exception_Declaration (Stloc,
341 Defining_Identifier => Standard_Entity (S));
342 Append (Decl, Decl_S);
343 end Build_Exception;
345 -- Start of processing for Create_Standard
347 begin
348 -- Initialize scanner for internal scans of literals
350 Scn.Initialize_Scanner (No_Unit, Internal_Source_File);
352 -- First step is to create defining identifiers for each entity
354 for S in Standard_Entity_Type loop
355 declare
356 S_Name : constant String := Standard_Entity_Type'Image (S);
357 -- Name of entity (note we skip S_ at the start)
359 Ident_Node : Node_Id;
360 -- Defining identifier node
362 begin
363 Ident_Node := New_Standard_Entity;
364 Make_Name (Ident_Node, S_Name (3 .. S_Name'Length));
365 Standard_Entity (S) := Ident_Node;
366 end;
367 end loop;
369 -- Create package declaration node for package Standard
371 Standard_Package_Node := New_Node (N_Package_Declaration, Stloc);
373 Pspec := New_Node (N_Package_Specification, Stloc);
374 Set_Specification (Standard_Package_Node, Pspec);
376 Set_Defining_Unit_Name (Pspec, Standard_Standard);
377 Set_Visible_Declarations (Pspec, Decl_S);
379 Set_Ekind (Standard_Standard, E_Package);
380 Set_Is_Pure (Standard_Standard);
381 Set_Is_Compilation_Unit (Standard_Standard);
383 -- Create type declaration nodes for standard types
385 for S in S_Types loop
386 Decl := New_Node (N_Full_Type_Declaration, Stloc);
387 Set_Defining_Identifier (Decl, Standard_Entity (S));
388 Set_Is_Frozen (Standard_Entity (S));
389 Set_Is_Public (Standard_Entity (S));
390 Append (Decl, Decl_S);
391 end loop;
393 -- Create type definition node for type Boolean. The Size is set to
394 -- 1 as required by Ada 95 and current ARG interpretations for Ada/83.
396 -- Note: Object_Size of Boolean is 8. This means that we do NOT in
397 -- general know that Boolean variables have valid values, so we do
398 -- not set the Is_Known_Valid flag.
400 Tdef_Node := New_Node (N_Enumeration_Type_Definition, Stloc);
401 Set_Literals (Tdef_Node, New_List);
402 Append (Standard_False, Literals (Tdef_Node));
403 Append (Standard_True, Literals (Tdef_Node));
404 Set_Type_Definition (Parent (Standard_Boolean), Tdef_Node);
406 Set_Ekind (Standard_Boolean, E_Enumeration_Type);
407 Set_First_Literal (Standard_Boolean, Standard_False);
408 Set_Etype (Standard_Boolean, Standard_Boolean);
409 Init_Esize (Standard_Boolean, Standard_Character_Size);
410 Init_RM_Size (Standard_Boolean, 1);
411 Set_Elem_Alignment (Standard_Boolean);
413 Set_Is_Unsigned_Type (Standard_Boolean);
414 Set_Size_Known_At_Compile_Time (Standard_Boolean);
416 Set_Ekind (Standard_True, E_Enumeration_Literal);
417 Set_Etype (Standard_True, Standard_Boolean);
418 Set_Enumeration_Pos (Standard_True, Uint_1);
419 Set_Enumeration_Rep (Standard_True, Uint_1);
420 Set_Is_Known_Valid (Standard_True, True);
422 Set_Ekind (Standard_False, E_Enumeration_Literal);
423 Set_Etype (Standard_False, Standard_Boolean);
424 Set_Enumeration_Pos (Standard_False, Uint_0);
425 Set_Enumeration_Rep (Standard_False, Uint_0);
426 Set_Is_Known_Valid (Standard_False, True);
428 -- For the bounds of Boolean, we create a range node corresponding to
430 -- range False .. True
432 -- where the occurrences of the literals must point to the
433 -- corresponding definition.
435 R_Node := New_Node (N_Range, Stloc);
436 B_Node := New_Node (N_Identifier, Stloc);
437 Set_Chars (B_Node, Chars (Standard_False));
438 Set_Entity (B_Node, Standard_False);
439 Set_Etype (B_Node, Standard_Boolean);
440 Set_Is_Static_Expression (B_Node);
441 Set_Low_Bound (R_Node, B_Node);
443 B_Node := New_Node (N_Identifier, Stloc);
444 Set_Chars (B_Node, Chars (Standard_True));
445 Set_Entity (B_Node, Standard_True);
446 Set_Etype (B_Node, Standard_Boolean);
447 Set_Is_Static_Expression (B_Node);
448 Set_High_Bound (R_Node, B_Node);
450 Set_Scalar_Range (Standard_Boolean, R_Node);
451 Set_Etype (R_Node, Standard_Boolean);
452 Set_Parent (R_Node, Standard_Boolean);
454 -- Record entity identifiers for boolean literals in the
455 -- Boolean_Literals array, for easy reference during expansion.
457 Boolean_Literals := (False => Standard_False, True => Standard_True);
459 -- Create type definition nodes for predefined integer types
461 Build_Signed_Integer_Type
462 (Standard_Short_Short_Integer, Standard_Short_Short_Integer_Size);
464 Build_Signed_Integer_Type
465 (Standard_Short_Integer, Standard_Short_Integer_Size);
467 Build_Signed_Integer_Type
468 (Standard_Integer, Standard_Integer_Size);
470 declare
471 LIS : Nat;
472 begin
473 if Debug_Flag_M then
474 LIS := 64;
475 else
476 LIS := Standard_Long_Integer_Size;
477 end if;
479 Build_Signed_Integer_Type (Standard_Long_Integer, LIS);
480 end;
482 Build_Signed_Integer_Type
483 (Standard_Long_Long_Integer, Standard_Long_Long_Integer_Size);
485 Create_Unconstrained_Base_Type
486 (Standard_Short_Short_Integer, E_Signed_Integer_Subtype);
488 Create_Unconstrained_Base_Type
489 (Standard_Short_Integer, E_Signed_Integer_Subtype);
491 Create_Unconstrained_Base_Type
492 (Standard_Integer, E_Signed_Integer_Subtype);
494 Create_Unconstrained_Base_Type
495 (Standard_Long_Integer, E_Signed_Integer_Subtype);
497 Create_Unconstrained_Base_Type
498 (Standard_Long_Long_Integer, E_Signed_Integer_Subtype);
500 -- Create type definition nodes for predefined float types
502 Build_Float_Type
503 (Standard_Short_Float,
504 Standard_Short_Float_Size,
505 Standard_Short_Float_Digits);
507 Build_Float_Type
508 (Standard_Float,
509 Standard_Float_Size,
510 Standard_Float_Digits);
512 Build_Float_Type
513 (Standard_Long_Float,
514 Standard_Long_Float_Size,
515 Standard_Long_Float_Digits);
517 Build_Float_Type
518 (Standard_Long_Long_Float,
519 Standard_Long_Long_Float_Size,
520 Standard_Long_Long_Float_Digits);
522 -- Create type definition node for type Character. Note that we do not
523 -- set the Literals field, since type Character is handled with special
524 -- routine that do not need a literal list.
526 Tdef_Node := New_Node (N_Enumeration_Type_Definition, Stloc);
527 Set_Type_Definition (Parent (Standard_Character), Tdef_Node);
529 Set_Ekind (Standard_Character, E_Enumeration_Type);
530 Set_Etype (Standard_Character, Standard_Character);
531 Init_Esize (Standard_Character, Standard_Character_Size);
532 Init_RM_Size (Standard_Character, 8);
533 Set_Elem_Alignment (Standard_Character);
535 Set_Is_Unsigned_Type (Standard_Character);
536 Set_Is_Character_Type (Standard_Character);
537 Set_Is_Known_Valid (Standard_Character);
538 Set_Size_Known_At_Compile_Time (Standard_Character);
540 -- Create the bounds for type Character
542 R_Node := New_Node (N_Range, Stloc);
544 -- Low bound for type Character (Standard.Nul)
546 B_Node := New_Node (N_Character_Literal, Stloc);
547 Set_Is_Static_Expression (B_Node);
548 Set_Chars (B_Node, No_Name);
549 Set_Char_Literal_Value (B_Node, Uint_0);
550 Set_Entity (B_Node, Empty);
551 Set_Etype (B_Node, Standard_Character);
552 Set_Low_Bound (R_Node, B_Node);
554 -- High bound for type Character
556 B_Node := New_Node (N_Character_Literal, Stloc);
557 Set_Is_Static_Expression (B_Node);
558 Set_Chars (B_Node, No_Name);
559 Set_Char_Literal_Value (B_Node, UI_From_Int (16#FF#));
560 Set_Entity (B_Node, Empty);
561 Set_Etype (B_Node, Standard_Character);
562 Set_High_Bound (R_Node, B_Node);
564 Set_Scalar_Range (Standard_Character, R_Node);
565 Set_Etype (R_Node, Standard_Character);
566 Set_Parent (R_Node, Standard_Character);
568 -- Create type definition for type Wide_Character. Note that we do not
569 -- set the Literals field, since type Wide_Character is handled with
570 -- special routines that do not need a literal list.
572 Tdef_Node := New_Node (N_Enumeration_Type_Definition, Stloc);
573 Set_Type_Definition (Parent (Standard_Wide_Character), Tdef_Node);
575 Set_Ekind (Standard_Wide_Character, E_Enumeration_Type);
576 Set_Etype (Standard_Wide_Character, Standard_Wide_Character);
577 Init_Size (Standard_Wide_Character, Standard_Wide_Character_Size);
579 Set_Elem_Alignment (Standard_Wide_Character);
580 Set_Is_Unsigned_Type (Standard_Wide_Character);
581 Set_Is_Character_Type (Standard_Wide_Character);
582 Set_Is_Known_Valid (Standard_Wide_Character);
583 Set_Size_Known_At_Compile_Time (Standard_Wide_Character);
585 -- Create the bounds for type Wide_Character
587 R_Node := New_Node (N_Range, Stloc);
589 -- Low bound for type Wide_Character
591 B_Node := New_Node (N_Character_Literal, Stloc);
592 Set_Is_Static_Expression (B_Node);
593 Set_Chars (B_Node, No_Name); -- ???
594 Set_Char_Literal_Value (B_Node, Uint_0);
595 Set_Entity (B_Node, Empty);
596 Set_Etype (B_Node, Standard_Wide_Character);
597 Set_Low_Bound (R_Node, B_Node);
599 -- High bound for type Wide_Character
601 B_Node := New_Node (N_Character_Literal, Stloc);
602 Set_Is_Static_Expression (B_Node);
603 Set_Chars (B_Node, No_Name); -- ???
604 Set_Char_Literal_Value (B_Node, UI_From_Int (16#FFFF#));
605 Set_Entity (B_Node, Empty);
606 Set_Etype (B_Node, Standard_Wide_Character);
607 Set_High_Bound (R_Node, B_Node);
609 Set_Scalar_Range (Standard_Wide_Character, R_Node);
610 Set_Etype (R_Node, Standard_Wide_Character);
611 Set_Parent (R_Node, Standard_Wide_Character);
613 -- Create type definition for type Wide_Wide_Character. Note that we
614 -- do not set the Literals field, since type Wide_Wide_Character is
615 -- handled with special routines that do not need a literal list.
617 Tdef_Node := New_Node (N_Enumeration_Type_Definition, Stloc);
618 Set_Type_Definition (Parent (Standard_Wide_Wide_Character), Tdef_Node);
620 Set_Ekind (Standard_Wide_Wide_Character, E_Enumeration_Type);
621 Set_Etype (Standard_Wide_Wide_Character,
622 Standard_Wide_Wide_Character);
623 Init_Size (Standard_Wide_Wide_Character,
624 Standard_Wide_Wide_Character_Size);
626 Set_Elem_Alignment (Standard_Wide_Wide_Character);
627 Set_Is_Unsigned_Type (Standard_Wide_Wide_Character);
628 Set_Is_Character_Type (Standard_Wide_Wide_Character);
629 Set_Is_Known_Valid (Standard_Wide_Wide_Character);
630 Set_Size_Known_At_Compile_Time (Standard_Wide_Wide_Character);
631 Set_Is_Ada_2005 (Standard_Wide_Wide_Character);
633 -- Create the bounds for type Wide_Wide_Character
635 R_Node := New_Node (N_Range, Stloc);
637 -- Low bound for type Wide_Wide_Character
639 B_Node := New_Node (N_Character_Literal, Stloc);
640 Set_Is_Static_Expression (B_Node);
641 Set_Chars (B_Node, No_Name); -- ???
642 Set_Char_Literal_Value (B_Node, Uint_0);
643 Set_Entity (B_Node, Empty);
644 Set_Etype (B_Node, Standard_Wide_Wide_Character);
645 Set_Low_Bound (R_Node, B_Node);
647 -- High bound for type Wide_Wide_Character
649 B_Node := New_Node (N_Character_Literal, Stloc);
650 Set_Is_Static_Expression (B_Node);
651 Set_Chars (B_Node, No_Name); -- ???
652 Set_Char_Literal_Value (B_Node, UI_From_Int (16#7FFF_FFFF#));
653 Set_Entity (B_Node, Empty);
654 Set_Etype (B_Node, Standard_Wide_Wide_Character);
655 Set_High_Bound (R_Node, B_Node);
657 Set_Scalar_Range (Standard_Wide_Wide_Character, R_Node);
658 Set_Etype (R_Node, Standard_Wide_Wide_Character);
659 Set_Parent (R_Node, Standard_Wide_Wide_Character);
661 -- Create type definition node for type String
663 Tdef_Node := New_Node (N_Unconstrained_Array_Definition, Stloc);
665 declare
666 CompDef_Node : Node_Id;
667 begin
668 CompDef_Node := New_Node (N_Component_Definition, Stloc);
669 Set_Aliased_Present (CompDef_Node, False);
670 Set_Access_Definition (CompDef_Node, Empty);
671 Set_Subtype_Indication (CompDef_Node, Identifier_For (S_Character));
672 Set_Component_Definition (Tdef_Node, CompDef_Node);
673 end;
675 Set_Subtype_Marks (Tdef_Node, New_List);
676 Append (Identifier_For (S_Positive), Subtype_Marks (Tdef_Node));
677 Set_Type_Definition (Parent (Standard_String), Tdef_Node);
679 Set_Ekind (Standard_String, E_String_Type);
680 Set_Etype (Standard_String, Standard_String);
681 Set_Component_Type (Standard_String, Standard_Character);
682 Set_Component_Size (Standard_String, Uint_8);
683 Init_Size_Align (Standard_String);
684 Set_Alignment (Standard_String, Uint_1);
686 -- Set index type of String
688 E_Id := First
689 (Subtype_Marks (Type_Definition (Parent (Standard_String))));
690 Set_First_Index (Standard_String, E_Id);
691 Set_Entity (E_Id, Standard_Positive);
692 Set_Etype (E_Id, Standard_Positive);
694 -- Create type definition node for type Wide_String
696 Tdef_Node := New_Node (N_Unconstrained_Array_Definition, Stloc);
698 declare
699 CompDef_Node : Node_Id;
700 begin
701 CompDef_Node := New_Node (N_Component_Definition, Stloc);
702 Set_Aliased_Present (CompDef_Node, False);
703 Set_Access_Definition (CompDef_Node, Empty);
704 Set_Subtype_Indication (CompDef_Node,
705 Identifier_For (S_Wide_Character));
706 Set_Component_Definition (Tdef_Node, CompDef_Node);
707 end;
709 Set_Subtype_Marks (Tdef_Node, New_List);
710 Append (Identifier_For (S_Positive), Subtype_Marks (Tdef_Node));
711 Set_Type_Definition (Parent (Standard_Wide_String), Tdef_Node);
713 Set_Ekind (Standard_Wide_String, E_String_Type);
714 Set_Etype (Standard_Wide_String, Standard_Wide_String);
715 Set_Component_Type (Standard_Wide_String, Standard_Wide_Character);
716 Set_Component_Size (Standard_Wide_String, Uint_16);
717 Init_Size_Align (Standard_Wide_String);
719 -- Set index type of Wide_String
721 E_Id := First
722 (Subtype_Marks (Type_Definition (Parent (Standard_Wide_String))));
723 Set_First_Index (Standard_Wide_String, E_Id);
724 Set_Entity (E_Id, Standard_Positive);
725 Set_Etype (E_Id, Standard_Positive);
727 -- Create type definition node for type Wide_Wide_String
729 Tdef_Node := New_Node (N_Unconstrained_Array_Definition, Stloc);
731 declare
732 CompDef_Node : Node_Id;
733 begin
734 CompDef_Node := New_Node (N_Component_Definition, Stloc);
735 Set_Aliased_Present (CompDef_Node, False);
736 Set_Access_Definition (CompDef_Node, Empty);
737 Set_Subtype_Indication (CompDef_Node,
738 Identifier_For (S_Wide_Wide_Character));
739 Set_Component_Definition (Tdef_Node, CompDef_Node);
740 end;
742 Set_Subtype_Marks (Tdef_Node, New_List);
743 Append (Identifier_For (S_Positive), Subtype_Marks (Tdef_Node));
744 Set_Type_Definition (Parent (Standard_Wide_Wide_String), Tdef_Node);
746 Set_Ekind (Standard_Wide_Wide_String, E_String_Type);
747 Set_Etype (Standard_Wide_Wide_String,
748 Standard_Wide_Wide_String);
749 Set_Component_Type (Standard_Wide_Wide_String,
750 Standard_Wide_Wide_Character);
751 Set_Component_Size (Standard_Wide_Wide_String, Uint_32);
752 Init_Size_Align (Standard_Wide_Wide_String);
753 Set_Is_Ada_2005 (Standard_Wide_Wide_String);
755 -- Set index type of Wide_Wide_String
757 E_Id := First
758 (Subtype_Marks (Type_Definition (Parent (Standard_Wide_Wide_String))));
759 Set_First_Index (Standard_Wide_Wide_String, E_Id);
760 Set_Entity (E_Id, Standard_Positive);
761 Set_Etype (E_Id, Standard_Positive);
763 -- Create subtype declaration for Natural
765 Decl := New_Node (N_Subtype_Declaration, Stloc);
766 Set_Defining_Identifier (Decl, Standard_Natural);
767 Set_Subtype_Indication (Decl,
768 New_Occurrence_Of (Standard_Integer, Stloc));
769 Append (Decl, Decl_S);
771 Set_Ekind (Standard_Natural, E_Signed_Integer_Subtype);
772 Set_Etype (Standard_Natural, Base_Type (Standard_Integer));
773 Init_Esize (Standard_Natural, Standard_Integer_Size);
774 Init_RM_Size (Standard_Natural, Standard_Integer_Size - 1);
775 Set_Elem_Alignment (Standard_Natural);
776 Set_Size_Known_At_Compile_Time
777 (Standard_Natural);
778 Set_Integer_Bounds (Standard_Natural,
779 Typ => Base_Type (Standard_Integer),
780 Lb => Uint_0,
781 Hb => Intval (High_Bound (Scalar_Range (Standard_Integer))));
782 Set_Is_Constrained (Standard_Natural);
783 Set_Is_Frozen (Standard_Natural);
784 Set_Is_Public (Standard_Natural);
786 -- Create subtype declaration for Positive
788 Decl := New_Node (N_Subtype_Declaration, Stloc);
789 Set_Defining_Identifier (Decl, Standard_Positive);
790 Set_Subtype_Indication (Decl,
791 New_Occurrence_Of (Standard_Integer, Stloc));
792 Append (Decl, Decl_S);
794 Set_Ekind (Standard_Positive, E_Signed_Integer_Subtype);
795 Set_Etype (Standard_Positive, Base_Type (Standard_Integer));
796 Init_Esize (Standard_Positive, Standard_Integer_Size);
797 Init_RM_Size (Standard_Positive, Standard_Integer_Size - 1);
798 Set_Elem_Alignment (Standard_Positive);
800 Set_Size_Known_At_Compile_Time (Standard_Positive);
802 Set_Integer_Bounds (Standard_Positive,
803 Typ => Base_Type (Standard_Integer),
804 Lb => Uint_1,
805 Hb => Intval (High_Bound (Scalar_Range (Standard_Integer))));
806 Set_Is_Constrained (Standard_Positive);
807 Set_Is_Frozen (Standard_Positive);
808 Set_Is_Public (Standard_Positive);
810 -- Create declaration for package ASCII
812 Decl := New_Node (N_Package_Declaration, Stloc);
813 Append (Decl, Decl_S);
815 Pspec := New_Node (N_Package_Specification, Stloc);
816 Set_Specification (Decl, Pspec);
818 Set_Defining_Unit_Name (Pspec, Standard_Entity (S_ASCII));
819 Set_Ekind (Standard_Entity (S_ASCII), E_Package);
820 Set_Visible_Declarations (Pspec, Decl_A);
822 -- Create control character definitions in package ASCII. Note that
823 -- the character literal entries created here correspond to literal
824 -- values that are impossible in the source, but can be represented
825 -- internally with no difficulties.
827 Ccode := 16#00#;
829 for S in S_ASCII_Names loop
830 Decl := New_Node (N_Object_Declaration, Staloc);
831 Set_Constant_Present (Decl, True);
833 declare
834 A_Char : constant Entity_Id := Standard_Entity (S);
835 Expr_Decl : Node_Id;
837 begin
838 Set_Sloc (A_Char, Staloc);
839 Set_Ekind (A_Char, E_Constant);
840 Set_Never_Set_In_Source (A_Char, True);
841 Set_Is_True_Constant (A_Char, True);
842 Set_Etype (A_Char, Standard_Character);
843 Set_Scope (A_Char, Standard_Entity (S_ASCII));
844 Set_Is_Immediately_Visible (A_Char, False);
845 Set_Is_Public (A_Char, True);
846 Set_Is_Known_Valid (A_Char, True);
848 Append_Entity (A_Char, Standard_Entity (S_ASCII));
849 Set_Defining_Identifier (Decl, A_Char);
851 Set_Object_Definition (Decl, Identifier_For (S_Character));
852 Expr_Decl := New_Node (N_Character_Literal, Staloc);
853 Set_Expression (Decl, Expr_Decl);
855 Set_Is_Static_Expression (Expr_Decl);
856 Set_Chars (Expr_Decl, No_Name);
857 Set_Etype (Expr_Decl, Standard_Character);
858 Set_Char_Literal_Value (Expr_Decl, UI_From_Int (Int (Ccode)));
859 end;
861 Append (Decl, Decl_A);
863 -- Increment character code, dealing with non-contiguities
865 Ccode := Ccode + 1;
867 if Ccode = 16#20# then
868 Ccode := 16#21#;
869 elsif Ccode = 16#27# then
870 Ccode := 16#3A#;
871 elsif Ccode = 16#3C# then
872 Ccode := 16#3F#;
873 elsif Ccode = 16#41# then
874 Ccode := 16#5B#;
875 end if;
876 end loop;
878 -- Create semantic phase entities
880 Standard_Void_Type := New_Standard_Entity;
881 Set_Ekind (Standard_Void_Type, E_Void);
882 Set_Etype (Standard_Void_Type, Standard_Void_Type);
883 Set_Scope (Standard_Void_Type, Standard_Standard);
884 Make_Name (Standard_Void_Type, "_void_type");
886 -- The type field of packages is set to void
888 Set_Etype (Standard_Standard, Standard_Void_Type);
889 Set_Etype (Standard_ASCII, Standard_Void_Type);
891 -- Standard_A_String is actually used in generated code, so it has a
892 -- type name that is reasonable, but does not overlap any Ada name.
894 Standard_A_String := New_Standard_Entity;
895 Set_Ekind (Standard_A_String, E_Access_Type);
896 Set_Scope (Standard_A_String, Standard_Standard);
897 Set_Etype (Standard_A_String, Standard_A_String);
899 if Debug_Flag_6 then
900 Init_Size (Standard_A_String, System_Address_Size);
901 else
902 Init_Size (Standard_A_String, System_Address_Size * 2);
903 end if;
905 Init_Alignment (Standard_A_String);
907 Set_Directly_Designated_Type
908 (Standard_A_String, Standard_String);
909 Make_Name (Standard_A_String, "access_string");
911 Standard_A_Char := New_Standard_Entity;
912 Set_Ekind (Standard_A_Char, E_Access_Type);
913 Set_Scope (Standard_A_Char, Standard_Standard);
914 Set_Etype (Standard_A_Char, Standard_A_String);
915 Init_Size (Standard_A_Char, System_Address_Size);
916 Set_Elem_Alignment (Standard_A_Char);
918 Set_Directly_Designated_Type (Standard_A_Char, Standard_Character);
919 Make_Name (Standard_A_Char, "access_character");
921 -- Note on type names. The type names for the following special types
922 -- are constructed so that they will look reasonable should they ever
923 -- appear in error messages etc, although in practice the use of the
924 -- special insertion character } for types results in special handling
925 -- of these type names in any case. The blanks in these names would
926 -- trouble in Gigi, but that's OK here, since none of these types
927 -- should ever get through to Gigi! Attributes of these types are
928 -- filled out to minimize problems with cascaded errors (for example,
929 -- Any_Integer is given reasonable and consistent type and size values)
931 Any_Type := New_Standard_Entity;
932 Decl := New_Node (N_Full_Type_Declaration, Stloc);
933 Set_Defining_Identifier (Decl, Any_Type);
934 Set_Scope (Any_Type, Standard_Standard);
935 Build_Signed_Integer_Type (Any_Type, Standard_Integer_Size);
936 Make_Name (Any_Type, "any type");
938 Any_Id := New_Standard_Entity;
939 Set_Ekind (Any_Id, E_Variable);
940 Set_Scope (Any_Id, Standard_Standard);
941 Set_Etype (Any_Id, Any_Type);
942 Init_Size_Align (Any_Id);
943 Make_Name (Any_Id, "any id");
945 Any_Access := New_Standard_Entity;
946 Set_Ekind (Any_Access, E_Access_Type);
947 Set_Scope (Any_Access, Standard_Standard);
948 Set_Etype (Any_Access, Any_Access);
949 Init_Size (Any_Access, System_Address_Size);
950 Set_Elem_Alignment (Any_Access);
951 Make_Name (Any_Access, "an access type");
953 Any_Character := New_Standard_Entity;
954 Set_Ekind (Any_Character, E_Enumeration_Type);
955 Set_Scope (Any_Character, Standard_Standard);
956 Set_Etype (Any_Character, Any_Character);
957 Set_Is_Unsigned_Type (Any_Character);
958 Set_Is_Character_Type (Any_Character);
959 Init_Esize (Any_Character, Standard_Character_Size);
960 Init_RM_Size (Any_Character, 8);
961 Set_Elem_Alignment (Any_Character);
962 Set_Scalar_Range (Any_Character, Scalar_Range (Standard_Character));
963 Make_Name (Any_Character, "a character type");
965 Any_Array := New_Standard_Entity;
966 Set_Ekind (Any_Array, E_String_Type);
967 Set_Scope (Any_Array, Standard_Standard);
968 Set_Etype (Any_Array, Any_Array);
969 Set_Component_Type (Any_Array, Any_Character);
970 Init_Size_Align (Any_Array);
971 Make_Name (Any_Array, "an array type");
973 Any_Boolean := New_Standard_Entity;
974 Set_Ekind (Any_Boolean, E_Enumeration_Type);
975 Set_Scope (Any_Boolean, Standard_Standard);
976 Set_Etype (Any_Boolean, Standard_Boolean);
977 Init_Esize (Any_Boolean, Standard_Character_Size);
978 Init_RM_Size (Any_Boolean, 1);
979 Set_Elem_Alignment (Any_Boolean);
980 Set_Is_Unsigned_Type (Any_Boolean);
981 Set_Scalar_Range (Any_Boolean, Scalar_Range (Standard_Boolean));
982 Make_Name (Any_Boolean, "a boolean type");
984 Any_Composite := New_Standard_Entity;
985 Set_Ekind (Any_Composite, E_Array_Type);
986 Set_Scope (Any_Composite, Standard_Standard);
987 Set_Etype (Any_Composite, Any_Composite);
988 Set_Component_Size (Any_Composite, Uint_0);
989 Set_Component_Type (Any_Composite, Standard_Integer);
990 Init_Size_Align (Any_Composite);
991 Make_Name (Any_Composite, "a composite type");
993 Any_Discrete := New_Standard_Entity;
994 Set_Ekind (Any_Discrete, E_Signed_Integer_Type);
995 Set_Scope (Any_Discrete, Standard_Standard);
996 Set_Etype (Any_Discrete, Any_Discrete);
997 Init_Size (Any_Discrete, Standard_Integer_Size);
998 Set_Elem_Alignment (Any_Discrete);
999 Make_Name (Any_Discrete, "a discrete type");
1001 Any_Fixed := New_Standard_Entity;
1002 Set_Ekind (Any_Fixed, E_Ordinary_Fixed_Point_Type);
1003 Set_Scope (Any_Fixed, Standard_Standard);
1004 Set_Etype (Any_Fixed, Any_Fixed);
1005 Init_Size (Any_Fixed, Standard_Integer_Size);
1006 Set_Elem_Alignment (Any_Fixed);
1007 Make_Name (Any_Fixed, "a fixed-point type");
1009 Any_Integer := New_Standard_Entity;
1010 Set_Ekind (Any_Integer, E_Signed_Integer_Type);
1011 Set_Scope (Any_Integer, Standard_Standard);
1012 Set_Etype (Any_Integer, Standard_Long_Long_Integer);
1013 Init_Size (Any_Integer, Standard_Long_Long_Integer_Size);
1014 Set_Elem_Alignment (Any_Integer);
1016 Set_Integer_Bounds
1017 (Any_Integer,
1018 Typ => Base_Type (Standard_Integer),
1019 Lb => Uint_0,
1020 Hb => Intval (High_Bound (Scalar_Range (Standard_Integer))));
1021 Make_Name (Any_Integer, "an integer type");
1023 Any_Modular := New_Standard_Entity;
1024 Set_Ekind (Any_Modular, E_Modular_Integer_Type);
1025 Set_Scope (Any_Modular, Standard_Standard);
1026 Set_Etype (Any_Modular, Standard_Long_Long_Integer);
1027 Init_Size (Any_Modular, Standard_Long_Long_Integer_Size);
1028 Set_Elem_Alignment (Any_Modular);
1029 Set_Is_Unsigned_Type (Any_Modular);
1030 Make_Name (Any_Modular, "a modular type");
1032 Any_Numeric := New_Standard_Entity;
1033 Set_Ekind (Any_Numeric, E_Signed_Integer_Type);
1034 Set_Scope (Any_Numeric, Standard_Standard);
1035 Set_Etype (Any_Numeric, Standard_Long_Long_Integer);
1036 Init_Size (Any_Numeric, Standard_Long_Long_Integer_Size);
1037 Set_Elem_Alignment (Any_Numeric);
1038 Make_Name (Any_Numeric, "a numeric type");
1040 Any_Real := New_Standard_Entity;
1041 Set_Ekind (Any_Real, E_Floating_Point_Type);
1042 Set_Scope (Any_Real, Standard_Standard);
1043 Set_Etype (Any_Real, Standard_Long_Long_Float);
1044 Init_Size (Any_Real, Standard_Long_Long_Float_Size);
1045 Set_Elem_Alignment (Any_Real);
1046 Make_Name (Any_Real, "a real type");
1048 Any_Scalar := New_Standard_Entity;
1049 Set_Ekind (Any_Scalar, E_Signed_Integer_Type);
1050 Set_Scope (Any_Scalar, Standard_Standard);
1051 Set_Etype (Any_Scalar, Any_Scalar);
1052 Init_Size (Any_Scalar, Standard_Integer_Size);
1053 Set_Elem_Alignment (Any_Scalar);
1054 Make_Name (Any_Scalar, "a scalar type");
1056 Any_String := New_Standard_Entity;
1057 Set_Ekind (Any_String, E_String_Type);
1058 Set_Scope (Any_String, Standard_Standard);
1059 Set_Etype (Any_String, Any_String);
1060 Set_Component_Type (Any_String, Any_Character);
1061 Init_Size_Align (Any_String);
1062 Make_Name (Any_String, "a string type");
1064 declare
1065 Index : Node_Id;
1067 begin
1068 Index :=
1069 Make_Range (Stloc,
1070 Low_Bound => Make_Integer (Uint_0),
1071 High_Bound => Make_Integer (Uint_2 ** Standard_Integer_Size));
1072 Set_Etype (Index, Standard_Integer);
1073 Set_First_Index (Any_String, Index);
1074 end;
1076 Standard_Integer_8 := New_Standard_Entity;
1077 Decl := New_Node (N_Full_Type_Declaration, Stloc);
1078 Set_Defining_Identifier (Decl, Standard_Integer_8);
1079 Make_Name (Standard_Integer_8, "integer_8");
1080 Set_Scope (Standard_Integer_8, Standard_Standard);
1081 Build_Signed_Integer_Type (Standard_Integer_8, 8);
1083 Standard_Integer_16 := New_Standard_Entity;
1084 Decl := New_Node (N_Full_Type_Declaration, Stloc);
1085 Set_Defining_Identifier (Decl, Standard_Integer_16);
1086 Make_Name (Standard_Integer_16, "integer_16");
1087 Set_Scope (Standard_Integer_16, Standard_Standard);
1088 Build_Signed_Integer_Type (Standard_Integer_16, 16);
1090 Standard_Integer_32 := New_Standard_Entity;
1091 Decl := New_Node (N_Full_Type_Declaration, Stloc);
1092 Set_Defining_Identifier (Decl, Standard_Integer_32);
1093 Make_Name (Standard_Integer_32, "integer_32");
1094 Set_Scope (Standard_Integer_32, Standard_Standard);
1095 Build_Signed_Integer_Type (Standard_Integer_32, 32);
1097 Standard_Integer_64 := New_Standard_Entity;
1098 Decl := New_Node (N_Full_Type_Declaration, Stloc);
1099 Set_Defining_Identifier (Decl, Standard_Integer_64);
1100 Make_Name (Standard_Integer_64, "integer_64");
1101 Set_Scope (Standard_Integer_64, Standard_Standard);
1102 Build_Signed_Integer_Type (Standard_Integer_64, 64);
1104 Standard_Unsigned := New_Standard_Entity;
1105 Decl := New_Node (N_Full_Type_Declaration, Stloc);
1106 Set_Defining_Identifier (Decl, Standard_Unsigned);
1107 Make_Name (Standard_Unsigned, "unsigned");
1109 Set_Ekind (Standard_Unsigned, E_Modular_Integer_Type);
1110 Set_Scope (Standard_Unsigned, Standard_Standard);
1111 Set_Etype (Standard_Unsigned, Standard_Unsigned);
1112 Init_Size (Standard_Unsigned, Standard_Integer_Size);
1113 Set_Elem_Alignment (Standard_Unsigned);
1114 Set_Modulus (Standard_Unsigned,
1115 Uint_2 ** Standard_Integer_Size);
1116 Set_Is_Unsigned_Type (Standard_Unsigned);
1117 Set_Size_Known_At_Compile_Time
1118 (Standard_Unsigned);
1120 R_Node := New_Node (N_Range, Stloc);
1121 Set_Low_Bound (R_Node, Make_Integer (Uint_0));
1122 Set_High_Bound (R_Node, Make_Integer (Modulus (Standard_Unsigned) - 1));
1123 Set_Etype (Low_Bound (R_Node), Standard_Unsigned);
1124 Set_Etype (High_Bound (R_Node), Standard_Unsigned);
1125 Set_Scalar_Range (Standard_Unsigned, R_Node);
1127 -- Note: universal integer and universal real are constructed as fully
1128 -- formed signed numeric types, with parameters corresponding to the
1129 -- longest runtime types (Long_Long_Integer and Long_Long_Float). This
1130 -- allows Gigi to properly process references to universal types that
1131 -- are not folded at compile time.
1133 Universal_Integer := New_Standard_Entity;
1134 Decl := New_Node (N_Full_Type_Declaration, Stloc);
1135 Set_Defining_Identifier (Decl, Universal_Integer);
1136 Make_Name (Universal_Integer, "universal_integer");
1137 Set_Scope (Universal_Integer, Standard_Standard);
1138 Build_Signed_Integer_Type
1139 (Universal_Integer, Standard_Long_Long_Integer_Size);
1141 Universal_Real := New_Standard_Entity;
1142 Decl := New_Node (N_Full_Type_Declaration, Stloc);
1143 Set_Defining_Identifier (Decl, Universal_Real);
1144 Make_Name (Universal_Real, "universal_real");
1145 Set_Scope (Universal_Real, Standard_Standard);
1146 Build_Float_Type
1147 (Universal_Real,
1148 Standard_Long_Long_Float_Size,
1149 Standard_Long_Long_Float_Digits);
1151 -- Note: universal fixed, unlike universal integer and universal real,
1152 -- is never used at runtime, so it does not need to have bounds set.
1154 Universal_Fixed := New_Standard_Entity;
1155 Decl := New_Node (N_Full_Type_Declaration, Stloc);
1156 Set_Defining_Identifier (Decl, Universal_Fixed);
1157 Make_Name (Universal_Fixed, "universal_fixed");
1158 Set_Ekind (Universal_Fixed, E_Ordinary_Fixed_Point_Type);
1159 Set_Etype (Universal_Fixed, Universal_Fixed);
1160 Set_Scope (Universal_Fixed, Standard_Standard);
1161 Init_Size (Universal_Fixed, Standard_Long_Long_Integer_Size);
1162 Set_Elem_Alignment (Universal_Fixed);
1163 Set_Size_Known_At_Compile_Time
1164 (Universal_Fixed);
1166 -- Create type declaration for Duration, using a 64-bit size. The
1167 -- delta and size values depend on the mode set in system.ads.
1169 Build_Duration : declare
1170 Dlo : Uint;
1171 Dhi : Uint;
1172 Delta_Val : Ureal;
1174 begin
1175 -- In 32 bit mode, the size is 32 bits, and the delta and
1176 -- small values are set to 20 milliseconds (20.0**(10.0**(-3)).
1178 if Duration_32_Bits_On_Target then
1179 Dlo := Intval (Type_Low_Bound (Standard_Integer_32));
1180 Dhi := Intval (Type_High_Bound (Standard_Integer_32));
1181 Delta_Val := UR_From_Components (UI_From_Int (20), Uint_3, 10);
1183 -- In standard 64-bit mode, the size is 64-bits and the delta and
1184 -- small values are set to nanoseconds (1.0**(10.0**(-9))
1186 else
1187 Dlo := Intval (Type_Low_Bound (Standard_Integer_64));
1188 Dhi := Intval (Type_High_Bound (Standard_Integer_64));
1189 Delta_Val := UR_From_Components (Uint_1, Uint_9, 10);
1190 end if;
1192 Tdef_Node := Make_Ordinary_Fixed_Point_Definition (Stloc,
1193 Delta_Expression => Make_Real_Literal (Stloc, Delta_Val),
1194 Real_Range_Specification =>
1195 Make_Real_Range_Specification (Stloc,
1196 Low_Bound => Make_Real_Literal (Stloc,
1197 Realval => Dlo * Delta_Val),
1198 High_Bound => Make_Real_Literal (Stloc,
1199 Realval => Dhi * Delta_Val)));
1201 Set_Type_Definition (Parent (Standard_Duration), Tdef_Node);
1203 Set_Ekind (Standard_Duration, E_Ordinary_Fixed_Point_Type);
1204 Set_Etype (Standard_Duration, Standard_Duration);
1206 if Duration_32_Bits_On_Target then
1207 Init_Size (Standard_Duration, 32);
1208 else
1209 Init_Size (Standard_Duration, 64);
1210 end if;
1212 Set_Elem_Alignment (Standard_Duration);
1213 Set_Delta_Value (Standard_Duration, Delta_Val);
1214 Set_Small_Value (Standard_Duration, Delta_Val);
1215 Set_Scalar_Range (Standard_Duration,
1216 Real_Range_Specification
1217 (Type_Definition (Parent (Standard_Duration))));
1219 -- Normally it does not matter that nodes in package Standard are
1220 -- not marked as analyzed. The Scalar_Range of the fixed-point
1221 -- type Standard_Duration is an exception, because of the special
1222 -- test made in Freeze.Freeze_Fixed_Point_Type.
1224 Set_Analyzed (Scalar_Range (Standard_Duration));
1226 Set_Etype (Type_High_Bound (Standard_Duration), Standard_Duration);
1227 Set_Etype (Type_Low_Bound (Standard_Duration), Standard_Duration);
1229 Set_Is_Static_Expression (Type_High_Bound (Standard_Duration));
1230 Set_Is_Static_Expression (Type_Low_Bound (Standard_Duration));
1232 Set_Corresponding_Integer_Value
1233 (Type_High_Bound (Standard_Duration), Dhi);
1235 Set_Corresponding_Integer_Value
1236 (Type_Low_Bound (Standard_Duration), Dlo);
1238 Set_Size_Known_At_Compile_Time (Standard_Duration);
1239 end Build_Duration;
1241 -- Build standard exception type. Note that the type name here is
1242 -- actually used in the generated code, so it must be set correctly
1244 -- ??? Also note that the Import_Code component is now declared
1245 -- as a System.Standard_Library.Exception_Code to enforce run-time
1246 -- library implementation consistency. It's too early here to resort
1247 -- to rtsfind to get the proper node for that type, so we use the
1248 -- closest possible available type node at hand instead. We should
1249 -- probably be fixing this up at some point.
1251 Standard_Exception_Type := New_Standard_Entity;
1252 Set_Ekind (Standard_Exception_Type, E_Record_Type);
1253 Set_Etype (Standard_Exception_Type, Standard_Exception_Type);
1254 Set_Scope (Standard_Exception_Type, Standard_Standard);
1255 Set_Stored_Constraint
1256 (Standard_Exception_Type, No_Elist);
1257 Init_Size_Align (Standard_Exception_Type);
1258 Set_Size_Known_At_Compile_Time
1259 (Standard_Exception_Type, True);
1260 Make_Name (Standard_Exception_Type, "exception");
1262 Make_Component
1263 (Standard_Exception_Type, Standard_Boolean, "Not_Handled_By_Others");
1264 Make_Component
1265 (Standard_Exception_Type, Standard_Character, "Lang");
1266 Make_Component
1267 (Standard_Exception_Type, Standard_Natural, "Name_Length");
1268 Make_Component
1269 (Standard_Exception_Type, Standard_A_Char, "Full_Name");
1270 Make_Component
1271 (Standard_Exception_Type, Standard_A_Char, "HTable_Ptr");
1272 Make_Component
1273 (Standard_Exception_Type, Standard_Unsigned, "Import_Code");
1274 Make_Component
1275 (Standard_Exception_Type, Standard_A_Char, "Raise_Hook");
1277 -- Build tree for record declaration, for use by the back-end
1279 declare
1280 Comp_List : List_Id;
1281 Comp : Entity_Id;
1283 begin
1284 Comp := First_Entity (Standard_Exception_Type);
1285 Comp_List := New_List;
1287 while Present (Comp) loop
1288 Append (
1289 Make_Component_Declaration (Stloc,
1290 Defining_Identifier => Comp,
1291 Component_Definition =>
1292 Make_Component_Definition (Stloc,
1293 Aliased_Present => False,
1294 Subtype_Indication => New_Occurrence_Of (Etype (Comp),
1295 Stloc))),
1296 Comp_List);
1298 Next_Entity (Comp);
1299 end loop;
1301 Decl := Make_Full_Type_Declaration (Stloc,
1302 Defining_Identifier => Standard_Exception_Type,
1303 Type_Definition =>
1304 Make_Record_Definition (Stloc,
1305 End_Label => Empty,
1306 Component_List =>
1307 Make_Component_List (Stloc,
1308 Component_Items => Comp_List)));
1309 end;
1311 Append (Decl, Decl_S);
1313 Layout_Type (Standard_Exception_Type);
1315 -- Create declarations of standard exceptions
1317 Build_Exception (S_Constraint_Error);
1318 Build_Exception (S_Program_Error);
1319 Build_Exception (S_Storage_Error);
1320 Build_Exception (S_Tasking_Error);
1322 -- Numeric_Error is a normal exception in Ada 83, but in Ada 95
1323 -- it is a renaming of Constraint_Error. Is this test too early???
1325 if Ada_Version = Ada_83 then
1326 Build_Exception (S_Numeric_Error);
1328 else
1329 Decl := New_Node (N_Exception_Renaming_Declaration, Stloc);
1330 E_Id := Standard_Entity (S_Numeric_Error);
1332 Set_Ekind (E_Id, E_Exception);
1333 Set_Exception_Code (E_Id, Uint_0);
1334 Set_Etype (E_Id, Standard_Exception_Type);
1335 Set_Is_Public (E_Id);
1336 Set_Renamed_Entity (E_Id, Standard_Entity (S_Constraint_Error));
1338 Set_Defining_Identifier (Decl, E_Id);
1339 Append (Decl, Decl_S);
1341 Ident_Node := New_Node (N_Identifier, Stloc);
1342 Set_Chars (Ident_Node, Chars (Standard_Entity (S_Constraint_Error)));
1343 Set_Entity (Ident_Node, Standard_Entity (S_Constraint_Error));
1344 Set_Name (Decl, Ident_Node);
1345 end if;
1347 -- Abort_Signal is an entity that does not get made visible
1349 Abort_Signal := New_Standard_Entity;
1350 Set_Chars (Abort_Signal, Name_uAbort_Signal);
1351 Set_Ekind (Abort_Signal, E_Exception);
1352 Set_Exception_Code (Abort_Signal, Uint_0);
1353 Set_Etype (Abort_Signal, Standard_Exception_Type);
1354 Set_Scope (Abort_Signal, Standard_Standard);
1355 Set_Is_Public (Abort_Signal, True);
1356 Decl :=
1357 Make_Exception_Declaration (Stloc,
1358 Defining_Identifier => Abort_Signal);
1360 -- Create defining identifiers for shift operator entities. Note
1361 -- that these entities are used only for marking shift operators
1362 -- generated internally, and hence need no structure, just a name
1363 -- and a unique identity.
1365 Standard_Op_Rotate_Left := New_Standard_Entity;
1366 Set_Chars (Standard_Op_Rotate_Left, Name_Rotate_Left);
1367 Set_Ekind (Standard_Op_Rotate_Left, E_Operator);
1369 Standard_Op_Rotate_Right := New_Standard_Entity;
1370 Set_Chars (Standard_Op_Rotate_Right, Name_Rotate_Right);
1371 Set_Ekind (Standard_Op_Rotate_Right, E_Operator);
1373 Standard_Op_Shift_Left := New_Standard_Entity;
1374 Set_Chars (Standard_Op_Shift_Left, Name_Shift_Left);
1375 Set_Ekind (Standard_Op_Shift_Left, E_Operator);
1377 Standard_Op_Shift_Right := New_Standard_Entity;
1378 Set_Chars (Standard_Op_Shift_Right, Name_Shift_Right);
1379 Set_Ekind (Standard_Op_Shift_Right, E_Operator);
1381 Standard_Op_Shift_Right_Arithmetic := New_Standard_Entity;
1382 Set_Chars (Standard_Op_Shift_Right_Arithmetic,
1383 Name_Shift_Right_Arithmetic);
1384 Set_Ekind (Standard_Op_Shift_Right_Arithmetic,
1385 E_Operator);
1387 -- Create standard operator declarations
1389 Create_Operators;
1391 -- Initialize visibility table with entities in Standard
1393 for E in Standard_Entity_Type loop
1394 if Ekind (Standard_Entity (E)) /= E_Operator then
1395 Set_Name_Entity_Id
1396 (Chars (Standard_Entity (E)), Standard_Entity (E));
1397 Set_Homonym (Standard_Entity (E), Empty);
1398 end if;
1400 if E not in S_ASCII_Names then
1401 Set_Scope (Standard_Entity (E), Standard_Standard);
1402 Set_Is_Immediately_Visible (Standard_Entity (E));
1403 end if;
1404 end loop;
1406 -- The predefined package Standard itself does not have a scope;
1407 -- it is the only entity in the system not to have one, and this
1408 -- is what identifies the package to Gigi.
1410 Set_Scope (Standard_Standard, Empty);
1412 -- Set global variables indicating last Id values and version
1414 Last_Standard_Node_Id := Last_Node_Id;
1415 Last_Standard_List_Id := Last_List_Id;
1417 -- The Error node has an Etype of Any_Type to help error recovery
1419 Set_Etype (Error, Any_Type);
1421 -- Print representation of standard if switch set
1423 if Opt.Print_Standard then
1424 Print_Standard;
1425 end if;
1426 end Create_Standard;
1428 ------------------------------------
1429 -- Create_Unconstrained_Base_Type --
1430 ------------------------------------
1432 procedure Create_Unconstrained_Base_Type
1433 (E : Entity_Id;
1434 K : Entity_Kind)
1436 New_Ent : constant Entity_Id := New_Copy (E);
1438 begin
1439 Set_Ekind (E, K);
1440 Set_Is_Constrained (E, True);
1441 Set_Is_First_Subtype (E, True);
1442 Set_Etype (E, New_Ent);
1444 Append_Entity (New_Ent, Standard_Standard);
1445 Set_Is_Constrained (New_Ent, False);
1446 Set_Etype (New_Ent, New_Ent);
1447 Set_Is_Known_Valid (New_Ent, True);
1449 if K = E_Signed_Integer_Subtype then
1450 Set_Etype (Low_Bound (Scalar_Range (E)), New_Ent);
1451 Set_Etype (High_Bound (Scalar_Range (E)), New_Ent);
1452 end if;
1454 end Create_Unconstrained_Base_Type;
1456 --------------------
1457 -- Identifier_For --
1458 --------------------
1460 function Identifier_For (S : Standard_Entity_Type) return Node_Id is
1461 Ident_Node : Node_Id;
1463 begin
1464 Ident_Node := New_Node (N_Identifier, Stloc);
1465 Set_Chars (Ident_Node, Chars (Standard_Entity (S)));
1466 return Ident_Node;
1467 end Identifier_For;
1469 --------------------
1470 -- Make_Component --
1471 --------------------
1473 procedure Make_Component
1474 (Rec : Entity_Id;
1475 Typ : Entity_Id;
1476 Nam : String)
1478 Id : constant Entity_Id := New_Standard_Entity;
1480 begin
1481 Set_Ekind (Id, E_Component);
1482 Set_Etype (Id, Typ);
1483 Set_Scope (Id, Rec);
1484 Init_Component_Location (Id);
1486 Set_Original_Record_Component (Id, Id);
1487 Make_Name (Id, Nam);
1488 Append_Entity (Id, Rec);
1489 end Make_Component;
1491 -----------------
1492 -- Make_Formal --
1493 -----------------
1495 function Make_Formal
1496 (Typ : Entity_Id;
1497 Formal_Name : String) return Entity_Id
1499 Formal : Entity_Id;
1501 begin
1502 Formal := New_Standard_Entity;
1504 Set_Ekind (Formal, E_In_Parameter);
1505 Set_Mechanism (Formal, Default_Mechanism);
1506 Set_Scope (Formal, Standard_Standard);
1507 Set_Etype (Formal, Typ);
1508 Make_Name (Formal, Formal_Name);
1510 return Formal;
1511 end Make_Formal;
1513 ------------------
1514 -- Make_Integer --
1515 ------------------
1517 function Make_Integer (V : Uint) return Node_Id is
1518 N : constant Node_Id := Make_Integer_Literal (Stloc, V);
1519 begin
1520 Set_Is_Static_Expression (N);
1521 return N;
1522 end Make_Integer;
1524 ---------------
1525 -- Make_Name --
1526 ---------------
1528 procedure Make_Name (Id : Entity_Id; Nam : String) is
1529 begin
1530 for J in 1 .. Nam'Length loop
1531 Name_Buffer (J) := Fold_Lower (Nam (Nam'First + (J - 1)));
1532 end loop;
1534 Name_Len := Nam'Length;
1535 Set_Chars (Id, Name_Find);
1536 end Make_Name;
1538 ------------------
1539 -- New_Operator --
1540 ------------------
1542 function New_Operator (Op : Name_Id; Typ : Entity_Id) return Entity_Id is
1543 Ident_Node : Entity_Id;
1545 begin
1546 Ident_Node := Make_Defining_Identifier (Stloc, Op);
1548 Set_Is_Pure (Ident_Node, True);
1549 Set_Ekind (Ident_Node, E_Operator);
1550 Set_Etype (Ident_Node, Typ);
1551 Set_Scope (Ident_Node, Standard_Standard);
1552 Set_Homonym (Ident_Node, Get_Name_Entity_Id (Op));
1553 Set_Convention (Ident_Node, Convention_Intrinsic);
1555 Set_Is_Immediately_Visible (Ident_Node, True);
1556 Set_Is_Intrinsic_Subprogram (Ident_Node, True);
1558 Set_Name_Entity_Id (Op, Ident_Node);
1559 Append_Entity (Ident_Node, Standard_Standard);
1560 return Ident_Node;
1561 end New_Operator;
1563 -------------------------
1564 -- New_Standard_Entity --
1565 -------------------------
1567 function New_Standard_Entity
1568 (New_Node_Kind : Node_Kind := N_Defining_Identifier) return Entity_Id
1570 E : constant Entity_Id := New_Entity (New_Node_Kind, Stloc);
1572 begin
1573 -- All standard entities are Pure and Public
1575 Set_Is_Pure (E);
1576 Set_Is_Public (E);
1578 -- All standard entity names are analyzed manually, and are thus
1579 -- frozen as soon as they are created.
1581 Set_Is_Frozen (E);
1583 -- Set debug information required for all standard types
1585 Set_Needs_Debug_Info (E);
1587 -- All standard entities are built with fully qualified names, so
1588 -- set the flag to prevent an abortive attempt at requalification!
1590 Set_Has_Qualified_Name (E);
1592 -- Return newly created entity to be completed by caller
1594 return E;
1595 end New_Standard_Entity;
1597 --------------------
1598 -- Print_Standard --
1599 --------------------
1601 procedure Print_Standard is
1603 procedure P (Item : String) renames Output.Write_Line;
1604 -- Short-hand, since we do a lot of line writes here!
1606 procedure P_Int_Range (Size : Pos);
1607 -- Prints the range of an integer based on its Size
1609 procedure P_Float_Range (Id : Entity_Id);
1610 -- Prints the bounds range for the given float type entity
1612 -------------------
1613 -- P_Float_Range --
1614 -------------------
1616 procedure P_Float_Range (Id : Entity_Id) is
1617 Digs : constant Nat := UI_To_Int (Digits_Value (Id));
1619 begin
1620 Write_Str (" range ");
1622 if Vax_Float (Id) then
1623 if Digs = VAXFF_Digits then
1624 Write_Str (VAXFF_First'Universal_Literal_String);
1625 Write_Str (" .. ");
1626 Write_Str (VAXFF_Last'Universal_Literal_String);
1628 elsif Digs = VAXDF_Digits then
1629 Write_Str (VAXDF_First'Universal_Literal_String);
1630 Write_Str (" .. ");
1631 Write_Str (VAXDF_Last'Universal_Literal_String);
1633 else
1634 pragma Assert (Digs = VAXGF_Digits);
1636 Write_Str (VAXGF_First'Universal_Literal_String);
1637 Write_Str (" .. ");
1638 Write_Str (VAXGF_Last'Universal_Literal_String);
1639 end if;
1641 elsif Is_AAMP_Float (Id) then
1642 if Digs = AAMPS_Digits then
1643 Write_Str (AAMPS_First'Universal_Literal_String);
1644 Write_Str (" .. ");
1645 Write_Str (AAMPS_Last'Universal_Literal_String);
1647 else
1648 pragma Assert (Digs = AAMPL_Digits);
1649 Write_Str (AAMPL_First'Universal_Literal_String);
1650 Write_Str (" .. ");
1651 Write_Str (AAMPL_Last'Universal_Literal_String);
1652 end if;
1654 elsif Digs = IEEES_Digits then
1655 Write_Str (IEEES_First'Universal_Literal_String);
1656 Write_Str (" .. ");
1657 Write_Str (IEEES_Last'Universal_Literal_String);
1659 elsif Digs = IEEEL_Digits then
1660 Write_Str (IEEEL_First'Universal_Literal_String);
1661 Write_Str (" .. ");
1662 Write_Str (IEEEL_Last'Universal_Literal_String);
1664 else
1665 pragma Assert (Digs = IEEEX_Digits);
1667 Write_Str (IEEEX_First'Universal_Literal_String);
1668 Write_Str (" .. ");
1669 Write_Str (IEEEX_Last'Universal_Literal_String);
1670 end if;
1672 Write_Str (";");
1673 Write_Eol;
1674 end P_Float_Range;
1676 -----------------
1677 -- P_Int_Range --
1678 -----------------
1680 procedure P_Int_Range (Size : Pos) is
1681 begin
1682 Write_Str (" is range -(2 **");
1683 Write_Int (Size - 1);
1684 Write_Str (")");
1685 Write_Str (" .. +(2 **");
1686 Write_Int (Size - 1);
1687 Write_Str (" - 1);");
1688 Write_Eol;
1689 end P_Int_Range;
1691 -- Start of processing for Print_Standard
1693 begin
1694 P ("-- Representation of package Standard");
1695 Write_Eol;
1696 P ("-- This is not accurate Ada, since new base types cannot be ");
1697 P ("-- created, but the listing shows the target dependent");
1698 P ("-- characteristics of the Standard types for this compiler");
1699 Write_Eol;
1701 P ("package Standard is");
1702 P ("pragma Pure(Standard);");
1703 Write_Eol;
1705 P (" type Boolean is (False, True);");
1706 P (" for Boolean'Size use 1;");
1707 P (" for Boolean use (False => 0, True => 1);");
1708 Write_Eol;
1710 -- Integer types
1712 Write_Str (" type Integer");
1713 P_Int_Range (Standard_Integer_Size);
1714 Write_Str (" for Integer'Size use ");
1715 Write_Int (Standard_Integer_Size);
1716 P (";");
1717 Write_Eol;
1719 P (" subtype Natural is Integer range 0 .. Integer'Last;");
1720 P (" subtype Positive is Integer range 1 .. Integer'Last;");
1721 Write_Eol;
1723 Write_Str (" type Short_Short_Integer");
1724 P_Int_Range (Standard_Short_Short_Integer_Size);
1725 Write_Str (" for Short_Short_Integer'Size use ");
1726 Write_Int (Standard_Short_Short_Integer_Size);
1727 P (";");
1728 Write_Eol;
1730 Write_Str (" type Short_Integer");
1731 P_Int_Range (Standard_Short_Integer_Size);
1732 Write_Str (" for Short_Integer'Size use ");
1733 Write_Int (Standard_Short_Integer_Size);
1734 P (";");
1735 Write_Eol;
1737 Write_Str (" type Long_Integer");
1738 P_Int_Range (Standard_Long_Integer_Size);
1739 Write_Str (" for Long_Integer'Size use ");
1740 Write_Int (Standard_Long_Integer_Size);
1741 P (";");
1742 Write_Eol;
1744 Write_Str (" type Long_Long_Integer");
1745 P_Int_Range (Standard_Long_Long_Integer_Size);
1746 Write_Str (" for Long_Long_Integer'Size use ");
1747 Write_Int (Standard_Long_Long_Integer_Size);
1748 P (";");
1749 Write_Eol;
1751 -- Floating point types
1753 Write_Str (" type Short_Float is digits ");
1754 Write_Int (Standard_Short_Float_Digits);
1755 Write_Eol;
1756 P_Float_Range (Standard_Short_Float);
1757 Write_Str (" for Short_Float'Size use ");
1758 Write_Int (Standard_Short_Float_Size);
1759 P (";");
1760 Write_Eol;
1762 Write_Str (" type Float is digits ");
1763 Write_Int (Standard_Float_Digits);
1764 Write_Eol;
1765 P_Float_Range (Standard_Float);
1766 Write_Str (" for Float'Size use ");
1767 Write_Int (Standard_Float_Size);
1768 P (";");
1769 Write_Eol;
1771 Write_Str (" type Long_Float is digits ");
1772 Write_Int (Standard_Long_Float_Digits);
1773 Write_Eol;
1774 P_Float_Range (Standard_Long_Float);
1775 Write_Str (" for Long_Float'Size use ");
1776 Write_Int (Standard_Long_Float_Size);
1777 P (";");
1778 Write_Eol;
1780 Write_Str (" type Long_Long_Float is digits ");
1781 Write_Int (Standard_Long_Long_Float_Digits);
1782 Write_Eol;
1783 P_Float_Range (Standard_Long_Long_Float);
1784 Write_Str (" for Long_Long_Float'Size use ");
1785 Write_Int (Standard_Long_Long_Float_Size);
1786 P (";");
1787 Write_Eol;
1789 P (" type Character is (...)");
1790 Write_Str (" for Character'Size use ");
1791 Write_Int (Standard_Character_Size);
1792 P (";");
1793 P (" -- See RM A.1(35) for details of this type");
1794 Write_Eol;
1796 P (" type Wide_Character is (...)");
1797 Write_Str (" for Wide_Character'Size use ");
1798 Write_Int (Standard_Wide_Character_Size);
1799 P (";");
1800 P (" -- See RM A.1(36) for details of this type");
1801 Write_Eol;
1803 P (" type Wide_Wide_Character is (...)");
1804 Write_Str (" for Wide_Character'Size use ");
1805 Write_Int (Standard_Wide_Wide_Character_Size);
1806 P (";");
1807 P (" -- See RM A.1(36) for details of this type");
1809 P (" type String is array (Positive range <>) of Character;");
1810 P (" pragma Pack (String);");
1811 Write_Eol;
1813 P (" type Wide_String is array (Positive range <>)" &
1814 " of Wide_Character;");
1815 P (" pragma Pack (Wide_String);");
1816 Write_Eol;
1818 P (" type Wide_Wide_String is array (Positive range <>)" &
1819 " of Wide_Wide_Character;");
1820 P (" pragma Pack (Wide_Wide_String);");
1821 Write_Eol;
1823 -- Here it's OK to use the Duration type of the host compiler since
1824 -- the implementation of Duration in GNAT is target independent.
1826 if Duration_32_Bits_On_Target then
1827 P (" type Duration is delta 0.020");
1828 P (" range -((2 ** 31 - 1) * 0.020) ..");
1829 P (" +((2 ** 31 - 1) * 0.020);");
1830 P (" for Duration'Small use 0.020;");
1831 else
1832 P (" type Duration is delta 0.000000001");
1833 P (" range -((2 ** 63 - 1) * 0.000000001) ..");
1834 P (" +((2 ** 63 - 1) * 0.000000001);");
1835 P (" for Duration'Small use 0.000000001;");
1836 end if;
1838 Write_Eol;
1840 P (" Constraint_Error : exception;");
1841 P (" Program_Error : exception;");
1842 P (" Storage_Error : exception;");
1843 P (" Tasking_Error : exception;");
1844 P (" Numeric_Error : exception renames Constraint_Error;");
1845 Write_Eol;
1847 P ("end Standard;");
1848 end Print_Standard;
1850 ----------------------
1851 -- Set_Float_Bounds --
1852 ----------------------
1854 procedure Set_Float_Bounds (Id : Entity_Id) is
1855 L : Node_Id;
1856 -- Low bound of literal value
1858 H : Node_Id;
1859 -- High bound of literal value
1861 R : Node_Id;
1862 -- Range specification
1864 Digs : constant Nat := UI_To_Int (Digits_Value (Id));
1865 -- Digits value, used to select bounds
1867 begin
1868 -- Note: for the call from Cstand to initially create the types in
1869 -- Standard, Vax_Float will always be False. Circuitry in Sem_Vfpt
1870 -- will adjust these types appropriately in the Vax_Float case if
1871 -- a pragma Float_Representation (VAX_Float) is used.
1873 if Vax_Float (Id) then
1874 if Digs = VAXFF_Digits then
1875 L := Real_Convert
1876 (VAXFF_First'Universal_Literal_String);
1877 H := Real_Convert
1878 (VAXFF_Last'Universal_Literal_String);
1880 elsif Digs = VAXDF_Digits then
1881 L := Real_Convert
1882 (VAXDF_First'Universal_Literal_String);
1883 H := Real_Convert
1884 (VAXDF_Last'Universal_Literal_String);
1886 else
1887 pragma Assert (Digs = VAXGF_Digits);
1889 L := Real_Convert
1890 (VAXGF_First'Universal_Literal_String);
1891 H := Real_Convert
1892 (VAXGF_Last'Universal_Literal_String);
1893 end if;
1895 elsif Is_AAMP_Float (Id) then
1896 if Digs = AAMPS_Digits then
1897 L := Real_Convert
1898 (AAMPS_First'Universal_Literal_String);
1899 H := Real_Convert
1900 (AAMPS_Last'Universal_Literal_String);
1902 else
1903 pragma Assert (Digs = AAMPL_Digits);
1904 L := Real_Convert
1905 (AAMPL_First'Universal_Literal_String);
1906 H := Real_Convert
1907 (AAMPL_Last'Universal_Literal_String);
1908 end if;
1910 elsif Digs = IEEES_Digits then
1911 L := Real_Convert
1912 (IEEES_First'Universal_Literal_String);
1913 H := Real_Convert
1914 (IEEES_Last'Universal_Literal_String);
1916 elsif Digs = IEEEL_Digits then
1917 L := Real_Convert
1918 (IEEEL_First'Universal_Literal_String);
1919 H := Real_Convert
1920 (IEEEL_Last'Universal_Literal_String);
1922 else
1923 pragma Assert (Digs = IEEEX_Digits);
1925 L := Real_Convert
1926 (IEEEX_First'Universal_Literal_String);
1927 H := Real_Convert
1928 (IEEEX_Last'Universal_Literal_String);
1929 end if;
1931 Set_Etype (L, Id);
1932 Set_Is_Static_Expression (L);
1934 Set_Etype (H, Id);
1935 Set_Is_Static_Expression (H);
1937 R := New_Node (N_Range, Stloc);
1938 Set_Low_Bound (R, L);
1939 Set_High_Bound (R, H);
1940 Set_Includes_Infinities (R, True);
1941 Set_Scalar_Range (Id, R);
1942 Set_Etype (R, Id);
1943 Set_Parent (R, Id);
1944 end Set_Float_Bounds;
1946 ------------------------
1947 -- Set_Integer_Bounds --
1948 ------------------------
1950 procedure Set_Integer_Bounds
1951 (Id : Entity_Id;
1952 Typ : Entity_Id;
1953 Lb : Uint;
1954 Hb : Uint)
1956 L : Node_Id; -- Low bound of literal value
1957 H : Node_Id; -- High bound of literal value
1958 R : Node_Id; -- Range specification
1960 begin
1961 L := Make_Integer (Lb);
1962 H := Make_Integer (Hb);
1964 Set_Etype (L, Typ);
1965 Set_Etype (H, Typ);
1967 R := New_Node (N_Range, Stloc);
1968 Set_Low_Bound (R, L);
1969 Set_High_Bound (R, H);
1970 Set_Scalar_Range (Id, R);
1971 Set_Etype (R, Typ);
1972 Set_Parent (R, Id);
1973 Set_Is_Unsigned_Type (Id, Lb >= 0);
1974 end Set_Integer_Bounds;
1976 end CStand;