OSDN Git Service

2007-08-14 Robert Dewar <dewar@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / cstand.adb
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-2007, 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 ------------------------------------------------------------------------------
26
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;
49
50 package body CStand is
51
52    Stloc  : constant Source_Ptr := Standard_Location;
53    Staloc : constant Source_Ptr := Standard_ASCII_Location;
54    --  Standard abbreviations used throughout this package
55
56    -----------------------
57    -- Local Subprograms --
58    -----------------------
59
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.
64
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.
70
71    procedure Create_Operators;
72    --  Make entries for each of the predefined operators in Standard
73
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.
86    --
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.
93
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
97
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.
104
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
109
110    function Make_Integer (V : Uint) return Node_Id;
111    --  Builds integer literal with given value
112
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
115
116    function New_Operator (Op : Name_Id; Typ : Entity_Id) return Entity_Id;
117    --  Build entity for standard operator with given name and type
118
119    function New_Standard_Entity
120      (New_Node_Kind : Node_Kind := N_Defining_Identifier) return Entity_Id;
121    --  Builds a new entity for Standard
122
123    procedure Print_Standard;
124    --  Print representation of package Standard if switch set
125
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.
135
136    ----------------------
137    -- Build_Float_Type --
138    ----------------------
139
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;
155
156    -------------------------------
157    -- Build_Signed_Integer_Type --
158    -------------------------------
159
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;
164
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)));
170
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;
181
182    ----------------------
183    -- Create_Operators --
184    ----------------------
185
186    --  Each operator has an abbreviated signature. The formals have the names
187    --  LEFT and RIGHT. Their types are not actually used for resolution.
188
189    procedure Create_Operators is
190       Op_Node : Entity_Id;
191
192       --  The following tables define the binary and unary operators and their
193       --  corresponding result type.
194
195       Binary_Ops : constant array (S_Binary_Ops) of Name_Id :=
196
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.
200
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);
220
221       Bin_Op_Types : constant array (S_Binary_Ops) of Entity_Id :=
222
223          --  This table has the corresponding result types. The entries are
224          --  ordered so they correspond to the Binary_Ops array above.
225
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
245
246       Unary_Ops : constant array (S_Unary_Ops) of Name_Id :=
247
248          --  There is one entry here for each unary operator
249
250         (Name_Op_Abs,
251          Name_Op_Subtract,
252          Name_Op_Not,
253          Name_Op_Add);
254
255       Unary_Op_Types : constant array (S_Unary_Ops) of Entity_Id :=
256
257          --  This table has the corresponding result types. The entries are
258          --  ordered so they correspond to the Unary_Ops array above.
259
260         (Universal_Integer,     -- Abs
261          Universal_Integer,     -- Subtract
262          Standard_Boolean,      -- Not
263          Universal_Integer);    -- Add
264
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;
272
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;
278
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.
283
284       Set_Etype (First_Entity (Standard_Op_Concat),  Standard_String);
285       Set_Etype (Last_Entity  (Standard_Op_Concat),  Standard_String);
286
287       Set_Etype (First_Entity (Standard_Op_Concatw), Standard_Wide_String);
288       Set_Etype (Last_Entity  (Standard_Op_Concatw), Standard_Wide_String);
289
290       Set_Etype (First_Entity (Standard_Op_Concatww),
291                   Standard_Wide_Wide_String);
292
293       Set_Etype (Last_Entity (Standard_Op_Concatww),
294                    Standard_Wide_Wide_String);
295
296    end Create_Operators;
297
298    ---------------------
299    -- Create_Standard --
300    ---------------------
301
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.
308
309    procedure Create_Standard is
310       Decl_S : constant List_Id := New_List;
311       --  List of declarations in Standard
312
313       Decl_A : constant List_Id := New_List;
314       --  List of declarations in ASCII
315
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;
324
325       procedure Build_Exception (S : Standard_Entity_Type);
326       --  Procedure to declare given entity as an exception
327
328       ---------------------
329       -- Build_Exception --
330       ---------------------
331
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);
338
339          Decl :=
340            Make_Exception_Declaration (Stloc,
341              Defining_Identifier => Standard_Entity (S));
342          Append (Decl, Decl_S);
343       end Build_Exception;
344
345    --  Start of processing for Create_Standard
346
347    begin
348       --  Initialize scanner for internal scans of literals
349
350       Scn.Initialize_Scanner (No_Unit, Internal_Source_File);
351
352       --  First step is to create defining identifiers for each entity
353
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)
358
359             Ident_Node : Node_Id;
360             --  Defining identifier node
361
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;
368
369       --  Create package declaration node for package Standard
370
371       Standard_Package_Node := New_Node (N_Package_Declaration, Stloc);
372
373       Pspec := New_Node (N_Package_Specification, Stloc);
374       Set_Specification (Standard_Package_Node, Pspec);
375
376       Set_Defining_Unit_Name (Pspec, Standard_Standard);
377       Set_Visible_Declarations (Pspec, Decl_S);
378
379       Set_Ekind (Standard_Standard, E_Package);
380       Set_Is_Pure (Standard_Standard);
381       Set_Is_Compilation_Unit (Standard_Standard);
382
383       --  Create type declaration nodes for standard types
384
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;
392
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.
395
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.
399
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);
405
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);
412
413       Set_Is_Unsigned_Type           (Standard_Boolean);
414       Set_Size_Known_At_Compile_Time (Standard_Boolean);
415
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);
421
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);
427
428       --  For the bounds of Boolean, we create a range node corresponding to
429
430       --    range False .. True
431
432       --  where the occurrences of the literals must point to the
433       --  corresponding definition.
434
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);
442
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);
449
450       Set_Scalar_Range (Standard_Boolean, R_Node);
451       Set_Etype (R_Node, Standard_Boolean);
452       Set_Parent (R_Node, Standard_Boolean);
453
454       --  Record entity identifiers for boolean literals in the
455       --  Boolean_Literals array, for easy reference during expansion.
456
457       Boolean_Literals := (False => Standard_False, True => Standard_True);
458
459       --  Create type definition nodes for predefined integer types
460
461       Build_Signed_Integer_Type
462         (Standard_Short_Short_Integer, Standard_Short_Short_Integer_Size);
463
464       Build_Signed_Integer_Type
465         (Standard_Short_Integer, Standard_Short_Integer_Size);
466
467       Build_Signed_Integer_Type
468         (Standard_Integer, Standard_Integer_Size);
469
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;
478
479          Build_Signed_Integer_Type (Standard_Long_Integer, LIS);
480       end;
481
482       Build_Signed_Integer_Type
483         (Standard_Long_Long_Integer, Standard_Long_Long_Integer_Size);
484
485       Create_Unconstrained_Base_Type
486         (Standard_Short_Short_Integer, E_Signed_Integer_Subtype);
487
488       Create_Unconstrained_Base_Type
489         (Standard_Short_Integer, E_Signed_Integer_Subtype);
490
491       Create_Unconstrained_Base_Type
492         (Standard_Integer, E_Signed_Integer_Subtype);
493
494       Create_Unconstrained_Base_Type
495         (Standard_Long_Integer, E_Signed_Integer_Subtype);
496
497       Create_Unconstrained_Base_Type
498         (Standard_Long_Long_Integer, E_Signed_Integer_Subtype);
499
500       --  Create type definition nodes for predefined float types
501
502       Build_Float_Type
503         (Standard_Short_Float,
504          Standard_Short_Float_Size,
505          Standard_Short_Float_Digits);
506
507       Build_Float_Type
508         (Standard_Float,
509          Standard_Float_Size,
510          Standard_Float_Digits);
511
512       Build_Float_Type
513         (Standard_Long_Float,
514          Standard_Long_Float_Size,
515          Standard_Long_Float_Digits);
516
517       Build_Float_Type
518         (Standard_Long_Long_Float,
519          Standard_Long_Long_Float_Size,
520          Standard_Long_Long_Float_Digits);
521
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.
525
526       Tdef_Node := New_Node (N_Enumeration_Type_Definition, Stloc);
527       Set_Type_Definition (Parent (Standard_Character), Tdef_Node);
528
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);
534
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);
539
540       --  Create the bounds for type Character
541
542       R_Node := New_Node (N_Range, Stloc);
543
544       --  Low bound for type Character (Standard.Nul)
545
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);
553
554       --  High bound for type Character
555
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);
563
564       Set_Scalar_Range (Standard_Character, R_Node);
565       Set_Etype (R_Node, Standard_Character);
566       Set_Parent (R_Node, Standard_Character);
567
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.
571
572       Tdef_Node := New_Node (N_Enumeration_Type_Definition, Stloc);
573       Set_Type_Definition (Parent (Standard_Wide_Character), Tdef_Node);
574
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);
578
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);
584
585       --  Create the bounds for type Wide_Character
586
587       R_Node := New_Node (N_Range, Stloc);
588
589       --  Low bound for type Wide_Character
590
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);
598
599       --  High bound for type Wide_Character
600
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);
608
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);
612
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.
616
617       Tdef_Node := New_Node (N_Enumeration_Type_Definition, Stloc);
618       Set_Type_Definition (Parent (Standard_Wide_Wide_Character), Tdef_Node);
619
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);
625
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_Only           (Standard_Wide_Wide_Character);
632
633       --  Create the bounds for type Wide_Wide_Character
634
635       R_Node := New_Node (N_Range, Stloc);
636
637       --  Low bound for type Wide_Wide_Character
638
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);
646
647       --  High bound for type Wide_Wide_Character
648
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);
656
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);
660
661       --  Create type definition node for type String
662
663       Tdef_Node := New_Node (N_Unconstrained_Array_Definition, Stloc);
664
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;
674
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);
678
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);
685
686       --  On targets where a storage unit is larger than a byte (such as AAMP),
687       --  pragma Pack has a real effect on the representation of type String,
688       --  and the type must be marked as having a nonstandard representation.
689
690       if System_Storage_Unit > Uint_8 then
691          Set_Has_Non_Standard_Rep (Standard_String);
692          Set_Has_Pragma_Pack      (Standard_String);
693       end if;
694
695       --  Set index type of String
696
697       E_Id := First
698         (Subtype_Marks (Type_Definition (Parent (Standard_String))));
699       Set_First_Index (Standard_String, E_Id);
700       Set_Entity (E_Id, Standard_Positive);
701       Set_Etype (E_Id, Standard_Positive);
702
703       --  Create type definition node for type Wide_String
704
705       Tdef_Node := New_Node (N_Unconstrained_Array_Definition, Stloc);
706
707       declare
708          CompDef_Node : Node_Id;
709       begin
710          CompDef_Node := New_Node (N_Component_Definition, Stloc);
711          Set_Aliased_Present    (CompDef_Node, False);
712          Set_Access_Definition  (CompDef_Node, Empty);
713          Set_Subtype_Indication (CompDef_Node,
714                                  Identifier_For (S_Wide_Character));
715          Set_Component_Definition (Tdef_Node, CompDef_Node);
716       end;
717
718       Set_Subtype_Marks (Tdef_Node, New_List);
719       Append (Identifier_For (S_Positive), Subtype_Marks (Tdef_Node));
720       Set_Type_Definition (Parent (Standard_Wide_String), Tdef_Node);
721
722       Set_Ekind          (Standard_Wide_String, E_String_Type);
723       Set_Etype          (Standard_Wide_String, Standard_Wide_String);
724       Set_Component_Type (Standard_Wide_String, Standard_Wide_Character);
725       Set_Component_Size (Standard_Wide_String, Uint_16);
726       Init_Size_Align    (Standard_Wide_String);
727
728       --  Set index type of Wide_String
729
730       E_Id := First
731         (Subtype_Marks (Type_Definition (Parent (Standard_Wide_String))));
732       Set_First_Index (Standard_Wide_String, E_Id);
733       Set_Entity (E_Id, Standard_Positive);
734       Set_Etype (E_Id, Standard_Positive);
735
736       --  Create type definition node for type Wide_Wide_String
737
738       Tdef_Node := New_Node (N_Unconstrained_Array_Definition, Stloc);
739
740       declare
741          CompDef_Node : Node_Id;
742       begin
743          CompDef_Node := New_Node (N_Component_Definition, Stloc);
744          Set_Aliased_Present    (CompDef_Node, False);
745          Set_Access_Definition  (CompDef_Node, Empty);
746          Set_Subtype_Indication (CompDef_Node,
747                                  Identifier_For (S_Wide_Wide_Character));
748          Set_Component_Definition (Tdef_Node, CompDef_Node);
749       end;
750
751       Set_Subtype_Marks (Tdef_Node, New_List);
752       Append (Identifier_For (S_Positive), Subtype_Marks (Tdef_Node));
753       Set_Type_Definition (Parent (Standard_Wide_Wide_String), Tdef_Node);
754
755       Set_Ekind            (Standard_Wide_Wide_String, E_String_Type);
756       Set_Etype            (Standard_Wide_Wide_String,
757                             Standard_Wide_Wide_String);
758       Set_Component_Type   (Standard_Wide_Wide_String,
759                             Standard_Wide_Wide_Character);
760       Set_Component_Size   (Standard_Wide_Wide_String, Uint_32);
761       Init_Size_Align      (Standard_Wide_Wide_String);
762       Set_Is_Ada_2005_Only (Standard_Wide_Wide_String);
763
764       --  Set index type of Wide_Wide_String
765
766       E_Id := First
767         (Subtype_Marks (Type_Definition (Parent (Standard_Wide_Wide_String))));
768       Set_First_Index (Standard_Wide_Wide_String, E_Id);
769       Set_Entity (E_Id, Standard_Positive);
770       Set_Etype (E_Id, Standard_Positive);
771
772       --  Create subtype declaration for Natural
773
774       Decl := New_Node (N_Subtype_Declaration, Stloc);
775       Set_Defining_Identifier (Decl, Standard_Natural);
776       Set_Subtype_Indication (Decl,
777         New_Occurrence_Of (Standard_Integer, Stloc));
778       Append (Decl, Decl_S);
779
780       Set_Ekind          (Standard_Natural, E_Signed_Integer_Subtype);
781       Set_Etype          (Standard_Natural, Base_Type (Standard_Integer));
782       Init_Esize         (Standard_Natural, Standard_Integer_Size);
783       Init_RM_Size       (Standard_Natural, Standard_Integer_Size - 1);
784       Set_Elem_Alignment (Standard_Natural);
785       Set_Size_Known_At_Compile_Time
786                          (Standard_Natural);
787       Set_Integer_Bounds (Standard_Natural,
788         Typ => Base_Type (Standard_Integer),
789         Lb  => Uint_0,
790         Hb  => Intval (High_Bound (Scalar_Range (Standard_Integer))));
791       Set_Is_Constrained (Standard_Natural);
792       Set_Is_Frozen      (Standard_Natural);
793       Set_Is_Public      (Standard_Natural);
794
795       --  Create subtype declaration for Positive
796
797       Decl := New_Node (N_Subtype_Declaration, Stloc);
798       Set_Defining_Identifier (Decl, Standard_Positive);
799       Set_Subtype_Indication (Decl,
800         New_Occurrence_Of (Standard_Integer, Stloc));
801       Append (Decl, Decl_S);
802
803       Set_Ekind          (Standard_Positive, E_Signed_Integer_Subtype);
804       Set_Etype          (Standard_Positive, Base_Type (Standard_Integer));
805       Init_Esize         (Standard_Positive, Standard_Integer_Size);
806       Init_RM_Size       (Standard_Positive, Standard_Integer_Size - 1);
807       Set_Elem_Alignment (Standard_Positive);
808
809       Set_Size_Known_At_Compile_Time (Standard_Positive);
810
811       Set_Integer_Bounds   (Standard_Positive,
812          Typ => Base_Type (Standard_Integer),
813          Lb  => Uint_1,
814          Hb  => Intval (High_Bound (Scalar_Range (Standard_Integer))));
815       Set_Is_Constrained   (Standard_Positive);
816       Set_Is_Frozen        (Standard_Positive);
817       Set_Is_Public        (Standard_Positive);
818
819       --  Create declaration for package ASCII
820
821       Decl := New_Node (N_Package_Declaration, Stloc);
822       Append (Decl, Decl_S);
823
824       Pspec := New_Node (N_Package_Specification, Stloc);
825       Set_Specification (Decl, Pspec);
826
827       Set_Defining_Unit_Name (Pspec, Standard_Entity (S_ASCII));
828       Set_Ekind (Standard_Entity (S_ASCII), E_Package);
829       Set_Visible_Declarations (Pspec, Decl_A);
830
831       --  Create control character definitions in package ASCII. Note that
832       --  the character literal entries created here correspond to literal
833       --  values that are impossible in the source, but can be represented
834       --  internally with no difficulties.
835
836       Ccode := 16#00#;
837
838       for S in S_ASCII_Names loop
839          Decl := New_Node (N_Object_Declaration, Staloc);
840          Set_Constant_Present (Decl, True);
841
842          declare
843             A_Char    : constant Entity_Id := Standard_Entity (S);
844             Expr_Decl : Node_Id;
845
846          begin
847             Set_Sloc                   (A_Char, Staloc);
848             Set_Ekind                  (A_Char, E_Constant);
849             Set_Never_Set_In_Source    (A_Char, True);
850             Set_Is_True_Constant       (A_Char, True);
851             Set_Etype                  (A_Char, Standard_Character);
852             Set_Scope                  (A_Char, Standard_Entity (S_ASCII));
853             Set_Is_Immediately_Visible (A_Char, False);
854             Set_Is_Public              (A_Char, True);
855             Set_Is_Known_Valid         (A_Char, True);
856
857             Append_Entity (A_Char, Standard_Entity (S_ASCII));
858             Set_Defining_Identifier (Decl, A_Char);
859
860             Set_Object_Definition (Decl, Identifier_For (S_Character));
861             Expr_Decl := New_Node (N_Character_Literal, Staloc);
862             Set_Expression (Decl, Expr_Decl);
863
864             Set_Is_Static_Expression (Expr_Decl);
865             Set_Chars                (Expr_Decl, No_Name);
866             Set_Etype                (Expr_Decl, Standard_Character);
867             Set_Char_Literal_Value   (Expr_Decl, UI_From_Int (Int (Ccode)));
868          end;
869
870          Append (Decl, Decl_A);
871
872          --  Increment character code, dealing with non-contiguities
873
874          Ccode := Ccode + 1;
875
876          if Ccode = 16#20# then
877             Ccode := 16#21#;
878          elsif Ccode = 16#27# then
879             Ccode := 16#3A#;
880          elsif Ccode = 16#3C# then
881             Ccode := 16#3F#;
882          elsif Ccode = 16#41# then
883             Ccode := 16#5B#;
884          end if;
885       end loop;
886
887       --  Create semantic phase entities
888
889       Standard_Void_Type := New_Standard_Entity;
890       Set_Ekind       (Standard_Void_Type, E_Void);
891       Set_Etype       (Standard_Void_Type, Standard_Void_Type);
892       Set_Scope       (Standard_Void_Type, Standard_Standard);
893       Make_Name       (Standard_Void_Type, "_void_type");
894
895       --  The type field of packages is set to void
896
897       Set_Etype (Standard_Standard, Standard_Void_Type);
898       Set_Etype (Standard_ASCII, Standard_Void_Type);
899
900       --  Standard_A_String is actually used in generated code, so it has a
901       --  type name that is reasonable, but does not overlap any Ada name.
902
903       Standard_A_String := New_Standard_Entity;
904       Set_Ekind      (Standard_A_String, E_Access_Type);
905       Set_Scope      (Standard_A_String, Standard_Standard);
906       Set_Etype      (Standard_A_String, Standard_A_String);
907
908       if Debug_Flag_6 then
909          Init_Size   (Standard_A_String, System_Address_Size);
910       else
911          Init_Size   (Standard_A_String, System_Address_Size * 2);
912       end if;
913
914       Init_Alignment (Standard_A_String);
915
916       Set_Directly_Designated_Type
917                      (Standard_A_String, Standard_String);
918       Make_Name      (Standard_A_String, "access_string");
919
920       Standard_A_Char := New_Standard_Entity;
921       Set_Ekind          (Standard_A_Char, E_Access_Type);
922       Set_Scope          (Standard_A_Char, Standard_Standard);
923       Set_Etype          (Standard_A_Char, Standard_A_String);
924       Init_Size          (Standard_A_Char, System_Address_Size);
925       Set_Elem_Alignment (Standard_A_Char);
926
927       Set_Directly_Designated_Type (Standard_A_Char, Standard_Character);
928       Make_Name     (Standard_A_Char, "access_character");
929
930       --  Note on type names. The type names for the following special types
931       --  are constructed so that they will look reasonable should they ever
932       --  appear in error messages etc, although in practice the use of the
933       --  special insertion character } for types results in special handling
934       --  of these type names in any case. The blanks in these names would
935       --  trouble in Gigi, but that's OK here, since none of these types
936       --  should ever get through to Gigi! Attributes of these types are
937       --  filled out to minimize problems with cascaded errors (for example,
938       --  Any_Integer is given reasonable and consistent type and size values)
939
940       Any_Type := New_Standard_Entity;
941       Decl := New_Node (N_Full_Type_Declaration, Stloc);
942       Set_Defining_Identifier (Decl, Any_Type);
943       Set_Scope (Any_Type, Standard_Standard);
944       Build_Signed_Integer_Type (Any_Type, Standard_Integer_Size);
945       Make_Name (Any_Type, "any type");
946
947       Any_Id := New_Standard_Entity;
948       Set_Ekind             (Any_Id, E_Variable);
949       Set_Scope             (Any_Id, Standard_Standard);
950       Set_Etype             (Any_Id, Any_Type);
951       Init_Esize            (Any_Id);
952       Init_Alignment        (Any_Id);
953       Make_Name             (Any_Id, "any id");
954
955       Any_Access := New_Standard_Entity;
956       Set_Ekind             (Any_Access, E_Access_Type);
957       Set_Scope             (Any_Access, Standard_Standard);
958       Set_Etype             (Any_Access, Any_Access);
959       Init_Size             (Any_Access, System_Address_Size);
960       Set_Elem_Alignment    (Any_Access);
961       Make_Name             (Any_Access, "an access type");
962
963       Any_Character := New_Standard_Entity;
964       Set_Ekind             (Any_Character, E_Enumeration_Type);
965       Set_Scope             (Any_Character, Standard_Standard);
966       Set_Etype             (Any_Character, Any_Character);
967       Set_Is_Unsigned_Type  (Any_Character);
968       Set_Is_Character_Type (Any_Character);
969       Init_Esize            (Any_Character, Standard_Character_Size);
970       Init_RM_Size          (Any_Character, 8);
971       Set_Elem_Alignment    (Any_Character);
972       Set_Scalar_Range      (Any_Character, Scalar_Range (Standard_Character));
973       Make_Name             (Any_Character, "a character type");
974
975       Any_Array := New_Standard_Entity;
976       Set_Ekind             (Any_Array, E_String_Type);
977       Set_Scope             (Any_Array, Standard_Standard);
978       Set_Etype             (Any_Array, Any_Array);
979       Set_Component_Type    (Any_Array, Any_Character);
980       Init_Size_Align       (Any_Array);
981       Make_Name             (Any_Array, "an array type");
982
983       Any_Boolean := New_Standard_Entity;
984       Set_Ekind             (Any_Boolean, E_Enumeration_Type);
985       Set_Scope             (Any_Boolean, Standard_Standard);
986       Set_Etype             (Any_Boolean, Standard_Boolean);
987       Init_Esize            (Any_Boolean, Standard_Character_Size);
988       Init_RM_Size          (Any_Boolean, 1);
989       Set_Elem_Alignment    (Any_Boolean);
990       Set_Is_Unsigned_Type  (Any_Boolean);
991       Set_Scalar_Range      (Any_Boolean, Scalar_Range (Standard_Boolean));
992       Make_Name             (Any_Boolean, "a boolean type");
993
994       Any_Composite := New_Standard_Entity;
995       Set_Ekind             (Any_Composite, E_Array_Type);
996       Set_Scope             (Any_Composite, Standard_Standard);
997       Set_Etype             (Any_Composite, Any_Composite);
998       Set_Component_Size    (Any_Composite, Uint_0);
999       Set_Component_Type    (Any_Composite, Standard_Integer);
1000       Init_Size_Align       (Any_Composite);
1001       Make_Name             (Any_Composite, "a composite type");
1002
1003       Any_Discrete := New_Standard_Entity;
1004       Set_Ekind             (Any_Discrete, E_Signed_Integer_Type);
1005       Set_Scope             (Any_Discrete, Standard_Standard);
1006       Set_Etype             (Any_Discrete, Any_Discrete);
1007       Init_Size             (Any_Discrete, Standard_Integer_Size);
1008       Set_Elem_Alignment    (Any_Discrete);
1009       Make_Name             (Any_Discrete, "a discrete type");
1010
1011       Any_Fixed := New_Standard_Entity;
1012       Set_Ekind             (Any_Fixed, E_Ordinary_Fixed_Point_Type);
1013       Set_Scope             (Any_Fixed, Standard_Standard);
1014       Set_Etype             (Any_Fixed, Any_Fixed);
1015       Init_Size             (Any_Fixed, Standard_Integer_Size);
1016       Set_Elem_Alignment    (Any_Fixed);
1017       Make_Name             (Any_Fixed, "a fixed-point type");
1018
1019       Any_Integer := New_Standard_Entity;
1020       Set_Ekind             (Any_Integer, E_Signed_Integer_Type);
1021       Set_Scope             (Any_Integer, Standard_Standard);
1022       Set_Etype             (Any_Integer, Standard_Long_Long_Integer);
1023       Init_Size             (Any_Integer, Standard_Long_Long_Integer_Size);
1024       Set_Elem_Alignment    (Any_Integer);
1025
1026       Set_Integer_Bounds
1027         (Any_Integer,
1028          Typ => Base_Type (Standard_Integer),
1029          Lb  => Uint_0,
1030          Hb  => Intval (High_Bound (Scalar_Range (Standard_Integer))));
1031       Make_Name (Any_Integer, "an integer type");
1032
1033       Any_Modular := New_Standard_Entity;
1034       Set_Ekind             (Any_Modular, E_Modular_Integer_Type);
1035       Set_Scope             (Any_Modular, Standard_Standard);
1036       Set_Etype             (Any_Modular, Standard_Long_Long_Integer);
1037       Init_Size             (Any_Modular, Standard_Long_Long_Integer_Size);
1038       Set_Elem_Alignment    (Any_Modular);
1039       Set_Is_Unsigned_Type  (Any_Modular);
1040       Make_Name             (Any_Modular, "a modular type");
1041
1042       Any_Numeric := New_Standard_Entity;
1043       Set_Ekind             (Any_Numeric, E_Signed_Integer_Type);
1044       Set_Scope             (Any_Numeric, Standard_Standard);
1045       Set_Etype             (Any_Numeric, Standard_Long_Long_Integer);
1046       Init_Size             (Any_Numeric, Standard_Long_Long_Integer_Size);
1047       Set_Elem_Alignment    (Any_Numeric);
1048       Make_Name             (Any_Numeric, "a numeric type");
1049
1050       Any_Real := New_Standard_Entity;
1051       Set_Ekind             (Any_Real, E_Floating_Point_Type);
1052       Set_Scope             (Any_Real, Standard_Standard);
1053       Set_Etype             (Any_Real, Standard_Long_Long_Float);
1054       Init_Size             (Any_Real, Standard_Long_Long_Float_Size);
1055       Set_Elem_Alignment    (Any_Real);
1056       Make_Name             (Any_Real, "a real type");
1057
1058       Any_Scalar := New_Standard_Entity;
1059       Set_Ekind             (Any_Scalar, E_Signed_Integer_Type);
1060       Set_Scope             (Any_Scalar, Standard_Standard);
1061       Set_Etype             (Any_Scalar, Any_Scalar);
1062       Init_Size             (Any_Scalar, Standard_Integer_Size);
1063       Set_Elem_Alignment    (Any_Scalar);
1064       Make_Name             (Any_Scalar, "a scalar type");
1065
1066       Any_String := New_Standard_Entity;
1067       Set_Ekind             (Any_String, E_String_Type);
1068       Set_Scope             (Any_String, Standard_Standard);
1069       Set_Etype             (Any_String, Any_String);
1070       Set_Component_Type    (Any_String, Any_Character);
1071       Init_Size_Align       (Any_String);
1072       Make_Name             (Any_String, "a string type");
1073
1074       declare
1075          Index   : Node_Id;
1076
1077       begin
1078          Index :=
1079            Make_Range (Stloc,
1080              Low_Bound  => Make_Integer (Uint_0),
1081              High_Bound => Make_Integer (Uint_2 ** Standard_Integer_Size));
1082          Set_Etype (Index, Standard_Integer);
1083          Set_First_Index (Any_String, Index);
1084       end;
1085
1086       Standard_Integer_8 := New_Standard_Entity;
1087       Decl := New_Node (N_Full_Type_Declaration, Stloc);
1088       Set_Defining_Identifier (Decl, Standard_Integer_8);
1089       Make_Name (Standard_Integer_8, "integer_8");
1090       Set_Scope (Standard_Integer_8, Standard_Standard);
1091       Build_Signed_Integer_Type (Standard_Integer_8, 8);
1092
1093       Standard_Integer_16 := New_Standard_Entity;
1094       Decl := New_Node (N_Full_Type_Declaration, Stloc);
1095       Set_Defining_Identifier (Decl, Standard_Integer_16);
1096       Make_Name (Standard_Integer_16, "integer_16");
1097       Set_Scope (Standard_Integer_16, Standard_Standard);
1098       Build_Signed_Integer_Type (Standard_Integer_16, 16);
1099
1100       Standard_Integer_32 := New_Standard_Entity;
1101       Decl := New_Node (N_Full_Type_Declaration, Stloc);
1102       Set_Defining_Identifier (Decl, Standard_Integer_32);
1103       Make_Name (Standard_Integer_32, "integer_32");
1104       Set_Scope (Standard_Integer_32, Standard_Standard);
1105       Build_Signed_Integer_Type (Standard_Integer_32, 32);
1106
1107       Standard_Integer_64 := New_Standard_Entity;
1108       Decl := New_Node (N_Full_Type_Declaration, Stloc);
1109       Set_Defining_Identifier (Decl, Standard_Integer_64);
1110       Make_Name (Standard_Integer_64, "integer_64");
1111       Set_Scope (Standard_Integer_64, Standard_Standard);
1112       Build_Signed_Integer_Type (Standard_Integer_64, 64);
1113
1114       Standard_Unsigned := New_Standard_Entity;
1115       Decl := New_Node (N_Full_Type_Declaration, Stloc);
1116       Set_Defining_Identifier (Decl, Standard_Unsigned);
1117       Make_Name (Standard_Unsigned, "unsigned");
1118
1119       Set_Ekind             (Standard_Unsigned, E_Modular_Integer_Type);
1120       Set_Scope             (Standard_Unsigned, Standard_Standard);
1121       Set_Etype             (Standard_Unsigned, Standard_Unsigned);
1122       Init_Size             (Standard_Unsigned, Standard_Integer_Size);
1123       Set_Elem_Alignment    (Standard_Unsigned);
1124       Set_Modulus           (Standard_Unsigned,
1125                               Uint_2 ** Standard_Integer_Size);
1126       Set_Is_Unsigned_Type  (Standard_Unsigned);
1127       Set_Size_Known_At_Compile_Time
1128                             (Standard_Unsigned);
1129
1130       R_Node := New_Node (N_Range, Stloc);
1131       Set_Low_Bound  (R_Node, Make_Integer (Uint_0));
1132       Set_High_Bound (R_Node, Make_Integer (Modulus (Standard_Unsigned) - 1));
1133       Set_Etype (Low_Bound (R_Node), Standard_Unsigned);
1134       Set_Etype (High_Bound (R_Node), Standard_Unsigned);
1135       Set_Scalar_Range (Standard_Unsigned, R_Node);
1136
1137       --  Note: universal integer and universal real are constructed as fully
1138       --  formed signed numeric types, with parameters corresponding to the
1139       --  longest runtime types (Long_Long_Integer and Long_Long_Float). This
1140       --  allows Gigi to properly process references to universal types that
1141       --  are not folded at compile time.
1142
1143       Universal_Integer := New_Standard_Entity;
1144       Decl := New_Node (N_Full_Type_Declaration, Stloc);
1145       Set_Defining_Identifier (Decl, Universal_Integer);
1146       Make_Name (Universal_Integer, "universal_integer");
1147       Set_Scope (Universal_Integer, Standard_Standard);
1148       Build_Signed_Integer_Type
1149         (Universal_Integer, Standard_Long_Long_Integer_Size);
1150
1151       Universal_Real := New_Standard_Entity;
1152       Decl := New_Node (N_Full_Type_Declaration, Stloc);
1153       Set_Defining_Identifier (Decl, Universal_Real);
1154       Make_Name (Universal_Real, "universal_real");
1155       Set_Scope (Universal_Real, Standard_Standard);
1156       Build_Float_Type
1157         (Universal_Real,
1158          Standard_Long_Long_Float_Size,
1159          Standard_Long_Long_Float_Digits);
1160
1161       --  Note: universal fixed, unlike universal integer and universal real,
1162       --  is never used at runtime, so it does not need to have bounds set.
1163
1164       Universal_Fixed := New_Standard_Entity;
1165       Decl := New_Node (N_Full_Type_Declaration, Stloc);
1166       Set_Defining_Identifier (Decl, Universal_Fixed);
1167       Make_Name            (Universal_Fixed, "universal_fixed");
1168       Set_Ekind            (Universal_Fixed, E_Ordinary_Fixed_Point_Type);
1169       Set_Etype            (Universal_Fixed, Universal_Fixed);
1170       Set_Scope            (Universal_Fixed, Standard_Standard);
1171       Init_Size            (Universal_Fixed, Standard_Long_Long_Integer_Size);
1172       Set_Elem_Alignment   (Universal_Fixed);
1173       Set_Size_Known_At_Compile_Time
1174                            (Universal_Fixed);
1175
1176       --  Create type declaration for Duration, using a 64-bit size. The
1177       --  delta and size values depend on the mode set in system.ads.
1178
1179       Build_Duration : declare
1180          Dlo       : Uint;
1181          Dhi       : Uint;
1182          Delta_Val : Ureal;
1183
1184       begin
1185          --  In 32 bit mode, the size is 32 bits, and the delta and
1186          --  small values are set to 20 milliseconds (20.0**(10.0**(-3)).
1187
1188          if Duration_32_Bits_On_Target then
1189             Dlo := Intval (Type_Low_Bound (Standard_Integer_32));
1190             Dhi := Intval (Type_High_Bound (Standard_Integer_32));
1191             Delta_Val := UR_From_Components (UI_From_Int (20), Uint_3, 10);
1192
1193          --  In standard 64-bit mode, the size is 64-bits and the delta and
1194          --  small values are set to nanoseconds (1.0**(10.0**(-9))
1195
1196          else
1197             Dlo := Intval (Type_Low_Bound (Standard_Integer_64));
1198             Dhi := Intval (Type_High_Bound (Standard_Integer_64));
1199             Delta_Val := UR_From_Components (Uint_1, Uint_9, 10);
1200          end if;
1201
1202          Tdef_Node := Make_Ordinary_Fixed_Point_Definition (Stloc,
1203                  Delta_Expression => Make_Real_Literal (Stloc, Delta_Val),
1204                  Real_Range_Specification =>
1205                    Make_Real_Range_Specification (Stloc,
1206                      Low_Bound  => Make_Real_Literal (Stloc,
1207                        Realval => Dlo * Delta_Val),
1208                      High_Bound => Make_Real_Literal (Stloc,
1209                        Realval => Dhi * Delta_Val)));
1210
1211          Set_Type_Definition (Parent (Standard_Duration), Tdef_Node);
1212
1213          Set_Ekind (Standard_Duration, E_Ordinary_Fixed_Point_Type);
1214          Set_Etype (Standard_Duration, Standard_Duration);
1215
1216          if Duration_32_Bits_On_Target then
1217             Init_Size (Standard_Duration, 32);
1218          else
1219             Init_Size (Standard_Duration, 64);
1220          end if;
1221
1222          Set_Elem_Alignment (Standard_Duration);
1223          Set_Delta_Value    (Standard_Duration, Delta_Val);
1224          Set_Small_Value    (Standard_Duration, Delta_Val);
1225          Set_Scalar_Range   (Standard_Duration,
1226                               Real_Range_Specification
1227                                (Type_Definition (Parent (Standard_Duration))));
1228
1229          --  Normally it does not matter that nodes in package Standard are
1230          --  not marked as analyzed. The Scalar_Range of the fixed-point
1231          --  type Standard_Duration is an exception, because of the special
1232          --  test made in Freeze.Freeze_Fixed_Point_Type.
1233
1234          Set_Analyzed (Scalar_Range (Standard_Duration));
1235
1236          Set_Etype (Type_High_Bound (Standard_Duration), Standard_Duration);
1237          Set_Etype (Type_Low_Bound  (Standard_Duration), Standard_Duration);
1238
1239          Set_Is_Static_Expression (Type_High_Bound (Standard_Duration));
1240          Set_Is_Static_Expression (Type_Low_Bound  (Standard_Duration));
1241
1242          Set_Corresponding_Integer_Value
1243            (Type_High_Bound (Standard_Duration), Dhi);
1244
1245          Set_Corresponding_Integer_Value
1246            (Type_Low_Bound  (Standard_Duration), Dlo);
1247
1248          Set_Size_Known_At_Compile_Time (Standard_Duration);
1249       end Build_Duration;
1250
1251       --  Build standard exception type. Note that the type name here is
1252       --  actually used in the generated code, so it must be set correctly
1253
1254       --  ??? Also note that the Import_Code component is now declared
1255       --  as a System.Standard_Library.Exception_Code to enforce run-time
1256       --  library implementation consistency. It's too early here to resort
1257       --  to rtsfind to get the proper node for that type, so we use the
1258       --  closest possible available type node at hand instead. We should
1259       --  probably be fixing this up at some point.
1260
1261       Standard_Exception_Type := New_Standard_Entity;
1262       Set_Ekind       (Standard_Exception_Type, E_Record_Type);
1263       Set_Etype       (Standard_Exception_Type, Standard_Exception_Type);
1264       Set_Scope       (Standard_Exception_Type, Standard_Standard);
1265       Set_Stored_Constraint
1266                       (Standard_Exception_Type, No_Elist);
1267       Init_Size_Align (Standard_Exception_Type);
1268       Set_Size_Known_At_Compile_Time
1269                       (Standard_Exception_Type, True);
1270       Make_Name       (Standard_Exception_Type, "exception");
1271
1272       Make_Component
1273         (Standard_Exception_Type, Standard_Boolean,   "Not_Handled_By_Others");
1274       Make_Component
1275         (Standard_Exception_Type, Standard_Character, "Lang");
1276       Make_Component
1277         (Standard_Exception_Type, Standard_Natural,   "Name_Length");
1278       Make_Component
1279         (Standard_Exception_Type, Standard_A_Char,    "Full_Name");
1280       Make_Component
1281         (Standard_Exception_Type, Standard_A_Char,    "HTable_Ptr");
1282       Make_Component
1283         (Standard_Exception_Type, Standard_Unsigned,  "Import_Code");
1284       Make_Component
1285         (Standard_Exception_Type, Standard_A_Char,    "Raise_Hook");
1286
1287       --  Build tree for record declaration, for use by the back-end
1288
1289       declare
1290          Comp_List : List_Id;
1291          Comp      : Entity_Id;
1292
1293       begin
1294          Comp      := First_Entity (Standard_Exception_Type);
1295          Comp_List := New_List;
1296
1297          while Present (Comp) loop
1298             Append (
1299               Make_Component_Declaration (Stloc,
1300                 Defining_Identifier => Comp,
1301                 Component_Definition =>
1302                   Make_Component_Definition (Stloc,
1303                     Aliased_Present    => False,
1304                     Subtype_Indication => New_Occurrence_Of (Etype (Comp),
1305                                                              Stloc))),
1306               Comp_List);
1307
1308             Next_Entity (Comp);
1309          end loop;
1310
1311          Decl := Make_Full_Type_Declaration (Stloc,
1312            Defining_Identifier => Standard_Exception_Type,
1313            Type_Definition =>
1314              Make_Record_Definition (Stloc,
1315                End_Label => Empty,
1316                Component_List =>
1317                  Make_Component_List (Stloc,
1318                    Component_Items => Comp_List)));
1319       end;
1320
1321       Append (Decl, Decl_S);
1322
1323       Layout_Type (Standard_Exception_Type);
1324
1325       --  Create declarations of standard exceptions
1326
1327       Build_Exception (S_Constraint_Error);
1328       Build_Exception (S_Program_Error);
1329       Build_Exception (S_Storage_Error);
1330       Build_Exception (S_Tasking_Error);
1331
1332       --  Numeric_Error is a normal exception in Ada 83, but in Ada 95
1333       --  it is a renaming of Constraint_Error. Is this test too early???
1334
1335       if Ada_Version = Ada_83 then
1336          Build_Exception (S_Numeric_Error);
1337
1338       else
1339          Decl := New_Node (N_Exception_Renaming_Declaration, Stloc);
1340          E_Id := Standard_Entity (S_Numeric_Error);
1341
1342          Set_Ekind          (E_Id, E_Exception);
1343          Set_Exception_Code (E_Id, Uint_0);
1344          Set_Etype          (E_Id, Standard_Exception_Type);
1345          Set_Is_Public      (E_Id);
1346          Set_Renamed_Entity (E_Id, Standard_Entity (S_Constraint_Error));
1347
1348          Set_Defining_Identifier (Decl, E_Id);
1349          Append (Decl, Decl_S);
1350
1351          Ident_Node := New_Node (N_Identifier, Stloc);
1352          Set_Chars  (Ident_Node, Chars (Standard_Entity (S_Constraint_Error)));
1353          Set_Entity (Ident_Node, Standard_Entity (S_Constraint_Error));
1354          Set_Name   (Decl, Ident_Node);
1355       end if;
1356
1357       --  Abort_Signal is an entity that does not get made visible
1358
1359       Abort_Signal := New_Standard_Entity;
1360       Set_Chars          (Abort_Signal, Name_uAbort_Signal);
1361       Set_Ekind          (Abort_Signal, E_Exception);
1362       Set_Exception_Code (Abort_Signal, Uint_0);
1363       Set_Etype          (Abort_Signal, Standard_Exception_Type);
1364       Set_Scope          (Abort_Signal, Standard_Standard);
1365       Set_Is_Public      (Abort_Signal, True);
1366       Decl :=
1367         Make_Exception_Declaration (Stloc,
1368           Defining_Identifier => Abort_Signal);
1369
1370       --  Create defining identifiers for shift operator entities. Note
1371       --  that these entities are used only for marking shift operators
1372       --  generated internally, and hence need no structure, just a name
1373       --  and a unique identity.
1374
1375       Standard_Op_Rotate_Left := New_Standard_Entity;
1376       Set_Chars (Standard_Op_Rotate_Left, Name_Rotate_Left);
1377       Set_Ekind (Standard_Op_Rotate_Left, E_Operator);
1378
1379       Standard_Op_Rotate_Right := New_Standard_Entity;
1380       Set_Chars (Standard_Op_Rotate_Right, Name_Rotate_Right);
1381       Set_Ekind (Standard_Op_Rotate_Right, E_Operator);
1382
1383       Standard_Op_Shift_Left := New_Standard_Entity;
1384       Set_Chars (Standard_Op_Shift_Left, Name_Shift_Left);
1385       Set_Ekind (Standard_Op_Shift_Left, E_Operator);
1386
1387       Standard_Op_Shift_Right := New_Standard_Entity;
1388       Set_Chars (Standard_Op_Shift_Right, Name_Shift_Right);
1389       Set_Ekind (Standard_Op_Shift_Right, E_Operator);
1390
1391       Standard_Op_Shift_Right_Arithmetic := New_Standard_Entity;
1392       Set_Chars (Standard_Op_Shift_Right_Arithmetic,
1393                                           Name_Shift_Right_Arithmetic);
1394       Set_Ekind (Standard_Op_Shift_Right_Arithmetic,
1395                                           E_Operator);
1396
1397       --  Create standard operator declarations
1398
1399       Create_Operators;
1400
1401       --  Initialize visibility table with entities in Standard
1402
1403       for E in Standard_Entity_Type loop
1404          if Ekind (Standard_Entity (E)) /= E_Operator then
1405             Set_Name_Entity_Id
1406               (Chars (Standard_Entity (E)), Standard_Entity (E));
1407             Set_Homonym (Standard_Entity (E), Empty);
1408          end if;
1409
1410          if E not in S_ASCII_Names then
1411             Set_Scope (Standard_Entity (E), Standard_Standard);
1412             Set_Is_Immediately_Visible (Standard_Entity (E));
1413          end if;
1414       end loop;
1415
1416       --  The predefined package Standard itself does not have a scope;
1417       --  it is the only entity in the system not to have one, and this
1418       --  is what identifies the package to Gigi.
1419
1420       Set_Scope (Standard_Standard, Empty);
1421
1422       --  Set global variables indicating last Id values and version
1423
1424       Last_Standard_Node_Id := Last_Node_Id;
1425       Last_Standard_List_Id := Last_List_Id;
1426
1427       --  The Error node has an Etype of Any_Type to help error recovery
1428
1429       Set_Etype (Error, Any_Type);
1430
1431       --  Print representation of standard if switch set
1432
1433       if Opt.Print_Standard then
1434          Print_Standard;
1435       end if;
1436    end Create_Standard;
1437
1438    ------------------------------------
1439    -- Create_Unconstrained_Base_Type --
1440    ------------------------------------
1441
1442    procedure Create_Unconstrained_Base_Type
1443      (E : Entity_Id;
1444       K : Entity_Kind)
1445    is
1446       New_Ent : constant Entity_Id := New_Copy (E);
1447
1448    begin
1449       Set_Ekind            (E, K);
1450       Set_Is_Constrained   (E, True);
1451       Set_Is_First_Subtype (E, True);
1452       Set_Etype            (E, New_Ent);
1453
1454       Append_Entity (New_Ent, Standard_Standard);
1455       Set_Is_Constrained (New_Ent, False);
1456       Set_Etype          (New_Ent, New_Ent);
1457       Set_Is_Known_Valid (New_Ent, True);
1458
1459       if K = E_Signed_Integer_Subtype then
1460          Set_Etype (Low_Bound  (Scalar_Range (E)), New_Ent);
1461          Set_Etype (High_Bound (Scalar_Range (E)), New_Ent);
1462       end if;
1463
1464    end Create_Unconstrained_Base_Type;
1465
1466    --------------------
1467    -- Identifier_For --
1468    --------------------
1469
1470    function Identifier_For (S : Standard_Entity_Type) return Node_Id is
1471       Ident_Node : Node_Id;
1472
1473    begin
1474       Ident_Node := New_Node (N_Identifier, Stloc);
1475       Set_Chars (Ident_Node, Chars (Standard_Entity (S)));
1476       return Ident_Node;
1477    end Identifier_For;
1478
1479    --------------------
1480    -- Make_Component --
1481    --------------------
1482
1483    procedure Make_Component
1484      (Rec : Entity_Id;
1485       Typ : Entity_Id;
1486       Nam : String)
1487    is
1488       Id : constant Entity_Id := New_Standard_Entity;
1489
1490    begin
1491       Set_Ekind                 (Id, E_Component);
1492       Set_Etype                 (Id, Typ);
1493       Set_Scope                 (Id, Rec);
1494       Init_Component_Location   (Id);
1495
1496       Set_Original_Record_Component (Id, Id);
1497       Make_Name (Id, Nam);
1498       Append_Entity (Id, Rec);
1499    end Make_Component;
1500
1501    -----------------
1502    -- Make_Formal --
1503    -----------------
1504
1505    function Make_Formal
1506      (Typ         : Entity_Id;
1507       Formal_Name : String) return Entity_Id
1508    is
1509       Formal : Entity_Id;
1510
1511    begin
1512       Formal := New_Standard_Entity;
1513
1514       Set_Ekind     (Formal, E_In_Parameter);
1515       Set_Mechanism (Formal, Default_Mechanism);
1516       Set_Scope     (Formal, Standard_Standard);
1517       Set_Etype     (Formal, Typ);
1518       Make_Name     (Formal, Formal_Name);
1519
1520       return Formal;
1521    end Make_Formal;
1522
1523    ------------------
1524    -- Make_Integer --
1525    ------------------
1526
1527    function Make_Integer (V : Uint) return Node_Id is
1528       N : constant Node_Id := Make_Integer_Literal (Stloc, V);
1529    begin
1530       Set_Is_Static_Expression (N);
1531       return N;
1532    end Make_Integer;
1533
1534    ---------------
1535    -- Make_Name --
1536    ---------------
1537
1538    procedure Make_Name (Id : Entity_Id; Nam : String) is
1539    begin
1540       for J in 1 .. Nam'Length loop
1541          Name_Buffer (J) := Fold_Lower (Nam (Nam'First + (J - 1)));
1542       end loop;
1543
1544       Name_Len := Nam'Length;
1545       Set_Chars (Id, Name_Find);
1546    end Make_Name;
1547
1548    ------------------
1549    -- New_Operator --
1550    ------------------
1551
1552    function New_Operator (Op : Name_Id; Typ : Entity_Id) return Entity_Id is
1553       Ident_Node : Entity_Id;
1554
1555    begin
1556       Ident_Node := Make_Defining_Identifier (Stloc, Op);
1557
1558       Set_Is_Pure    (Ident_Node, True);
1559       Set_Ekind      (Ident_Node, E_Operator);
1560       Set_Etype      (Ident_Node, Typ);
1561       Set_Scope      (Ident_Node, Standard_Standard);
1562       Set_Homonym    (Ident_Node, Get_Name_Entity_Id (Op));
1563       Set_Convention (Ident_Node, Convention_Intrinsic);
1564
1565       Set_Is_Immediately_Visible   (Ident_Node, True);
1566       Set_Is_Intrinsic_Subprogram  (Ident_Node, True);
1567
1568       Set_Name_Entity_Id (Op, Ident_Node);
1569       Append_Entity (Ident_Node, Standard_Standard);
1570       return Ident_Node;
1571    end New_Operator;
1572
1573    -------------------------
1574    -- New_Standard_Entity --
1575    -------------------------
1576
1577    function New_Standard_Entity
1578      (New_Node_Kind : Node_Kind := N_Defining_Identifier) return Entity_Id
1579    is
1580       E : constant Entity_Id := New_Entity (New_Node_Kind, Stloc);
1581
1582    begin
1583       --  All standard entities are Pure and Public
1584
1585       Set_Is_Pure (E);
1586       Set_Is_Public (E);
1587
1588       --  All standard entity names are analyzed manually, and are thus
1589       --  frozen as soon as they are created.
1590
1591       Set_Is_Frozen (E);
1592
1593       --  Set debug information required for all standard types
1594
1595       Set_Needs_Debug_Info (E);
1596
1597       --  All standard entities are built with fully qualified names, so
1598       --  set the flag to prevent an abortive attempt at requalification!
1599
1600       Set_Has_Qualified_Name (E);
1601
1602       --  Return newly created entity to be completed by caller
1603
1604       return E;
1605    end New_Standard_Entity;
1606
1607    --------------------
1608    -- Print_Standard --
1609    --------------------
1610
1611    procedure Print_Standard is
1612
1613       procedure P (Item : String) renames Output.Write_Line;
1614       --  Short-hand, since we do a lot of line writes here!
1615
1616       procedure P_Int_Range (Size : Pos);
1617       --  Prints the range of an integer based on its Size
1618
1619       procedure P_Float_Range (Id : Entity_Id);
1620       --  Prints the bounds range for the given float type entity
1621
1622       -------------------
1623       -- P_Float_Range --
1624       -------------------
1625
1626       procedure P_Float_Range (Id : Entity_Id) is
1627          Digs : constant Nat := UI_To_Int (Digits_Value (Id));
1628
1629       begin
1630          Write_Str ("     range ");
1631
1632          if Vax_Float (Id) then
1633             if Digs = VAXFF_Digits then
1634                Write_Str (VAXFF_First'Universal_Literal_String);
1635                Write_Str (" .. ");
1636                Write_Str (VAXFF_Last'Universal_Literal_String);
1637
1638             elsif Digs = VAXDF_Digits then
1639                Write_Str (VAXDF_First'Universal_Literal_String);
1640                Write_Str (" .. ");
1641                Write_Str (VAXDF_Last'Universal_Literal_String);
1642
1643             else
1644                pragma Assert (Digs = VAXGF_Digits);
1645
1646                Write_Str (VAXGF_First'Universal_Literal_String);
1647                Write_Str (" .. ");
1648                Write_Str (VAXGF_Last'Universal_Literal_String);
1649             end if;
1650
1651          elsif Is_AAMP_Float (Id) then
1652             if Digs = AAMPS_Digits then
1653                Write_Str (AAMPS_First'Universal_Literal_String);
1654                Write_Str (" .. ");
1655                Write_Str (AAMPS_Last'Universal_Literal_String);
1656
1657             else
1658                pragma Assert (Digs = AAMPL_Digits);
1659                Write_Str (AAMPL_First'Universal_Literal_String);
1660                Write_Str (" .. ");
1661                Write_Str (AAMPL_Last'Universal_Literal_String);
1662             end if;
1663
1664          elsif Digs = IEEES_Digits then
1665             Write_Str (IEEES_First'Universal_Literal_String);
1666             Write_Str (" .. ");
1667             Write_Str (IEEES_Last'Universal_Literal_String);
1668
1669          elsif Digs = IEEEL_Digits then
1670             Write_Str (IEEEL_First'Universal_Literal_String);
1671             Write_Str (" .. ");
1672             Write_Str (IEEEL_Last'Universal_Literal_String);
1673
1674          else
1675             pragma Assert (Digs = IEEEX_Digits);
1676
1677             Write_Str (IEEEX_First'Universal_Literal_String);
1678             Write_Str (" .. ");
1679             Write_Str (IEEEX_Last'Universal_Literal_String);
1680          end if;
1681
1682          Write_Str (";");
1683          Write_Eol;
1684       end P_Float_Range;
1685
1686       -----------------
1687       -- P_Int_Range --
1688       -----------------
1689
1690       procedure P_Int_Range (Size : Pos) is
1691       begin
1692          Write_Str (" is range -(2 **");
1693          Write_Int (Size - 1);
1694          Write_Str (")");
1695          Write_Str (" .. +(2 **");
1696          Write_Int (Size - 1);
1697          Write_Str (" - 1);");
1698          Write_Eol;
1699       end P_Int_Range;
1700
1701    --  Start of processing for Print_Standard
1702
1703    begin
1704       P ("--  Representation of package Standard");
1705       Write_Eol;
1706       P ("--  This is not accurate Ada, since new base types cannot be ");
1707       P ("--  created, but the listing shows the target dependent");
1708       P ("--  characteristics of the Standard types for this compiler");
1709       Write_Eol;
1710
1711       P ("package Standard is");
1712       P ("pragma Pure(Standard);");
1713       Write_Eol;
1714
1715       P ("   type Boolean is (False, True);");
1716       P ("   for Boolean'Size use 1;");
1717       P ("   for Boolean use (False => 0, True => 1);");
1718       Write_Eol;
1719
1720       --  Integer types
1721
1722       Write_Str ("   type Integer");
1723       P_Int_Range (Standard_Integer_Size);
1724       Write_Str ("   for Integer'Size use ");
1725       Write_Int (Standard_Integer_Size);
1726       P (";");
1727       Write_Eol;
1728
1729       P ("   subtype Natural  is Integer range 0 .. Integer'Last;");
1730       P ("   subtype Positive is Integer range 1 .. Integer'Last;");
1731       Write_Eol;
1732
1733       Write_Str ("   type Short_Short_Integer");
1734       P_Int_Range (Standard_Short_Short_Integer_Size);
1735       Write_Str ("   for Short_Short_Integer'Size use ");
1736       Write_Int (Standard_Short_Short_Integer_Size);
1737       P (";");
1738       Write_Eol;
1739
1740       Write_Str ("   type Short_Integer");
1741       P_Int_Range (Standard_Short_Integer_Size);
1742       Write_Str ("   for Short_Integer'Size use ");
1743       Write_Int (Standard_Short_Integer_Size);
1744       P (";");
1745       Write_Eol;
1746
1747       Write_Str ("   type Long_Integer");
1748       P_Int_Range (Standard_Long_Integer_Size);
1749       Write_Str ("   for Long_Integer'Size use ");
1750       Write_Int (Standard_Long_Integer_Size);
1751       P (";");
1752       Write_Eol;
1753
1754       Write_Str ("   type Long_Long_Integer");
1755       P_Int_Range (Standard_Long_Long_Integer_Size);
1756       Write_Str ("   for Long_Long_Integer'Size use ");
1757       Write_Int (Standard_Long_Long_Integer_Size);
1758       P (";");
1759       Write_Eol;
1760
1761       --  Floating point types
1762
1763       Write_Str ("   type Short_Float is digits ");
1764       Write_Int (Standard_Short_Float_Digits);
1765       Write_Eol;
1766       P_Float_Range (Standard_Short_Float);
1767       Write_Str ("   for Short_Float'Size use ");
1768       Write_Int (Standard_Short_Float_Size);
1769       P (";");
1770       Write_Eol;
1771
1772       Write_Str ("   type Float is digits ");
1773       Write_Int (Standard_Float_Digits);
1774       Write_Eol;
1775       P_Float_Range (Standard_Float);
1776       Write_Str ("   for Float'Size use ");
1777       Write_Int (Standard_Float_Size);
1778       P (";");
1779       Write_Eol;
1780
1781       Write_Str ("   type Long_Float is digits ");
1782       Write_Int (Standard_Long_Float_Digits);
1783       Write_Eol;
1784       P_Float_Range (Standard_Long_Float);
1785       Write_Str ("   for Long_Float'Size use ");
1786       Write_Int (Standard_Long_Float_Size);
1787       P (";");
1788       Write_Eol;
1789
1790       Write_Str ("   type Long_Long_Float is digits ");
1791       Write_Int (Standard_Long_Long_Float_Digits);
1792       Write_Eol;
1793       P_Float_Range (Standard_Long_Long_Float);
1794       Write_Str ("   for Long_Long_Float'Size use ");
1795       Write_Int (Standard_Long_Long_Float_Size);
1796       P (";");
1797       Write_Eol;
1798
1799       P ("   type Character is (...)");
1800       Write_Str ("   for Character'Size use ");
1801       Write_Int (Standard_Character_Size);
1802       P (";");
1803       P ("   --  See RM A.1(35) for details of this type");
1804       Write_Eol;
1805
1806       P ("   type Wide_Character is (...)");
1807       Write_Str ("   for Wide_Character'Size use ");
1808       Write_Int (Standard_Wide_Character_Size);
1809       P (";");
1810       P ("   --  See RM A.1(36) for details of this type");
1811       Write_Eol;
1812
1813       P ("   type Wide_Wide_Character is (...)");
1814       Write_Str ("   for Wide_Character'Size use ");
1815       Write_Int (Standard_Wide_Wide_Character_Size);
1816       P (";");
1817       P ("   --  See RM A.1(36) for details of this type");
1818
1819       P ("   type String is array (Positive range <>) of Character;");
1820       P ("   pragma Pack (String);");
1821       Write_Eol;
1822
1823       P ("   type Wide_String is array (Positive range <>)" &
1824          " of Wide_Character;");
1825       P ("   pragma Pack (Wide_String);");
1826       Write_Eol;
1827
1828       P ("   type Wide_Wide_String is array (Positive range <>)" &
1829          "  of Wide_Wide_Character;");
1830       P ("   pragma Pack (Wide_Wide_String);");
1831       Write_Eol;
1832
1833       --  Here it's OK to use the Duration type of the host compiler since
1834       --  the implementation of Duration in GNAT is target independent.
1835
1836       if Duration_32_Bits_On_Target then
1837          P ("   type Duration is delta 0.020");
1838          P ("     range -((2 ** 31 - 1) * 0.020) ..");
1839          P ("           +((2 ** 31 - 1) * 0.020);");
1840          P ("   for Duration'Small use 0.020;");
1841       else
1842          P ("   type Duration is delta 0.000000001");
1843          P ("     range -((2 ** 63 - 1) * 0.000000001) ..");
1844          P ("           +((2 ** 63 - 1) * 0.000000001);");
1845          P ("   for Duration'Small use 0.000000001;");
1846       end if;
1847
1848       Write_Eol;
1849
1850       P ("   Constraint_Error : exception;");
1851       P ("   Program_Error    : exception;");
1852       P ("   Storage_Error    : exception;");
1853       P ("   Tasking_Error    : exception;");
1854       P ("   Numeric_Error    : exception renames Constraint_Error;");
1855       Write_Eol;
1856
1857       P ("end Standard;");
1858    end Print_Standard;
1859
1860    ----------------------
1861    -- Set_Float_Bounds --
1862    ----------------------
1863
1864    procedure Set_Float_Bounds (Id  : Entity_Id) is
1865       L  : Node_Id;
1866       --  Low bound of literal value
1867
1868       H  : Node_Id;
1869       --  High bound of literal value
1870
1871       R  : Node_Id;
1872       --  Range specification
1873
1874       Digs  : constant Nat := UI_To_Int (Digits_Value (Id));
1875       --  Digits value, used to select bounds
1876
1877    begin
1878       --  Note: for the call from Cstand to initially create the types in
1879       --  Standard, Vax_Float will always be False. Circuitry in Sem_Vfpt
1880       --  will adjust these types appropriately in the Vax_Float case if
1881       --  a pragma Float_Representation (VAX_Float) is used.
1882
1883       if Vax_Float (Id) then
1884          if Digs = VAXFF_Digits then
1885             L := Real_Convert
1886                    (VAXFF_First'Universal_Literal_String);
1887             H := Real_Convert
1888                    (VAXFF_Last'Universal_Literal_String);
1889
1890          elsif Digs = VAXDF_Digits then
1891             L := Real_Convert
1892                    (VAXDF_First'Universal_Literal_String);
1893             H := Real_Convert
1894                    (VAXDF_Last'Universal_Literal_String);
1895
1896          else
1897             pragma Assert (Digs = VAXGF_Digits);
1898
1899             L := Real_Convert
1900                    (VAXGF_First'Universal_Literal_String);
1901             H := Real_Convert
1902                    (VAXGF_Last'Universal_Literal_String);
1903          end if;
1904
1905       elsif Is_AAMP_Float (Id) then
1906          if Digs = AAMPS_Digits then
1907             L := Real_Convert
1908                    (AAMPS_First'Universal_Literal_String);
1909             H := Real_Convert
1910                    (AAMPS_Last'Universal_Literal_String);
1911
1912          else
1913             pragma Assert (Digs = AAMPL_Digits);
1914             L := Real_Convert
1915                    (AAMPL_First'Universal_Literal_String);
1916             H := Real_Convert
1917                    (AAMPL_Last'Universal_Literal_String);
1918          end if;
1919
1920       elsif Digs = IEEES_Digits then
1921          L := Real_Convert
1922                 (IEEES_First'Universal_Literal_String);
1923          H := Real_Convert
1924                 (IEEES_Last'Universal_Literal_String);
1925
1926       elsif Digs = IEEEL_Digits then
1927          L := Real_Convert
1928                 (IEEEL_First'Universal_Literal_String);
1929          H := Real_Convert
1930                 (IEEEL_Last'Universal_Literal_String);
1931
1932       else
1933          pragma Assert (Digs = IEEEX_Digits);
1934
1935          L := Real_Convert
1936                 (IEEEX_First'Universal_Literal_String);
1937          H := Real_Convert
1938                 (IEEEX_Last'Universal_Literal_String);
1939       end if;
1940
1941       Set_Etype                (L, Id);
1942       Set_Is_Static_Expression (L);
1943
1944       Set_Etype                (H, Id);
1945       Set_Is_Static_Expression (H);
1946
1947       R := New_Node (N_Range, Stloc);
1948       Set_Low_Bound  (R, L);
1949       Set_High_Bound (R, H);
1950       Set_Includes_Infinities (R, True);
1951       Set_Scalar_Range (Id, R);
1952       Set_Etype (R, Id);
1953       Set_Parent (R, Id);
1954    end Set_Float_Bounds;
1955
1956    ------------------------
1957    -- Set_Integer_Bounds --
1958    ------------------------
1959
1960    procedure Set_Integer_Bounds
1961      (Id  : Entity_Id;
1962       Typ : Entity_Id;
1963       Lb  : Uint;
1964       Hb  : Uint)
1965    is
1966       L : Node_Id;     -- Low bound of literal value
1967       H : Node_Id;     -- High bound of literal value
1968       R : Node_Id;     -- Range specification
1969
1970    begin
1971       L := Make_Integer (Lb);
1972       H := Make_Integer (Hb);
1973
1974       Set_Etype (L, Typ);
1975       Set_Etype (H, Typ);
1976
1977       R := New_Node (N_Range, Stloc);
1978       Set_Low_Bound  (R, L);
1979       Set_High_Bound (R, H);
1980       Set_Scalar_Range (Id, R);
1981       Set_Etype (R, Typ);
1982       Set_Parent (R, Id);
1983       Set_Is_Unsigned_Type (Id, Lb >= 0);
1984    end Set_Integer_Bounds;
1985
1986 end CStand;