1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
5 -- S Y S T E M . A U X _ D E C --
9 -- Copyright (C) 1996-2009, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 -- This package contains definitions that are designed to be compatible
33 -- with the extra definitions in package System for DEC Ada implementations.
35 -- These definitions can be used directly by withing this package, or merged
36 -- with System using pragma Extend_System (Aux_DEC)
38 with Ada
.Unchecked_Conversion
;
40 package System
.Aux_DEC
is
43 subtype Short_Address
is Address
;
44 -- In some versions of System.Aux_DEC, notably that for VMS on the
45 -- ia64, there are two address types (64-bit and 32-bit), and the
46 -- name Short_Address is used for the short address form. To avoid
47 -- difficulties (in regression tests and elsewhere) with units that
48 -- reference Short_Address, it is provided for other targets as a
49 -- synonym for the normal Address type, and, as in the case where
50 -- the lengths are different, Address and Short_Address can be
51 -- freely inter-converted.
53 type Integer_8
is range -2 ** (8 - 1) .. +2 ** (8 - 1) - 1;
54 for Integer_8
'Size use 8;
56 type Integer_16
is range -2 ** (16 - 1) .. +2 ** (16 - 1) - 1;
57 for Integer_16
'Size use 16;
59 type Integer_32
is range -2 ** (32 - 1) .. +2 ** (32 - 1) - 1;
60 for Integer_32
'Size use 32;
62 type Integer_64
is range -2 ** (64 - 1) .. +2 ** (64 - 1) - 1;
63 for Integer_64
'Size use 64;
65 type Integer_8_Array
is array (Integer range <>) of Integer_8
;
66 type Integer_16_Array
is array (Integer range <>) of Integer_16
;
67 type Integer_32_Array
is array (Integer range <>) of Integer_32
;
68 type Integer_64_Array
is array (Integer range <>) of Integer_64
;
69 -- These array types are not in all versions of DEC System, and in fact it
70 -- is not quite clear why they are in some and not others, but since they
71 -- definitely appear in some versions, we include them unconditionally.
73 type Largest_Integer
is range Min_Int
.. Max_Int
;
75 type AST_Handler
is private;
77 No_AST_Handler
: constant AST_Handler
;
80 (Type_Class_Enumeration
,
82 Type_Class_Fixed_Point
,
83 Type_Class_Floating_Point
,
87 Type_Class_Task
, -- also in Ada 95 protected
90 function "not" (Left
: Largest_Integer
) return Largest_Integer
;
91 function "and" (Left
, Right
: Largest_Integer
) return Largest_Integer
;
92 function "or" (Left
, Right
: Largest_Integer
) return Largest_Integer
;
93 function "xor" (Left
, Right
: Largest_Integer
) return Largest_Integer
;
95 Address_Zero
: constant Address
;
96 No_Addr
: constant Address
;
97 Address_Size
: constant := Standard
'Address_Size;
98 Short_Address_Size
: constant := Standard
'Address_Size;
100 function "+" (Left
: Address
; Right
: Integer) return Address
;
101 function "+" (Left
: Integer; Right
: Address
) return Address
;
102 function "-" (Left
: Address
; Right
: Address
) return Integer;
103 function "-" (Left
: Address
; Right
: Integer) return Address
;
106 type Target
is private;
107 function Fetch_From_Address
(A
: Address
) return Target
;
110 type Target
is private;
111 procedure Assign_To_Address
(A
: Address
; T
: Target
);
113 -- Floating point type declarations for VAX floating point data types
115 pragma Warnings
(Off
);
118 type F_Float
is digits 6;
119 pragma Float_Representation
(VAX_Float
, F_Float
);
121 type D_Float
is digits 9;
122 pragma Float_Representation
(Vax_Float
, D_Float
);
124 type G_Float
is digits 15;
125 pragma Float_Representation
(Vax_Float
, G_Float
);
127 -- Floating point type declarations for IEEE floating point data types
129 type IEEE_Single_Float
is digits 6;
130 pragma Float_Representation
(IEEE_Float
, IEEE_Single_Float
);
132 type IEEE_Double_Float
is digits 15;
133 pragma Float_Representation
(IEEE_Float
, IEEE_Double_Float
);
135 pragma Warnings
(On
);
137 Non_Ada_Error
: exception;
139 -- Hardware-oriented types and functions
141 type Bit_Array
is array (Integer range <>) of Boolean;
142 pragma Pack
(Bit_Array
);
144 subtype Bit_Array_8
is Bit_Array
(0 .. 7);
145 subtype Bit_Array_16
is Bit_Array
(0 .. 15);
146 subtype Bit_Array_32
is Bit_Array
(0 .. 31);
147 subtype Bit_Array_64
is Bit_Array
(0 .. 63);
149 type Unsigned_Byte
is range 0 .. 255;
150 for Unsigned_Byte
'Size use 8;
152 function "not" (Left
: Unsigned_Byte
) return Unsigned_Byte
;
153 function "and" (Left
, Right
: Unsigned_Byte
) return Unsigned_Byte
;
154 function "or" (Left
, Right
: Unsigned_Byte
) return Unsigned_Byte
;
155 function "xor" (Left
, Right
: Unsigned_Byte
) return Unsigned_Byte
;
157 function To_Unsigned_Byte
(X
: Bit_Array_8
) return Unsigned_Byte
;
158 function To_Bit_Array_8
(X
: Unsigned_Byte
) return Bit_Array_8
;
160 type Unsigned_Byte_Array
is array (Integer range <>) of Unsigned_Byte
;
162 type Unsigned_Word
is range 0 .. 65535;
163 for Unsigned_Word
'Size use 16;
165 function "not" (Left
: Unsigned_Word
) return Unsigned_Word
;
166 function "and" (Left
, Right
: Unsigned_Word
) return Unsigned_Word
;
167 function "or" (Left
, Right
: Unsigned_Word
) return Unsigned_Word
;
168 function "xor" (Left
, Right
: Unsigned_Word
) return Unsigned_Word
;
170 function To_Unsigned_Word
(X
: Bit_Array_16
) return Unsigned_Word
;
171 function To_Bit_Array_16
(X
: Unsigned_Word
) return Bit_Array_16
;
173 type Unsigned_Word_Array
is array (Integer range <>) of Unsigned_Word
;
175 type Unsigned_Longword
is range -2_147_483_648
.. 2_147_483_647
;
176 for Unsigned_Longword
'Size use 32;
178 function "not" (Left
: Unsigned_Longword
) return Unsigned_Longword
;
179 function "and" (Left
, Right
: Unsigned_Longword
) return Unsigned_Longword
;
180 function "or" (Left
, Right
: Unsigned_Longword
) return Unsigned_Longword
;
181 function "xor" (Left
, Right
: Unsigned_Longword
) return Unsigned_Longword
;
183 function To_Unsigned_Longword
(X
: Bit_Array_32
) return Unsigned_Longword
;
184 function To_Bit_Array_32
(X
: Unsigned_Longword
) return Bit_Array_32
;
186 type Unsigned_Longword_Array
is
187 array (Integer range <>) of Unsigned_Longword
;
189 type Unsigned_32
is range 0 .. 4_294_967_295
;
190 for Unsigned_32
'Size use 32;
192 function "not" (Left
: Unsigned_32
) return Unsigned_32
;
193 function "and" (Left
, Right
: Unsigned_32
) return Unsigned_32
;
194 function "or" (Left
, Right
: Unsigned_32
) return Unsigned_32
;
195 function "xor" (Left
, Right
: Unsigned_32
) return Unsigned_32
;
197 function To_Unsigned_32
(X
: Bit_Array_32
) return Unsigned_32
;
198 function To_Bit_Array_32
(X
: Unsigned_32
) return Bit_Array_32
;
200 type Unsigned_Quadword
is record
201 L0
: Unsigned_Longword
;
202 L1
: Unsigned_Longword
;
205 for Unsigned_Quadword
'Size use 64;
206 for Unsigned_Quadword
'Alignment use
207 Integer'Min (8, Standard
'Maximum_Alignment);
209 function "not" (Left
: Unsigned_Quadword
) return Unsigned_Quadword
;
210 function "and" (Left
, Right
: Unsigned_Quadword
) return Unsigned_Quadword
;
211 function "or" (Left
, Right
: Unsigned_Quadword
) return Unsigned_Quadword
;
212 function "xor" (Left
, Right
: Unsigned_Quadword
) return Unsigned_Quadword
;
214 function To_Unsigned_Quadword
(X
: Bit_Array_64
) return Unsigned_Quadword
;
215 function To_Bit_Array_64
(X
: Unsigned_Quadword
) return Bit_Array_64
;
217 type Unsigned_Quadword_Array
is
218 array (Integer range <>) of Unsigned_Quadword
;
220 function To_Address
(X
: Integer) return Address
;
221 pragma Pure_Function
(To_Address
);
223 function To_Address_Long
(X
: Unsigned_Longword
) return Address
;
224 pragma Pure_Function
(To_Address_Long
);
226 function To_Integer
(X
: Address
) return Integer;
228 function To_Unsigned_Longword
(X
: Address
) return Unsigned_Longword
;
229 function To_Unsigned_Longword
(X
: AST_Handler
) return Unsigned_Longword
;
231 -- Conventional names for static subtypes of type UNSIGNED_LONGWORD
233 subtype Unsigned_1
is Unsigned_Longword
range 0 .. 2** 1-1;
234 subtype Unsigned_2
is Unsigned_Longword
range 0 .. 2** 2-1;
235 subtype Unsigned_3
is Unsigned_Longword
range 0 .. 2** 3-1;
236 subtype Unsigned_4
is Unsigned_Longword
range 0 .. 2** 4-1;
237 subtype Unsigned_5
is Unsigned_Longword
range 0 .. 2** 5-1;
238 subtype Unsigned_6
is Unsigned_Longword
range 0 .. 2** 6-1;
239 subtype Unsigned_7
is Unsigned_Longword
range 0 .. 2** 7-1;
240 subtype Unsigned_8
is Unsigned_Longword
range 0 .. 2** 8-1;
241 subtype Unsigned_9
is Unsigned_Longword
range 0 .. 2** 9-1;
242 subtype Unsigned_10
is Unsigned_Longword
range 0 .. 2**10-1;
243 subtype Unsigned_11
is Unsigned_Longword
range 0 .. 2**11-1;
244 subtype Unsigned_12
is Unsigned_Longword
range 0 .. 2**12-1;
245 subtype Unsigned_13
is Unsigned_Longword
range 0 .. 2**13-1;
246 subtype Unsigned_14
is Unsigned_Longword
range 0 .. 2**14-1;
247 subtype Unsigned_15
is Unsigned_Longword
range 0 .. 2**15-1;
248 subtype Unsigned_16
is Unsigned_Longword
range 0 .. 2**16-1;
249 subtype Unsigned_17
is Unsigned_Longword
range 0 .. 2**17-1;
250 subtype Unsigned_18
is Unsigned_Longword
range 0 .. 2**18-1;
251 subtype Unsigned_19
is Unsigned_Longword
range 0 .. 2**19-1;
252 subtype Unsigned_20
is Unsigned_Longword
range 0 .. 2**20-1;
253 subtype Unsigned_21
is Unsigned_Longword
range 0 .. 2**21-1;
254 subtype Unsigned_22
is Unsigned_Longword
range 0 .. 2**22-1;
255 subtype Unsigned_23
is Unsigned_Longword
range 0 .. 2**23-1;
256 subtype Unsigned_24
is Unsigned_Longword
range 0 .. 2**24-1;
257 subtype Unsigned_25
is Unsigned_Longword
range 0 .. 2**25-1;
258 subtype Unsigned_26
is Unsigned_Longword
range 0 .. 2**26-1;
259 subtype Unsigned_27
is Unsigned_Longword
range 0 .. 2**27-1;
260 subtype Unsigned_28
is Unsigned_Longword
range 0 .. 2**28-1;
261 subtype Unsigned_29
is Unsigned_Longword
range 0 .. 2**29-1;
262 subtype Unsigned_30
is Unsigned_Longword
range 0 .. 2**30-1;
263 subtype Unsigned_31
is Unsigned_Longword
range 0 .. 2**31-1;
265 -- Function for obtaining global symbol values
267 function Import_Value
(Symbol
: String) return Unsigned_Longword
;
268 function Import_Address
(Symbol
: String) return Address
;
269 function Import_Largest_Value
(Symbol
: String) return Largest_Integer
;
271 pragma Import
(Intrinsic
, Import_Value
);
272 pragma Import
(Intrinsic
, Import_Address
);
273 pragma Import
(Intrinsic
, Import_Largest_Value
);
275 -- For the following declarations, note that the declaration without
276 -- a Retry_Count parameter means to retry infinitely. A value of zero
277 -- for the Retry_Count parameter means do not retry.
279 -- Interlocked-instruction procedures
281 procedure Clear_Interlocked
282 (Bit
: in out Boolean;
283 Old_Value
: out Boolean);
285 procedure Set_Interlocked
286 (Bit
: in out Boolean;
287 Old_Value
: out Boolean);
289 type Aligned_Word
is record
290 Value
: Short_Integer;
293 for Aligned_Word
'Alignment use
294 Integer'Min (2, Standard
'Maximum_Alignment);
296 procedure Clear_Interlocked
297 (Bit
: in out Boolean;
298 Old_Value
: out Boolean;
299 Retry_Count
: Natural;
300 Success_Flag
: out Boolean);
302 procedure Set_Interlocked
303 (Bit
: in out Boolean;
304 Old_Value
: out Boolean;
305 Retry_Count
: Natural;
306 Success_Flag
: out Boolean);
308 procedure Add_Interlocked
309 (Addend
: Short_Integer;
310 Augend
: in out Aligned_Word
;
313 type Aligned_Integer
is record
317 for Aligned_Integer
'Alignment use
318 Integer'Min (4, Standard
'Maximum_Alignment);
320 type Aligned_Long_Integer
is record
321 Value
: Long_Integer;
324 for Aligned_Long_Integer
'Alignment use
325 Integer'Min (8, Standard
'Maximum_Alignment);
327 -- For the following declarations, note that the declaration without
328 -- a Retry_Count parameter mean to retry infinitely. A value of zero
329 -- for the Retry_Count means do not retry.
332 (To
: in out Aligned_Integer
;
336 (To
: in out Aligned_Integer
;
338 Retry_Count
: Natural;
339 Old_Value
: out Integer;
340 Success_Flag
: out Boolean);
343 (To
: in out Aligned_Long_Integer
;
344 Amount
: Long_Integer);
347 (To
: in out Aligned_Long_Integer
;
348 Amount
: Long_Integer;
349 Retry_Count
: Natural;
350 Old_Value
: out Long_Integer;
351 Success_Flag
: out Boolean);
354 (To
: in out Aligned_Integer
;
358 (To
: in out Aligned_Integer
;
360 Retry_Count
: Natural;
361 Old_Value
: out Integer;
362 Success_Flag
: out Boolean);
365 (To
: in out Aligned_Long_Integer
;
366 From
: Long_Integer);
369 (To
: in out Aligned_Long_Integer
;
371 Retry_Count
: Natural;
372 Old_Value
: out Long_Integer;
373 Success_Flag
: out Boolean);
376 (To
: in out Aligned_Integer
;
380 (To
: in out Aligned_Integer
;
382 Retry_Count
: Natural;
383 Old_Value
: out Integer;
384 Success_Flag
: out Boolean);
387 (To
: in out Aligned_Long_Integer
;
388 From
: Long_Integer);
391 (To
: in out Aligned_Long_Integer
;
393 Retry_Count
: Natural;
394 Old_Value
: out Long_Integer;
395 Success_Flag
: out Boolean);
398 (Fail_No_Lock
, OK_Not_First
, OK_First
);
405 type Remq_Status
is (
420 Status
: out Insq_Status
);
425 Status
: out Remq_Status
);
430 Status
: out Insq_Status
);
435 Status
: out Remq_Status
);
439 Address_Zero
: constant Address
:= Null_Address
;
440 No_Addr
: constant Address
:= Null_Address
;
442 -- An AST_Handler value is from a typing point of view simply a pointer
443 -- to a procedure taking a single 64bit parameter. However, this
444 -- is a bit misleading, because the data that this pointer references is
445 -- highly stylized. See body of System.AST_Handling for full details.
447 type AST_Handler
is access procedure (Param
: Long_Integer);
448 No_AST_Handler
: constant AST_Handler
:= null;
450 -- Other operators have incorrect profiles. It would be nice to make
451 -- them intrinsic, since the backend can handle them, but the front
452 -- end is not prepared to deal with them, so at least inline them.
454 pragma Inline_Always
("+");
455 pragma Inline_Always
("-");
456 pragma Inline_Always
("not");
457 pragma Inline_Always
("and");
458 pragma Inline_Always
("or");
459 pragma Inline_Always
("xor");
461 -- Other inlined subprograms
463 pragma Inline_Always
(Fetch_From_Address
);
464 pragma Inline_Always
(Assign_To_Address
);
466 -- Synchronization related subprograms. Mechanism is explicitly set
467 -- so that the critical parameters are passed by reference.
468 -- Without this, the parameters are passed by copy, creating load/store
469 -- race conditions. We also inline them, since this seems more in the
470 -- spirit of the original (hardware intrinsic) routines.
472 pragma Export_Procedure
474 External
=> "system__aux_dec__clear_interlocked__1",
475 Parameter_Types
=> (Boolean, Boolean),
476 Mechanism
=> (Reference
, Reference
));
477 pragma Export_Procedure
479 External
=> "system__aux_dec__clear_interlocked__2",
480 Parameter_Types
=> (Boolean, Boolean, Natural, Boolean),
481 Mechanism
=> (Reference
, Reference
, Value
, Reference
));
482 pragma Inline_Always
(Clear_Interlocked
);
484 pragma Export_Procedure
486 External
=> "system__aux_dec__set_interlocked__1",
487 Parameter_Types
=> (Boolean, Boolean),
488 Mechanism
=> (Reference
, Reference
));
489 pragma Export_Procedure
491 External
=> "system__aux_dec__set_interlocked__2",
492 Parameter_Types
=> (Boolean, Boolean, Natural, Boolean),
493 Mechanism
=> (Reference
, Reference
, Value
, Reference
));
494 pragma Inline_Always
(Set_Interlocked
);
496 pragma Export_Procedure
498 External
=> "system__aux_dec__add_interlocked__1",
499 Mechanism
=> (Value
, Reference
, Reference
));
500 pragma Inline_Always
(Add_Interlocked
);
502 pragma Export_Procedure
504 External
=> "system__aux_dec__add_atomic__1",
505 Parameter_Types
=> (Aligned_Integer
, Integer),
506 Mechanism
=> (Reference
, Value
));
507 pragma Export_Procedure
509 External
=> "system__aux_dec__add_atomic__2",
510 Parameter_Types
=> (Aligned_Integer
, Integer, Natural, Integer, Boolean),
511 Mechanism
=> (Reference
, Value
, Value
, Reference
, Reference
));
512 pragma Export_Procedure
514 External
=> "system__aux_dec__add_atomic__3",
515 Parameter_Types
=> (Aligned_Long_Integer
, Long_Integer),
516 Mechanism
=> (Reference
, Value
));
517 pragma Export_Procedure
519 External
=> "system__aux_dec__add_atomic__4",
520 Parameter_Types
=> (Aligned_Long_Integer
, Long_Integer, Natural,
521 Long_Integer, Boolean),
522 Mechanism
=> (Reference
, Value
, Value
, Reference
, Reference
));
523 pragma Inline_Always
(Add_Atomic
);
525 pragma Export_Procedure
527 External
=> "system__aux_dec__and_atomic__1",
528 Parameter_Types
=> (Aligned_Integer
, Integer),
529 Mechanism
=> (Reference
, Value
));
530 pragma Export_Procedure
532 External
=> "system__aux_dec__and_atomic__2",
533 Parameter_Types
=> (Aligned_Integer
, Integer, Natural, Integer, Boolean),
534 Mechanism
=> (Reference
, Value
, Value
, Reference
, Reference
));
535 pragma Export_Procedure
537 External
=> "system__aux_dec__and_atomic__3",
538 Parameter_Types
=> (Aligned_Long_Integer
, Long_Integer),
539 Mechanism
=> (Reference
, Value
));
540 pragma Export_Procedure
542 External
=> "system__aux_dec__and_atomic__4",
543 Parameter_Types
=> (Aligned_Long_Integer
, Long_Integer, Natural,
544 Long_Integer, Boolean),
545 Mechanism
=> (Reference
, Value
, Value
, Reference
, Reference
));
546 pragma Inline_Always
(And_Atomic
);
548 pragma Export_Procedure
550 External
=> "system__aux_dec__or_atomic__1",
551 Parameter_Types
=> (Aligned_Integer
, Integer),
552 Mechanism
=> (Reference
, Value
));
553 pragma Export_Procedure
555 External
=> "system__aux_dec__or_atomic__2",
556 Parameter_Types
=> (Aligned_Integer
, Integer, Natural, Integer, Boolean),
557 Mechanism
=> (Reference
, Value
, Value
, Reference
, Reference
));
558 pragma Export_Procedure
560 External
=> "system__aux_dec__or_atomic__3",
561 Parameter_Types
=> (Aligned_Long_Integer
, Long_Integer),
562 Mechanism
=> (Reference
, Value
));
563 pragma Export_Procedure
565 External
=> "system__aux_dec__or_atomic__4",
566 Parameter_Types
=> (Aligned_Long_Integer
, Long_Integer, Natural,
567 Long_Integer, Boolean),
568 Mechanism
=> (Reference
, Value
, Value
, Reference
, Reference
));
569 pragma Inline_Always
(Or_Atomic
);
571 -- Provide proper unchecked conversion definitions for transfer
572 -- functions. Note that we need this level of indirection because
573 -- the formal parameter name is X and not Source (and this is indeed
574 -- detectable by a program)
576 function To_Unsigned_Byte_A
is new
577 Ada
.Unchecked_Conversion
(Bit_Array_8
, Unsigned_Byte
);
579 function To_Unsigned_Byte
(X
: Bit_Array_8
) return Unsigned_Byte
580 renames To_Unsigned_Byte_A
;
582 function To_Bit_Array_8_A
is new
583 Ada
.Unchecked_Conversion
(Unsigned_Byte
, Bit_Array_8
);
585 function To_Bit_Array_8
(X
: Unsigned_Byte
) return Bit_Array_8
586 renames To_Bit_Array_8_A
;
588 function To_Unsigned_Word_A
is new
589 Ada
.Unchecked_Conversion
(Bit_Array_16
, Unsigned_Word
);
591 function To_Unsigned_Word
(X
: Bit_Array_16
) return Unsigned_Word
592 renames To_Unsigned_Word_A
;
594 function To_Bit_Array_16_A
is new
595 Ada
.Unchecked_Conversion
(Unsigned_Word
, Bit_Array_16
);
597 function To_Bit_Array_16
(X
: Unsigned_Word
) return Bit_Array_16
598 renames To_Bit_Array_16_A
;
600 function To_Unsigned_Longword_A
is new
601 Ada
.Unchecked_Conversion
(Bit_Array_32
, Unsigned_Longword
);
603 function To_Unsigned_Longword
(X
: Bit_Array_32
) return Unsigned_Longword
604 renames To_Unsigned_Longword_A
;
606 function To_Bit_Array_32_A
is new
607 Ada
.Unchecked_Conversion
(Unsigned_Longword
, Bit_Array_32
);
609 function To_Bit_Array_32
(X
: Unsigned_Longword
) return Bit_Array_32
610 renames To_Bit_Array_32_A
;
612 function To_Unsigned_32_A
is new
613 Ada
.Unchecked_Conversion
(Bit_Array_32
, Unsigned_32
);
615 function To_Unsigned_32
(X
: Bit_Array_32
) return Unsigned_32
616 renames To_Unsigned_32_A
;
618 function To_Bit_Array_32_A
is new
619 Ada
.Unchecked_Conversion
(Unsigned_32
, Bit_Array_32
);
621 function To_Bit_Array_32
(X
: Unsigned_32
) return Bit_Array_32
622 renames To_Bit_Array_32_A
;
624 function To_Unsigned_Quadword_A
is new
625 Ada
.Unchecked_Conversion
(Bit_Array_64
, Unsigned_Quadword
);
627 function To_Unsigned_Quadword
(X
: Bit_Array_64
) return Unsigned_Quadword
628 renames To_Unsigned_Quadword_A
;
630 function To_Bit_Array_64_A
is new
631 Ada
.Unchecked_Conversion
(Unsigned_Quadword
, Bit_Array_64
);
633 function To_Bit_Array_64
(X
: Unsigned_Quadword
) return Bit_Array_64
634 renames To_Bit_Array_64_A
;
636 pragma Warnings
(Off
);
637 -- Turn warnings off. This is needed for systems with 64-bit integers,
638 -- where some of these operations are of dubious meaning, but we do not
639 -- want warnings when we compile on such systems.
641 function To_Address_A
is new
642 Ada
.Unchecked_Conversion
(Integer, Address
);
643 pragma Pure_Function
(To_Address_A
);
645 function To_Address
(X
: Integer) return Address
646 renames To_Address_A
;
647 pragma Pure_Function
(To_Address
);
649 function To_Address_Long_A
is new
650 Ada
.Unchecked_Conversion
(Unsigned_Longword
, Address
);
651 pragma Pure_Function
(To_Address_Long_A
);
653 function To_Address_Long
(X
: Unsigned_Longword
) return Address
654 renames To_Address_Long_A
;
655 pragma Pure_Function
(To_Address_Long
);
657 function To_Integer_A
is new
658 Ada
.Unchecked_Conversion
(Address
, Integer);
660 function To_Integer
(X
: Address
) return Integer
661 renames To_Integer_A
;
663 function To_Unsigned_Longword_A
is new
664 Ada
.Unchecked_Conversion
(Address
, Unsigned_Longword
);
666 function To_Unsigned_Longword
(X
: Address
) return Unsigned_Longword
667 renames To_Unsigned_Longword_A
;
669 function To_Unsigned_Longword_A
is new
670 Ada
.Unchecked_Conversion
(AST_Handler
, Unsigned_Longword
);
672 function To_Unsigned_Longword
(X
: AST_Handler
) return Unsigned_Longword
673 renames To_Unsigned_Longword_A
;
675 pragma Warnings
(On
);