2005-03-23 Daniel Berlin <dberlin@dberlin.org>
[official-gcc.git] / gcc / ada / a-tags.ads
blobef099f73affeb87527636d96d6abf0c77de1f419
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- A D A . T A G S --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1992-2005 Free Software Foundation, Inc. --
10 -- --
11 -- This specification is derived from the Ada Reference Manual for use with --
12 -- GNAT. The copyright notice above, and the license provisions that follow --
13 -- apply solely to the contents of the part following the private keyword. --
14 -- --
15 -- GNAT is free software; you can redistribute it and/or modify it under --
16 -- terms of the GNU General Public License as published by the Free Soft- --
17 -- ware Foundation; either version 2, or (at your option) any later ver- --
18 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
19 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
20 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
21 -- for more details. You should have received a copy of the GNU General --
22 -- Public License distributed with GNAT; see file COPYING. If not, write --
23 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
24 -- MA 02111-1307, USA. --
25 -- --
26 -- As a special exception, if other files instantiate generics from this --
27 -- unit, or you link this unit with other files to produce an executable, --
28 -- this unit does not by itself cause the resulting executable to be --
29 -- covered by the GNU General Public License. This exception does not --
30 -- however invalidate any other reasons why the executable file might be --
31 -- covered by the GNU Public License. --
32 -- --
33 -- GNAT was originally developed by the GNAT team at New York University. --
34 -- Extensive contributions were provided by Ada Core Technologies Inc. --
35 -- --
36 ------------------------------------------------------------------------------
38 with System;
39 with System.Storage_Elements;
40 with Unchecked_Conversion;
42 package Ada.Tags is
44 pragma Elaborate_Body;
46 type Tag is private;
48 function Expanded_Name (T : Tag) return String;
50 function External_Tag (T : Tag) return String;
52 function Internal_Tag (External : String) return Tag;
54 Tag_Error : exception;
56 private
58 ---------------------------------------------------------------
59 -- Abstract Procedural Interface For The GNAT Dispatch Table --
60 ---------------------------------------------------------------
62 -- GNAT's Dispatch Table format is customizable in order to match the
63 -- format used in another language. GNAT supports programs that use
64 -- two different dispatch table formats at the same time: the native
65 -- format that supports Ada 95 tagged types and which is described in
66 -- Ada.Tags, and a foreign format for types that are imported from some
67 -- other language (typically C++) which is described in Interfaces.CPP.
68 -- The runtime information kept for each tagged type is separated into
69 -- two objects: the Dispatch Table and the Type Specific Data record.
70 -- These two objects are allocated statically using the constants:
72 -- DT Size = DT_Prologue_Size + Nb_Prim * DT_Entry_Size
73 -- TSD Size = TSD_Prologue_Size + (1 + Idepth) * TSD_Entry_Size
75 -- where Nb_prim is the number of primitive operations of the given
76 -- type and Idepth its inheritance depth.
78 -- The compiler generates calls to the following SET routines to
79 -- initialize those structures and uses the GET functions to
80 -- retreive the information when needed
82 type Dispatch_Table;
83 type Tag is access all Dispatch_Table;
85 type Type_Specific_Data;
86 type Type_Specific_Data_Ptr is access all Type_Specific_Data;
88 package SSE renames System.Storage_Elements;
90 function CW_Membership (Obj_Tag : Tag; Typ_Tag : Tag) return Boolean;
91 -- Given the tag of an object and the tag associated to a type, return
92 -- true if Obj is in Typ'Class.
94 function Get_External_Tag (T : Tag) return System.Address;
95 -- Retrieve the address of a null terminated string containing
96 -- the external name
98 function Get_Prim_Op_Address
99 (T : Tag;
100 Position : Positive) return System.Address;
101 -- Given a pointer to a dispatch Table (T) and a position in the DT
102 -- this function returns the address of the virtual function stored
103 -- in it (used for dispatching calls)
105 function Get_RC_Offset (T : Tag) return SSE.Storage_Offset;
106 -- Return the Offset of the implicit record controller when the object
107 -- has controlled components. O otherwise.
109 pragma Export (Ada, Get_RC_Offset, "ada__tags__get_rc_offset");
110 -- This procedure is used in s-finimp to compute the deep routines
111 -- it is exported manually in order to avoid changing completely the
112 -- organization of the run time.
114 function Get_Remotely_Callable (T : Tag) return Boolean;
115 -- Return the value previously set by Set_Remotely_Callable
117 function Get_TSD (T : Tag) return System.Address;
118 -- Given a pointer T to a dispatch Table, retreives the address of the
119 -- record containing the Type Specific Data generated by GNAT
121 procedure Inherit_DT
122 (Old_T : Tag;
123 New_T : Tag;
124 Entry_Count : Natural);
125 -- Entry point used to initialize the DT of a type knowing the tag
126 -- of the direct ancestor and the number of primitive ops that are
127 -- inherited (Entry_Count).
129 procedure Inherit_TSD (Old_TSD : System.Address; New_Tag : Tag);
130 -- Entry point used to initialize the TSD of a type knowing the
131 -- TSD of the direct ancestor.
133 function Parent_Size
134 (Obj : System.Address;
135 T : Tag) return SSE.Storage_Count;
136 -- Computes the size the ancestor part of a tagged extension object
137 -- whose address is 'obj' by calling the indirectly _size function of
138 -- the ancestor. The ancestor is the parent of the type represented by
139 -- tag T. This function assumes that _size is always in slot 1 of
140 -- the dispatch table.
142 pragma Export (Ada, Parent_Size, "ada__tags__parent_size");
143 -- This procedure is used in s-finimp and is thus exported manually
145 function Parent_Tag (T : Tag) return Tag;
146 -- Obj is the address of a tagged object. Parent_Tag fetch the tag of the
147 -- immediate ancestor (parent) of the type associated with Obj.
149 pragma Export (Ada, Parent_Tag, "ada__tags__parent_tag");
150 -- This procedure is used in s-finimp and is thus exported manually
152 procedure Register_Tag (T : Tag);
153 -- Insert the Tag and its associated external_tag in a table for the
154 -- sake of Internal_Tag
156 procedure Set_Prim_Op_Address
157 (T : Tag;
158 Position : Positive;
159 Value : System.Address);
160 -- Given a pointer to a dispatch Table (T) and a position in the
161 -- dispatch Table put the address of the virtual function in it
162 -- (used for overriding)
164 procedure Set_TSD (T : Tag; Value : System.Address);
165 -- Given a pointer T to a dispatch Table, stores the address of the record
166 -- containing the Type Specific Data generated by GNAT
168 procedure Set_Expanded_Name (T : Tag; Value : System.Address);
169 -- Set the address of the string containing the expanded name
170 -- in the Dispatch table
172 procedure Set_External_Tag (T : Tag; Value : System.Address);
173 -- Set the address of the string containing the external tag
174 -- in the Dispatch table
176 procedure Set_RC_Offset (T : Tag; Value : SSE.Storage_Offset);
177 -- Sets the Offset of the implicit record controller when the object
178 -- has controlled components. Set to O otherwise.
180 procedure Set_Remotely_Callable (T : Tag; Value : Boolean);
181 -- Set to true if the type has been declared in a context described
182 -- in E.4 (18).
184 function TSD (T : Tag) return Type_Specific_Data_Ptr;
185 -- This function is conceptually equivalent to Get_TSD, but
186 -- returning a Type_Specific_Data_Ptr type (rather than an Address)
187 -- simplifies the implementation of the other subprograms.
189 DT_Prologue_Size : constant SSE.Storage_Count :=
190 SSE.Storage_Count
191 (2 * (Standard'Address_Size / System.Storage_Unit));
192 -- Size of the first part of the dispatch table
194 DT_Typeinfo_Ptr_Size : constant SSE.Storage_Count :=
195 SSE.Storage_Count
196 (Standard'Address_Size / System.Storage_Unit);
197 -- Size of the Typeinfo_Ptr field of the Dispatch Table.
199 DT_Entry_Size : constant SSE.Storage_Count :=
200 SSE.Storage_Count
201 (1 * (Standard'Address_Size / System.Storage_Unit));
202 -- Size of each primitive operation entry in the Dispatch Table.
204 TSD_Prologue_Size : constant SSE.Storage_Count :=
205 SSE.Storage_Count
206 (6 * Standard'Address_Size / System.Storage_Unit);
207 -- Size of the first part of the type specific data
209 TSD_Entry_Size : constant SSE.Storage_Count :=
210 SSE.Storage_Count (1 * (Standard'Address_Size / System.Storage_Unit));
211 -- Size of each ancestor tag entry in the TSD
213 type Address_Array is array (Natural range <>) of System.Address;
214 pragma Suppress (Index_Check, On => Address_Array);
215 -- The reason we suppress index checks is that in the body, objects
216 -- of this type are declared with a dummy size of 1, the actual size
217 -- depending on the number of primitive operations.
219 function To_Type_Specific_Data_Ptr is
220 new Unchecked_Conversion (System.Address, Type_Specific_Data_Ptr);
222 function To_Address is
223 new Unchecked_Conversion (Type_Specific_Data_Ptr, System.Address);
225 function To_Address is
226 new Unchecked_Conversion (Tag, System.Address);
228 type Addr_Ptr is access System.Address;
230 function To_Addr_Ptr is
231 new Unchecked_Conversion (System.Address, Addr_Ptr);
233 -- Primitive dispatching operations are always inlined, to facilitate
234 -- use in a minimal/no run-time environment for high integrity use.
236 pragma Inline_Always (CW_Membership);
237 pragma Inline_Always (Get_Prim_Op_Address);
238 pragma Inline_Always (Get_RC_Offset);
239 pragma Inline_Always (Get_Remotely_Callable);
240 pragma Inline_Always (Get_TSD);
241 pragma Inline_Always (Inherit_DT);
242 pragma Inline_Always (Inherit_TSD);
243 pragma Inline_Always (Register_Tag);
244 pragma Inline_Always (Set_Expanded_Name);
245 pragma Inline_Always (Set_External_Tag);
246 pragma Inline_Always (Set_Prim_Op_Address);
247 pragma Inline_Always (Set_RC_Offset);
248 pragma Inline_Always (Set_Remotely_Callable);
249 pragma Inline_Always (Set_TSD);
250 pragma Inline_Always (TSD);
252 end Ada.Tags;