Implement -mmemcpy-strategy= and -mmemset-strategy= options
[official-gcc.git] / gcc / ada / stand.adb
blobab703fbb73d936445f2b8eb3a6b22a6966912e9d
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S T A N D --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992,1993,1994,1995,2009 Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
17 -- --
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. --
21 -- --
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/>. --
26 -- --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
29 -- --
30 ------------------------------------------------------------------------------
32 with System; use System;
33 with Tree_IO; use Tree_IO;
35 package body Stand is
37 ---------------
38 -- Tree_Read --
39 ---------------
41 procedure Tree_Read is
42 begin
43 Tree_Read_Data (Standard_Entity'Address,
44 Standard_Entity_Array_Type'Size / Storage_Unit);
46 Tree_Read_Int (Int (Standard_Package_Node));
47 Tree_Read_Int (Int (Last_Standard_Node_Id));
48 Tree_Read_Int (Int (Last_Standard_List_Id));
49 Tree_Read_Int (Int (Standard_Void_Type));
50 Tree_Read_Int (Int (Standard_Exception_Type));
51 Tree_Read_Int (Int (Standard_A_String));
52 Tree_Read_Int (Int (Any_Id));
53 Tree_Read_Int (Int (Any_Type));
54 Tree_Read_Int (Int (Any_Access));
55 Tree_Read_Int (Int (Any_Array));
56 Tree_Read_Int (Int (Any_Boolean));
57 Tree_Read_Int (Int (Any_Character));
58 Tree_Read_Int (Int (Any_Composite));
59 Tree_Read_Int (Int (Any_Discrete));
60 Tree_Read_Int (Int (Any_Fixed));
61 Tree_Read_Int (Int (Any_Integer));
62 Tree_Read_Int (Int (Any_Numeric));
63 Tree_Read_Int (Int (Any_Real));
64 Tree_Read_Int (Int (Any_Scalar));
65 Tree_Read_Int (Int (Any_String));
66 Tree_Read_Int (Int (Universal_Integer));
67 Tree_Read_Int (Int (Universal_Real));
68 Tree_Read_Int (Int (Universal_Fixed));
69 Tree_Read_Int (Int (Standard_Integer_8));
70 Tree_Read_Int (Int (Standard_Integer_16));
71 Tree_Read_Int (Int (Standard_Integer_32));
72 Tree_Read_Int (Int (Standard_Integer_64));
73 Tree_Read_Int (Int (Abort_Signal));
74 Tree_Read_Int (Int (Standard_Op_Rotate_Left));
75 Tree_Read_Int (Int (Standard_Op_Rotate_Right));
76 Tree_Read_Int (Int (Standard_Op_Shift_Left));
77 Tree_Read_Int (Int (Standard_Op_Shift_Right));
78 Tree_Read_Int (Int (Standard_Op_Shift_Right_Arithmetic));
80 end Tree_Read;
82 ----------------
83 -- Tree_Write --
84 ----------------
86 procedure Tree_Write is
87 begin
88 Tree_Write_Data (Standard_Entity'Address,
89 Standard_Entity_Array_Type'Size / Storage_Unit);
91 Tree_Write_Int (Int (Standard_Package_Node));
92 Tree_Write_Int (Int (Last_Standard_Node_Id));
93 Tree_Write_Int (Int (Last_Standard_List_Id));
94 Tree_Write_Int (Int (Standard_Void_Type));
95 Tree_Write_Int (Int (Standard_Exception_Type));
96 Tree_Write_Int (Int (Standard_A_String));
97 Tree_Write_Int (Int (Any_Id));
98 Tree_Write_Int (Int (Any_Type));
99 Tree_Write_Int (Int (Any_Access));
100 Tree_Write_Int (Int (Any_Array));
101 Tree_Write_Int (Int (Any_Boolean));
102 Tree_Write_Int (Int (Any_Character));
103 Tree_Write_Int (Int (Any_Composite));
104 Tree_Write_Int (Int (Any_Discrete));
105 Tree_Write_Int (Int (Any_Fixed));
106 Tree_Write_Int (Int (Any_Integer));
107 Tree_Write_Int (Int (Any_Numeric));
108 Tree_Write_Int (Int (Any_Real));
109 Tree_Write_Int (Int (Any_Scalar));
110 Tree_Write_Int (Int (Any_String));
111 Tree_Write_Int (Int (Universal_Integer));
112 Tree_Write_Int (Int (Universal_Real));
113 Tree_Write_Int (Int (Universal_Fixed));
114 Tree_Write_Int (Int (Standard_Integer_8));
115 Tree_Write_Int (Int (Standard_Integer_16));
116 Tree_Write_Int (Int (Standard_Integer_32));
117 Tree_Write_Int (Int (Standard_Integer_64));
118 Tree_Write_Int (Int (Abort_Signal));
119 Tree_Write_Int (Int (Standard_Op_Rotate_Left));
120 Tree_Write_Int (Int (Standard_Op_Rotate_Right));
121 Tree_Write_Int (Int (Standard_Op_Shift_Left));
122 Tree_Write_Int (Int (Standard_Op_Shift_Right));
123 Tree_Write_Int (Int (Standard_Op_Shift_Right_Arithmetic));
125 end Tree_Write;
127 end Stand;