1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2023, 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. 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 COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 with Atree
; use Atree
;
27 with Einfo
; use Einfo
;
28 with Einfo
.Entities
; use Einfo
.Entities
;
29 with Einfo
.Utils
; use Einfo
.Utils
;
30 with Elists
; use Elists
;
31 with Exp_Util
; use Exp_Util
;
32 with Nlists
; use Nlists
;
34 with Restrict
; use Restrict
;
35 with Rident
; use Rident
;
36 with Sem_Aux
; use Sem_Aux
;
37 with Sem_Ch6
; use Sem_Ch6
;
38 with Sem_Util
; use Sem_Util
;
39 with Sinfo
; use Sinfo
;
40 with Sinfo
.Nodes
; use Sinfo
.Nodes
;
42 package body Exp_Tss
is
48 function Base_Init_Proc
50 Ref
: Entity_Id
:= Empty
) return Entity_Id
52 Full_Type
: Entity_Id
;
56 pragma Assert
(Is_Type
(Typ
));
58 if Is_Private_Type
(Typ
) then
59 Full_Type
:= Underlying_Type
(Base_Type
(Typ
));
64 if No
(Full_Type
) then
67 elsif Is_Concurrent_Type
(Full_Type
)
68 and then Present
(Corresponding_Record_Type
(Base_Type
(Full_Type
)))
70 -- The initialization routine to be called is that of the base type
71 -- of the corresponding record type, which may itself be a subtype
72 -- and possibly an itype.
75 (Base_Type
(Corresponding_Record_Type
(Base_Type
(Full_Type
))),
79 Proc
:= Init_Proc
(Base_Type
(Full_Type
), Ref
);
81 -- For derived record types, if the base type does not have one,
82 -- we use the Init_Proc of the ancestor type.
85 and then Is_Record_Type
(Full_Type
)
86 and then Is_Derived_Type
(Full_Type
)
88 return Init_Proc
(Root_Type
(Full_Type
), Ref
);
99 -- Note: internally this routine is also used to initially set up
100 -- a TSS entry for a new type (case of being called from Set_TSS)
102 procedure Copy_TSS
(TSS
: Entity_Id
; Typ
: Entity_Id
) is
106 Ensure_Freeze_Node
(Typ
);
107 FN
:= Freeze_Node
(Typ
);
109 if No
(TSS_Elist
(FN
)) then
110 Set_TSS_Elist
(FN
, New_Elmt_List
);
113 -- We prepend here, so that a second call overrides the first, it
114 -- is not clear that this is required, but it seems reasonable.
116 Prepend_Elmt
(TSS
, TSS_Elist
(FN
));
123 function CPP_Init_Proc
(Typ
: Entity_Id
) return Entity_Id
is
124 FN
: constant Node_Id
:= Freeze_Node
(Typ
);
128 if not Is_CPP_Class
(Root_Type
(Typ
))
130 or else No
(TSS_Elist
(FN
))
135 Elmt
:= First_Elmt
(TSS_Elist
(FN
));
136 while Present
(Elmt
) loop
137 if Is_CPP_Init_Proc
(Node
(Elmt
)) then
148 ------------------------
149 -- Find_Inherited_TSS --
150 ------------------------
152 function Find_Inherited_TSS
154 Nam
: TSS_Name_Type
) return Entity_Id
160 -- If Typ is a private type, look at the full view
162 if Is_Private_Type
(Typ
) and then Present
(Full_View
(Typ
)) then
163 Btyp
:= Base_Type
(Full_View
(Typ
));
165 Btyp
:= Base_Type
(Typ
);
168 Proc
:= TSS
(Btyp
, Nam
);
170 -- If Typ is a derived type, it may inherit attributes from an ancestor
172 if No
(Proc
) and then Is_Derived_Type
(Btyp
) then
173 if not Derivation_Too_Early_To_Inherit
(Btyp
, Nam
) then
174 Proc
:= Find_Inherited_TSS
(Etype
(Btyp
), Nam
);
175 elsif Is_Derived_Type
(Etype
(Btyp
)) then
176 -- Skip one link in the derivation chain
177 Proc
:= Find_Inherited_TSS
178 (Etype
(Base_Type
(Etype
(Btyp
))), Nam
);
182 -- If nothing else, use the TSS of the root type
185 Proc
:= TSS
(Base_Type
(Underlying_Type
(Typ
)), Nam
);
189 end Find_Inherited_TSS
;
195 function Get_TSS_Name
(E
: Entity_Id
) return TSS_Name_Type
is
201 Get_Last_Two_Chars
(Chars
(E
), C1
, C2
);
203 if C1
in 'A' .. 'Z' and then C2
in 'A' .. 'Z' then
206 for J
in TSS_Names
'Range loop
207 if Nm
= TSS_Names
(J
) then
216 ---------------------------------
217 -- Has_Non_Null_Base_Init_Proc --
218 ---------------------------------
220 -- Note: if a base Init_Proc is present, and No_Default_Initialization is
221 -- present, then we must avoid testing for a null init proc, since there
222 -- is no init proc present in this case.
224 function Has_Non_Null_Base_Init_Proc
(Typ
: Entity_Id
) return Boolean is
225 BIP
: constant Entity_Id
:= Base_Init_Proc
(Typ
);
228 and then (Restriction_Active
(No_Default_Initialization
)
229 or else not Is_Null_Init_Proc
(BIP
));
230 end Has_Non_Null_Base_Init_Proc
;
238 Ref
: Entity_Id
:= Empty
) return Entity_Id
240 FN
: constant Node_Id
:= Freeze_Node
(Typ
);
249 elsif No
(TSS_Elist
(FN
)) then
253 Elmt
:= First_Elmt
(TSS_Elist
(FN
));
254 while Present
(Elmt
) loop
255 if Is_Init_Proc
(Node
(Elmt
)) then
256 if not Is_CPP_Class
(Typ
) then
259 -- For CPP classes, we are looking for the default constructor,
260 -- and so we must skip any non-default constructor.
265 (Parameter_Specifications
(Parent
(Node
(Elmt
))))))
274 -- Non-default constructors are currently supported only in the context
275 -- of interfacing with C++.
277 else pragma Assert
(Is_CPP_Class
(Typ
));
279 -- Use the referenced function to locate the init_proc matching
280 -- the C++ constructor.
282 Elmt
:= First_Elmt
(TSS_Elist
(FN
));
283 while Present
(Elmt
) loop
284 if Is_Init_Proc
(Node
(Elmt
)) then
285 E1
:= Next_Formal
(First_Formal
(Node
(Elmt
)));
286 E2
:= First_Formal
(Ref
);
287 while Present
(E1
) and then Present
(E2
) loop
288 if Chars
(E1
) /= Chars
(E2
)
289 or else Ekind
(E1
) /= Ekind
(E2
)
293 elsif not Is_Anonymous_Access_Type
(Etype
(E1
))
294 and then not Is_Anonymous_Access_Type
(Etype
(E2
))
295 and then Etype
(E1
) /= Etype
(E2
)
299 elsif Ekind
(Etype
(E1
)) = E_Anonymous_Access_Type
300 and then Ekind
(Etype
(E2
)) = E_Anonymous_Access_Type
301 and then Directly_Designated_Type
(Etype
(E1
))
302 /= Directly_Designated_Type
(Etype
(E2
))
306 elsif Ekind
(Etype
(E1
)) in
307 E_Anonymous_Access_Subprogram_Type |
308 E_Anonymous_Access_Protected_Subprogram_Type
309 and then Ekind
(Etype
(E2
)) in
310 E_Anonymous_Access_Subprogram_Type |
311 E_Anonymous_Access_Protected_Subprogram_Type
312 and then not Conforming_Types
313 (Etype
(E1
), Etype
(E2
), Fully_Conformant
)
318 E1
:= Next_Formal
(E1
);
319 E2
:= Next_Formal
(E2
);
322 if No
(E1
) and then No
(E2
) then
334 ----------------------
335 -- Is_CPP_Init_Proc --
336 ----------------------
338 function Is_CPP_Init_Proc
(E
: Entity_Id
) return Boolean is
342 Get_Last_Two_Chars
(Chars
(E
), C1
, C2
);
343 return C1
= TSS_CPP_Init_Proc
(1) and then C2
= TSS_CPP_Init_Proc
(2);
344 end Is_CPP_Init_Proc
;
350 function Is_Init_Proc
(E
: Entity_Id
) return Boolean is
354 Get_Last_Two_Chars
(Chars
(E
), C1
, C2
);
355 return C1
= TSS_Init_Proc
(1) and then C2
= TSS_Init_Proc
(2);
362 function Is_TSS
(E
: Entity_Id
; Nam
: TSS_Name_Type
) return Boolean is
366 Get_Last_Two_Chars
(Chars
(E
), C1
, C2
);
367 return C1
= Nam
(1) and then C2
= Nam
(2);
370 function Is_TSS
(N
: Name_Id
; Nam
: TSS_Name_Type
) return Boolean is
374 Get_Last_Two_Chars
(N
, C1
, C2
);
375 return C1
= Nam
(1) and then C2
= Nam
(2);
378 -------------------------
379 -- Make_Init_Proc_Name --
380 -------------------------
382 function Make_Init_Proc_Name
(Typ
: Entity_Id
) return Name_Id
is
384 return Make_TSS_Name
(Typ
, TSS_Init_Proc
);
385 end Make_Init_Proc_Name
;
391 function Make_TSS_Name
393 Nam
: TSS_Name_Type
) return Name_Id
396 Get_Name_String
(Chars
(Typ
));
397 Add_Char_To_Name_Buffer
(Nam
(1));
398 Add_Char_To_Name_Buffer
(Nam
(2));
402 -------------------------
403 -- Make_TSS_Name_Local --
404 -------------------------
406 function Make_TSS_Name_Local
408 Nam
: TSS_Name_Type
) return Name_Id
411 Get_Name_String
(Chars
(Typ
));
412 Add_Char_To_Name_Buffer
('_');
413 Add_Nat_To_Name_Buffer
(Increment_Serial_Number
);
414 Add_Char_To_Name_Buffer
(Nam
(1));
415 Add_Char_To_Name_Buffer
(Nam
(2));
417 end Make_TSS_Name_Local
;
423 function Same_TSS
(E1
, E2
: Entity_Id
) return Boolean is
430 Get_Last_Two_Chars
(Chars
(E1
), E1C1
, E1C2
);
431 Get_Last_Two_Chars
(Chars
(E2
), E2C1
, E2C2
);
447 procedure Set_Init_Proc
(Typ
: Entity_Id
; Init
: Entity_Id
) is
456 procedure Set_TSS
(Typ
: Entity_Id
; TSS
: Entity_Id
) is
458 -- Make sure body of subprogram is frozen
460 -- Skip this for Init_Proc with No_Default_Initialization, since the
461 -- Init proc is a dummy void entity in this case to be ignored.
463 if (Is_Init_Proc
(TSS
) or else Is_CPP_Init_Proc
(TSS
))
464 and then Restriction_Active
(No_Default_Initialization
)
468 -- Skip this if not in the same code unit (since it means we are using
469 -- an already existing TSS in another unit)
471 elsif not In_Same_Code_Unit
(Typ
, TSS
) then
474 -- Otherwise make sure body is frozen
477 Append_Freeze_Action
(Typ
, Unit_Declaration_Node
(TSS
));
489 function TSS
(Typ
: Entity_Id
; Nam
: TSS_Name_Type
) return Entity_Id
is
490 FN
: constant Node_Id
:= Freeze_Node
(Typ
);
498 elsif No
(TSS_Elist
(FN
)) then
502 Elmt
:= First_Elmt
(TSS_Elist
(FN
));
503 while Present
(Elmt
) loop
504 if Is_TSS
(Node
(Elmt
), Nam
) then
507 -- For stream subprograms, the TSS entity may be a renaming-
508 -- as-body of an already generated entity. Use that one rather
509 -- the one introduced by the renaming, which is an artifact of
510 -- current stream handling.
512 if Nkind
(Parent
(Parent
(Subp
))) =
513 N_Subprogram_Renaming_Declaration
515 Present
(Corresponding_Spec
(Parent
(Parent
(Subp
))))
517 return Corresponding_Spec
(Parent
(Parent
(Subp
)));