1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1996-2006, 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 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. --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
25 ------------------------------------------------------------------------------
27 with Alloc
; use Alloc
;
28 with Atree
; use Atree
;
29 with Debug
; use Debug
;
30 with Einfo
; use Einfo
;
31 with Namet
; use Namet
;
32 with Nlists
; use Nlists
;
33 with Nmake
; use Nmake
;
35 with Output
; use Output
;
36 with Sem_Eval
; use Sem_Eval
;
37 with Sem_Util
; use Sem_Util
;
38 with Sinfo
; use Sinfo
;
39 with Stand
; use Stand
;
40 with Stringt
; use Stringt
;
42 with Urealp
; use Urealp
;
44 package body Exp_Dbug
is
46 -- The following table is used to queue up the entities passed as
47 -- arguments to Qualify_Entity_Names for later processing when
48 -- Qualify_All_Entity_Names is called.
50 package Name_Qualify_Units
is new Table
.Table
(
51 Table_Component_Type
=> Node_Id
,
52 Table_Index_Type
=> Nat
,
54 Table_Initial
=> Alloc
.Name_Qualify_Units_Initial
,
55 Table_Increment
=> Alloc
.Name_Qualify_Units_Increment
,
56 Table_Name
=> "Name_Qualify_Units");
58 --------------------------------
59 -- Use of Qualification Flags --
60 --------------------------------
62 -- There are two flags used to keep track of qualification of entities
64 -- Has_Fully_Qualified_Name
67 -- The difference between these is as follows. Has_Qualified_Name is
68 -- set to indicate that the name has been qualified as required by the
69 -- spec of this package. As described there, this may involve the full
70 -- qualification for the name, but for some entities, notably procedure
71 -- local variables, this full qualification is not required.
73 -- The flag Has_Fully_Qualified_Name is set if indeed the name has been
74 -- fully qualified in the Ada sense. If Has_Fully_Qualified_Name is set,
75 -- then Has_Qualified_Name is also set, but the other way round is not
78 -- Consider the following example:
85 -- Here B is a procedure local variable, so it does not need fully
86 -- qualification. The flag Has_Qualified_Name will be set on the
87 -- first attempt to qualify B, to indicate that the job is done
88 -- and need not be redone.
90 -- But Y is qualified as x__y, since procedures are always fully
91 -- qualified, so the first time that an attempt is made to qualify
92 -- the name y, it will be replaced by x__y, and both flags are set.
94 -- Why the two flags? Well there are cases where we derive type names
95 -- from object names. As noted in the spec, type names are always
96 -- fully qualified. Suppose for example that the backend has to build
97 -- a padded type for variable B. then it will construct the PAD name
98 -- from B, but it requires full qualification, so the fully qualified
99 -- type name will be x__b___PAD. The two flags allow the circuit for
100 -- building this name to realize efficiently that b needs further
107 -- The string defined here (and its associated length) is used to
108 -- gather the homonym string that will be appended to Name_Buffer
109 -- when the name is complete. Strip_Suffixes appends to this string
110 -- as does Append_Homonym_Number, and Output_Homonym_Numbers_Suffix
111 -- appends the string to the end of Name_Buffer.
113 Homonym_Numbers
: String (1 .. 256);
114 Homonym_Len
: Natural := 0;
116 ----------------------
117 -- Local Procedures --
118 ----------------------
120 procedure Add_Uint_To_Buffer
(U
: Uint
);
121 -- Add image of universal integer to Name_Buffer, updating Name_Len
123 procedure Add_Real_To_Buffer
(U
: Ureal
);
124 -- Add nnn_ddd to Name_Buffer, where nnn and ddd are integer values of
125 -- the normalized numerator and denominator of the given real value.
127 procedure Append_Homonym_Number
(E
: Entity_Id
);
128 -- If the entity E has homonyms in the same scope, then make an entry
129 -- in the Homonym_Numbers array, bumping Homonym_Count accordingly.
131 function Bounds_Match_Size
(E
: Entity_Id
) return Boolean;
132 -- Determine whether the bounds of E match the size of the type. This is
133 -- used to determine whether encoding is required for a discrete type.
135 procedure Output_Homonym_Numbers_Suffix
;
136 -- If homonym numbers are stored, then output them into Name_Buffer
138 procedure Prepend_String_To_Buffer
(S
: String);
139 -- Prepend given string to the contents of the string buffer, updating
140 -- the value in Name_Len (i.e. string is added at start of buffer).
142 procedure Prepend_Uint_To_Buffer
(U
: Uint
);
143 -- Prepend image of universal integer to Name_Buffer, updating Name_Len
145 procedure Qualify_Entity_Name
(Ent
: Entity_Id
);
146 -- If not already done, replaces the Chars field of the given entity
147 -- with the appropriate fully qualified name.
149 procedure Strip_Suffixes
(BNPE_Suffix_Found
: in out Boolean);
150 -- Given an qualified entity name in Name_Buffer, remove any plain X or
151 -- X{nb} qualification suffix. The contents of Name_Buffer is not changed
152 -- but Name_Len may be adjusted on return to remove the suffix. If a
153 -- BNPE suffix is found and stripped, then BNPE_Suffix_Found is set to
154 -- True. If no suffix is found, then BNPE_Suffix_Found is not modified.
155 -- This routine also searches for a homonym suffix, and if one is found
156 -- it is also stripped, and the entries are added to the global homonym
157 -- list (Homonym_Numbers) so that they can later be put back.
159 ------------------------
160 -- Add_Real_To_Buffer --
161 ------------------------
163 procedure Add_Real_To_Buffer
(U
: Ureal
) is
165 Add_Uint_To_Buffer
(Norm_Num
(U
));
166 Add_Str_To_Name_Buffer
("_");
167 Add_Uint_To_Buffer
(Norm_Den
(U
));
168 end Add_Real_To_Buffer
;
170 ------------------------
171 -- Add_Uint_To_Buffer --
172 ------------------------
174 procedure Add_Uint_To_Buffer
(U
: Uint
) is
177 Add_Uint_To_Buffer
(-U
);
178 Add_Char_To_Name_Buffer
('m');
180 UI_Image
(U
, Decimal
);
181 Add_Str_To_Name_Buffer
(UI_Image_Buffer
(1 .. UI_Image_Length
));
183 end Add_Uint_To_Buffer
;
185 ---------------------------
186 -- Append_Homonym_Number --
187 ---------------------------
189 procedure Append_Homonym_Number
(E
: Entity_Id
) is
191 procedure Add_Nat_To_H
(Nr
: Nat
);
192 -- Little procedure to append Nr to Homonym_Numbers
198 procedure Add_Nat_To_H
(Nr
: Nat
) is
201 Add_Nat_To_H
(Nr
/ 10);
204 Homonym_Len
:= Homonym_Len
+ 1;
205 Homonym_Numbers
(Homonym_Len
) :=
206 Character'Val (Nr
mod 10 + Character'Pos ('0'));
209 -- Start of processing for Append_Homonym_Number
212 if Has_Homonym
(E
) then
214 H
: Entity_Id
:= Homonym
(E
);
218 while Present
(H
) loop
219 if Scope
(H
) = Scope
(E
) then
226 if Homonym_Len
> 0 then
227 Homonym_Len
:= Homonym_Len
+ 1;
228 Homonym_Numbers
(Homonym_Len
) := '_';
234 end Append_Homonym_Number
;
236 -----------------------
237 -- Bounds_Match_Size --
238 -----------------------
240 function Bounds_Match_Size
(E
: Entity_Id
) return Boolean is
244 if not Is_OK_Static_Subtype
(E
) then
247 elsif Is_Integer_Type
(E
)
248 and then Subtypes_Statically_Match
(E
, Base_Type
(E
))
252 -- Here we check if the static bounds match the natural size, which is
253 -- the size passed through with the debugging information. This is the
254 -- Esize rounded up to 8, 16, 32 or 64 as appropriate.
258 Umark
: constant Uintp
.Save_Mark
:= Uintp
.Mark
;
262 if Esize
(E
) <= 8 then
264 elsif Esize
(E
) <= 16 then
266 elsif Esize
(E
) <= 32 then
272 if Is_Modular_Integer_Type
(E
) or else Is_Enumeration_Type
(E
) then
274 Expr_Rep_Value
(Type_Low_Bound
(E
)) = 0
276 2 ** Siz
- Expr_Rep_Value
(Type_High_Bound
(E
)) = 1;
280 Expr_Rep_Value
(Type_Low_Bound
(E
)) + 2 ** (Siz
- 1) = 0
282 2 ** (Siz
- 1) - Expr_Rep_Value
(Type_High_Bound
(E
)) = 1;
289 end Bounds_Match_Size
;
291 --------------------------------
292 -- Debug_Renaming_Declaration --
293 --------------------------------
295 function Debug_Renaming_Declaration
(N
: Node_Id
) return Node_Id
is
296 Loc
: constant Source_Ptr
:= Sloc
(N
);
297 Ent
: constant Node_Id
:= Defining_Entity
(N
);
298 Nam
: constant Node_Id
:= Name
(N
);
306 function Output_Subscript
(N
: Node_Id
; S
: String) return Boolean;
307 -- Outputs a single subscript value as ?nnn (subscript is compile time
308 -- known value with value nnn) or as ?e (subscript is local constant
309 -- with name e), where S supplies the proper string to use for ?.
310 -- Returns False if the subscript is not of an appropriate type to
311 -- output in one of these two forms. The result is prepended to the
312 -- name stored in Name_Buffer.
314 ----------------------
315 -- Output_Subscript --
316 ----------------------
318 function Output_Subscript
(N
: Node_Id
; S
: String) return Boolean is
320 if Compile_Time_Known_Value
(N
) then
321 Prepend_Uint_To_Buffer
(Expr_Value
(N
));
323 elsif Nkind
(N
) = N_Identifier
324 and then Scope
(Entity
(N
)) = Scope
(Ent
)
325 and then Ekind
(Entity
(N
)) = E_Constant
327 Prepend_String_To_Buffer
(Get_Name_String
(Chars
(Entity
(N
))));
333 Prepend_String_To_Buffer
(S
);
335 end Output_Subscript
;
337 -- Start of processing for Debug_Renaming_Declaration
340 if not Comes_From_Source
(N
)
341 and then not Needs_Debug_Info
(Ent
)
346 -- Prepare entity name for type declaration
348 Get_Name_String
(Chars
(Ent
));
351 when N_Object_Renaming_Declaration
=>
352 Add_Str_To_Name_Buffer
("___XR");
354 when N_Exception_Renaming_Declaration
=>
355 Add_Str_To_Name_Buffer
("___XRE");
357 when N_Package_Renaming_Declaration
=>
358 Add_Str_To_Name_Buffer
("___XRP");
360 -- If it is a child unit create a fully qualified name, to
361 -- disambiguate multiple child units with the same name and
362 -- different parents.
364 if Is_Child_Unit
(Ent
) then
365 Prepend_String_To_Buffer
("__");
366 Prepend_String_To_Buffer
367 (Get_Name_String
(Chars
(Scope
(Ent
))));
376 -- Get renamed entity and compute suffix
386 when N_Expanded_Name
=>
388 -- The entity field for an N_Expanded_Name is on the expanded
389 -- name node itself, so we are done here too.
393 when N_Selected_Component
=>
394 Prepend_String_To_Buffer
395 (Get_Name_String
(Chars
(Selector_Name
(Ren
))));
396 Prepend_String_To_Buffer
("XR");
399 when N_Indexed_Component
=>
401 X
: Node_Id
:= Last
(Expressions
(Ren
));
404 while Present
(X
) loop
405 if not Output_Subscript
(X
, "XS") then
406 Set_Materialize_Entity
(Ent
);
418 Typ
:= Etype
(First_Index
(Etype
(Nam
)));
420 if not Output_Subscript
(Type_High_Bound
(Typ
), "XS") then
421 Set_Materialize_Entity
(Ent
);
425 if not Output_Subscript
(Type_Low_Bound
(Typ
), "XL") then
426 Set_Materialize_Entity
(Ent
);
432 when N_Explicit_Dereference
=>
433 Set_Materialize_Entity
(Ent
);
434 Prepend_String_To_Buffer
("XA");
437 -- For now, anything else simply results in no translation
440 Set_Materialize_Entity
(Ent
);
445 Prepend_String_To_Buffer
("___XE");
447 -- For now, the literal name contains only the suffix. The Entity_Id
448 -- value for the name is used to create a link from this literal name
449 -- to the renamed entity using the Debug_Renaming_Link field. Then the
450 -- Qualify_Entity_Name procedure uses this link to create the proper
451 -- fully qualified name.
453 -- The reason we do things this way is that we really need to copy the
454 -- qualification of the renamed entity, and it is really much easier to
455 -- do this after the renamed entity has itself been fully qualified.
457 Lit
:= Make_Defining_Identifier
(Loc
, Chars
=> Name_Enter
);
458 Set_Debug_Renaming_Link
(Lit
, Entity
(Ren
));
460 -- Return the appropriate enumeration type
462 Def
:= Make_Defining_Identifier
(Loc
, Chars
=> Rnm
);
464 Make_Full_Type_Declaration
(Loc
,
465 Defining_Identifier
=> Def
,
467 Make_Enumeration_Type_Definition
(Loc
,
468 Literals
=> New_List
(Lit
)));
470 Set_Needs_Debug_Info
(Def
);
471 Set_Needs_Debug_Info
(Lit
);
473 Set_Discard_Names
(Defining_Identifier
(Res
));
476 -- If we get an exception, just figure it is a case that we cannot
477 -- successfully handle using our current approach, since this is
478 -- only for debugging, no need to take the compilation with us!
482 return Make_Null_Statement
(Loc
);
483 end Debug_Renaming_Declaration
;
485 ----------------------
486 -- Get_Encoded_Name --
487 ----------------------
489 -- Note: see spec for details on encodings
491 procedure Get_Encoded_Name
(E
: Entity_Id
) is
492 Has_Suffix
: Boolean;
495 -- If not generating code, there is no need to create encoded
496 -- names, and problems when the back-end is called to annotate
497 -- types without full code generation. See comments at beginning
498 -- of Get_External_Name_With_Suffix for additional details.
500 if Operating_Mode
/= Generate_Code
then
504 Get_Name_String
(Chars
(E
));
506 -- Nothing to do if we do not have a type
510 -- Or if this is an enumeration base type
512 or else (Is_Enumeration_Type
(E
)
513 and then E
= Base_Type
(E
))
515 -- Or if this is a dummy type for a renaming
517 or else (Name_Len
>= 3 and then
518 Name_Buffer
(Name_Len
- 2 .. Name_Len
) = "_XR")
520 or else (Name_Len
>= 4 and then
521 (Name_Buffer
(Name_Len
- 3 .. Name_Len
) = "_XRE"
523 Name_Buffer
(Name_Len
- 3 .. Name_Len
) = "_XRP"))
525 -- For all these cases, just return the name unchanged
528 Name_Buffer
(Name_Len
+ 1) := ASCII
.Nul
;
536 if Is_Fixed_Point_Type
(E
) then
537 Get_External_Name_With_Suffix
(E
, "XF_");
538 Add_Real_To_Buffer
(Delta_Value
(E
));
540 if Small_Value
(E
) /= Delta_Value
(E
) then
541 Add_Str_To_Name_Buffer
("_");
542 Add_Real_To_Buffer
(Small_Value
(E
));
545 -- Vax floating-point case
547 elsif Vax_Float
(E
) then
548 if Digits_Value
(Base_Type
(E
)) = 6 then
549 Get_External_Name_With_Suffix
(E
, "XFF");
551 elsif Digits_Value
(Base_Type
(E
)) = 9 then
552 Get_External_Name_With_Suffix
(E
, "XFF");
555 pragma Assert
(Digits_Value
(Base_Type
(E
)) = 15);
556 Get_External_Name_With_Suffix
(E
, "XFG");
559 -- Discrete case where bounds do not match size
561 elsif Is_Discrete_Type
(E
)
562 and then not Bounds_Match_Size
(E
)
565 Lo
: constant Node_Id
:= Type_Low_Bound
(E
);
566 Hi
: constant Node_Id
:= Type_High_Bound
(E
);
568 Lo_Con
: constant Boolean := Compile_Time_Known_Value
(Lo
);
569 Hi_Con
: constant Boolean := Compile_Time_Known_Value
(Hi
);
571 Lo_Discr
: constant Boolean :=
572 Nkind
(Lo
) = N_Identifier
574 Ekind
(Entity
(Lo
)) = E_Discriminant
;
576 Hi_Discr
: constant Boolean :=
577 Nkind
(Hi
) = N_Identifier
579 Ekind
(Entity
(Hi
)) = E_Discriminant
;
581 Lo_Encode
: constant Boolean := Lo_Con
or Lo_Discr
;
582 Hi_Encode
: constant Boolean := Hi_Con
or Hi_Discr
;
584 Biased
: constant Boolean := Has_Biased_Representation
(E
);
588 Get_External_Name_With_Suffix
(E
, "XB");
590 Get_External_Name_With_Suffix
(E
, "XD");
593 if Lo_Encode
or Hi_Encode
then
595 Add_Str_To_Name_Buffer
("_");
599 Add_Str_To_Name_Buffer
("LU_");
601 Add_Str_To_Name_Buffer
("L_");
604 Add_Str_To_Name_Buffer
("U_");
609 Add_Uint_To_Buffer
(Expr_Rep_Value
(Lo
));
611 Get_Name_String_And_Append
(Chars
(Entity
(Lo
)));
614 if Lo_Encode
and Hi_Encode
then
615 Add_Str_To_Name_Buffer
("__");
619 Add_Uint_To_Buffer
(Expr_Rep_Value
(Hi
));
621 Get_Name_String_And_Append
(Chars
(Entity
(Hi
)));
626 -- For all other cases, the encoded name is the normal type name
630 Get_External_Name
(E
, Has_Suffix
);
633 if Debug_Flag_B
and then Has_Suffix
then
634 Write_Str
("**** type ");
635 Write_Name
(Chars
(E
));
636 Write_Str
(" is encoded as ");
637 Write_Str
(Name_Buffer
(1 .. Name_Len
));
641 Name_Buffer
(Name_Len
+ 1) := ASCII
.NUL
;
642 end Get_Encoded_Name
;
644 -----------------------
645 -- Get_External_Name --
646 -----------------------
648 procedure Get_External_Name
(Entity
: Entity_Id
; Has_Suffix
: Boolean) is
649 E
: Entity_Id
:= Entity
;
652 procedure Get_Qualified_Name_And_Append
(Entity
: Entity_Id
);
653 -- Appends fully qualified name of given entity to Name_Buffer
655 -----------------------------------
656 -- Get_Qualified_Name_And_Append --
657 -----------------------------------
659 procedure Get_Qualified_Name_And_Append
(Entity
: Entity_Id
) is
661 -- If the entity is a compilation unit, its scope is Standard,
662 -- there is no outer scope, and the no further qualification
665 -- If the front end has already computed a fully qualified name,
666 -- then it is also the case that no further qualification is
669 if Present
(Scope
(Scope
(Entity
)))
670 and then not Has_Fully_Qualified_Name
(Entity
)
672 Get_Qualified_Name_And_Append
(Scope
(Entity
));
673 Add_Str_To_Name_Buffer
("__");
674 Get_Name_String_And_Append
(Chars
(Entity
));
675 Append_Homonym_Number
(Entity
);
678 Get_Name_String_And_Append
(Chars
(Entity
));
680 end Get_Qualified_Name_And_Append
;
682 -- Start of processing for Get_External_Name
688 -- If this is a child unit, we want the child
690 if Nkind
(E
) = N_Defining_Program_Unit_Name
then
691 E
:= Defining_Identifier
(Entity
);
696 -- Case of interface name being used
698 if (Kind
= E_Procedure
or else
699 Kind
= E_Function
or else
700 Kind
= E_Constant
or else
701 Kind
= E_Variable
or else
703 and then Present
(Interface_Name
(E
))
704 and then No
(Address_Clause
(E
))
705 and then not Has_Suffix
707 Add_String_To_Name_Buffer
(Strval
(Interface_Name
(E
)));
709 -- All other cases besides the interface name case
712 -- If this is a library level subprogram (i.e. a subprogram that is a
713 -- compilation unit other than a subunit), then we prepend _ada_ to
714 -- ensure distinctions required as described in the spec.
716 -- Check explicitly for child units, because those are not flagged
717 -- as Compilation_Units by lib. Should they be ???
720 and then (Is_Compilation_Unit
(E
) or Is_Child_Unit
(E
))
721 and then not Has_Suffix
723 Add_Str_To_Name_Buffer
("_ada_");
726 -- If the entity is a subprogram instance that is not a compilation
727 -- unit, generate the name of the original Ada entity, which is the
730 if Is_Generic_Instance
(E
)
731 and then Is_Subprogram
(E
)
732 and then not Is_Compilation_Unit
(Scope
(E
))
733 and then (Ekind
(Scope
(E
)) = E_Package
735 Ekind
(Scope
(E
)) = E_Package_Body
)
736 and then Present
(Related_Instance
(Scope
(E
)))
738 E
:= Related_Instance
(Scope
(E
));
741 Get_Qualified_Name_And_Append
(E
);
744 Name_Buffer
(Name_Len
+ 1) := ASCII
.Nul
;
745 end Get_External_Name
;
747 -----------------------------------
748 -- Get_External_Name_With_Suffix --
749 -----------------------------------
751 procedure Get_External_Name_With_Suffix
755 Has_Suffix
: constant Boolean := (Suffix
/= "");
758 -- If we are not in code generation mode, this procedure may still be
759 -- called from Back_End (more specifically - from gigi for doing type
760 -- representation annotation or some representation-specific checks).
761 -- But in this mode there is no need to mess with external names.
763 -- Furthermore, the call causes difficulties in this case because the
764 -- string representing the homonym number is not correctly reset as a
765 -- part of the call to Output_Homonym_Numbers_Suffix (which is not
768 if Operating_Mode
/= Generate_Code
then
772 Get_External_Name
(Entity
, Has_Suffix
);
775 Add_Str_To_Name_Buffer
("___");
776 Add_Str_To_Name_Buffer
(Suffix
);
777 Name_Buffer
(Name_Len
+ 1) := ASCII
.Nul
;
779 end Get_External_Name_With_Suffix
;
781 --------------------------
782 -- Get_Variant_Encoding --
783 --------------------------
785 procedure Get_Variant_Encoding
(V
: Node_Id
) is
788 procedure Choice_Val
(Typ
: Character; Choice
: Node_Id
);
789 -- Output encoded value for a single choice value. Typ is the key
790 -- character ('S', 'F', or 'T') that precedes the choice value.
796 procedure Choice_Val
(Typ
: Character; Choice
: Node_Id
) is
798 if Nkind
(Choice
) = N_Integer_Literal
then
799 Add_Char_To_Name_Buffer
(Typ
);
800 Add_Uint_To_Buffer
(Intval
(Choice
));
802 -- Character literal with no entity present (this is the case
803 -- Standard.Character or Standard.Wide_Character as root type)
805 elsif Nkind
(Choice
) = N_Character_Literal
806 and then No
(Entity
(Choice
))
808 Add_Char_To_Name_Buffer
(Typ
);
809 Add_Uint_To_Buffer
(Char_Literal_Value
(Choice
));
813 Ent
: constant Entity_Id
:= Entity
(Choice
);
816 if Ekind
(Ent
) = E_Enumeration_Literal
then
817 Add_Char_To_Name_Buffer
(Typ
);
818 Add_Uint_To_Buffer
(Enumeration_Rep
(Ent
));
821 pragma Assert
(Ekind
(Ent
) = E_Constant
);
822 Choice_Val
(Typ
, Constant_Value
(Ent
));
828 -- Start of processing for Get_Variant_Encoding
833 Choice
:= First
(Discrete_Choices
(V
));
834 while Present
(Choice
) loop
835 if Nkind
(Choice
) = N_Others_Choice
then
836 Add_Char_To_Name_Buffer
('O');
838 elsif Nkind
(Choice
) = N_Range
then
839 Choice_Val
('R', Low_Bound
(Choice
));
840 Choice_Val
('T', High_Bound
(Choice
));
842 elsif Is_Entity_Name
(Choice
)
843 and then Is_Type
(Entity
(Choice
))
845 Choice_Val
('R', Type_Low_Bound
(Entity
(Choice
)));
846 Choice_Val
('T', Type_High_Bound
(Entity
(Choice
)));
848 elsif Nkind
(Choice
) = N_Subtype_Indication
then
850 Rang
: constant Node_Id
:=
851 Range_Expression
(Constraint
(Choice
));
853 Choice_Val
('R', Low_Bound
(Rang
));
854 Choice_Val
('T', High_Bound
(Rang
));
858 Choice_Val
('S', Choice
);
864 Name_Buffer
(Name_Len
+ 1) := ASCII
.NUL
;
868 VP
: constant Node_Id
:= Parent
(V
); -- Variant_Part
869 CL
: constant Node_Id
:= Parent
(VP
); -- Component_List
870 RD
: constant Node_Id
:= Parent
(CL
); -- Record_Definition
871 FT
: constant Node_Id
:= Parent
(RD
); -- Full_Type_Declaration
874 Write_Str
("**** variant for type ");
875 Write_Name
(Chars
(Defining_Identifier
(FT
)));
876 Write_Str
(" is encoded as ");
877 Write_Str
(Name_Buffer
(1 .. Name_Len
));
881 end Get_Variant_Encoding
;
883 ------------------------------------
884 -- Get_Secondary_DT_External_Name --
885 ------------------------------------
887 procedure Get_Secondary_DT_External_Name
889 Ancestor_Typ
: Entity_Id
;
893 Get_External_Name
(Typ
, Has_Suffix
=> False);
895 if Ancestor_Typ
/= Typ
then
897 Len
: constant Natural := Name_Len
;
898 Save_Str
: constant String (1 .. Name_Len
)
899 := Name_Buffer
(1 .. Name_Len
);
901 Get_External_Name
(Ancestor_Typ
, Has_Suffix
=> False);
903 -- Append the extended name of the ancestor to the
904 -- extended name of Typ
906 Name_Buffer
(Len
+ 2 .. Len
+ Name_Len
+ 1) :=
907 Name_Buffer
(1 .. Name_Len
);
908 Name_Buffer
(1 .. Len
) := Save_Str
;
909 Name_Buffer
(Len
+ 1) := '_';
910 Name_Len
:= Len
+ Name_Len
+ 1;
914 Add_Nat_To_Name_Buffer
(Suffix_Index
);
915 end Get_Secondary_DT_External_Name
;
917 ---------------------------------
918 -- Make_Packed_Array_Type_Name --
919 ---------------------------------
921 function Make_Packed_Array_Type_Name
927 Get_Name_String
(Chars
(Typ
));
928 Add_Str_To_Name_Buffer
("___XP");
929 Add_Uint_To_Buffer
(Csize
);
931 end Make_Packed_Array_Type_Name
;
933 -----------------------------------
934 -- Output_Homonym_Numbers_Suffix --
935 -----------------------------------
937 procedure Output_Homonym_Numbers_Suffix
is
941 if Homonym_Len
> 0 then
943 -- Check for all 1's, in which case we do not output
947 exit when Homonym_Numbers
(J
) /= '1';
949 -- If we reached end of string we do not output
951 if J
= Homonym_Len
then
956 exit when Homonym_Numbers
(J
+ 1) /= '_';
960 -- If we exit the loop then suffix must be output
962 Add_Str_To_Name_Buffer
("__");
963 Add_Str_To_Name_Buffer
(Homonym_Numbers
(1 .. Homonym_Len
));
966 end Output_Homonym_Numbers_Suffix
;
968 ------------------------------
969 -- Prepend_String_To_Buffer --
970 ------------------------------
972 procedure Prepend_String_To_Buffer
(S
: String) is
973 N
: constant Integer := S
'Length;
975 Name_Buffer
(1 + N
.. Name_Len
+ N
) := Name_Buffer
(1 .. Name_Len
);
976 Name_Buffer
(1 .. N
) := S
;
977 Name_Len
:= Name_Len
+ N
;
978 end Prepend_String_To_Buffer
;
980 ----------------------------
981 -- Prepend_Uint_To_Buffer --
982 ----------------------------
984 procedure Prepend_Uint_To_Buffer
(U
: Uint
) is
987 Prepend_String_To_Buffer
("m");
988 Prepend_Uint_To_Buffer
(-U
);
990 UI_Image
(U
, Decimal
);
991 Prepend_String_To_Buffer
(UI_Image_Buffer
(1 .. UI_Image_Length
));
993 end Prepend_Uint_To_Buffer
;
995 ------------------------------
996 -- Qualify_All_Entity_Names --
997 ------------------------------
999 procedure Qualify_All_Entity_Names
is
1004 for J
in Name_Qualify_Units
.First
.. Name_Qualify_Units
.Last
loop
1005 E
:= Defining_Entity
(Name_Qualify_Units
.Table
(J
));
1006 Qualify_Entity_Name
(E
);
1008 Ent
:= First_Entity
(E
);
1009 while Present
(Ent
) loop
1010 Qualify_Entity_Name
(Ent
);
1013 -- There are odd cases where Last_Entity (E) = E. This happens
1014 -- in the case of renaming of packages. This test avoids getting
1015 -- stuck in such cases.
1020 end Qualify_All_Entity_Names
;
1022 -------------------------
1023 -- Qualify_Entity_Name --
1024 -------------------------
1026 procedure Qualify_Entity_Name
(Ent
: Entity_Id
) is
1028 Full_Qualify_Name
: String (1 .. Name_Buffer
'Length);
1029 Full_Qualify_Len
: Natural := 0;
1030 -- Used to accumulate fully qualified name of subprogram
1032 procedure Fully_Qualify_Name
(E
: Entity_Id
);
1033 -- Used to qualify a subprogram or type name, where full
1034 -- qualification up to Standard is always used. Name is set
1035 -- in Full_Qualify_Name with the length in Full_Qualify_Len.
1036 -- Note that this routine does not prepend the _ada_ string
1037 -- required for library subprograms (this is done in the back end).
1039 function Is_BNPE
(S
: Entity_Id
) return Boolean;
1040 -- Determines if S is a BNPE, i.e. Body-Nested Package Entity, which
1041 -- is defined to be a package which is immediately nested within a
1044 function Qualify_Needed
(S
: Entity_Id
) return Boolean;
1045 -- Given a scope, determines if the scope is to be included in the
1046 -- fully qualified name, True if so, False if not.
1048 procedure Set_BNPE_Suffix
(E
: Entity_Id
);
1049 -- Recursive routine to append the BNPE qualification suffix. Works
1050 -- from right to left with E being the current entity in the list.
1051 -- The result does NOT have the trailing n's and trailing b stripped.
1052 -- The caller must do this required stripping.
1054 procedure Set_Entity_Name
(E
: Entity_Id
);
1055 -- Internal recursive routine that does most of the work. This routine
1056 -- leaves the result sitting in Name_Buffer and Name_Len.
1058 BNPE_Suffix_Needed
: Boolean := False;
1059 -- Set true if a body-nested package entity suffix is required
1061 Save_Chars
: constant Name_Id
:= Chars
(Ent
);
1062 -- Save original name
1064 ------------------------
1065 -- Fully_Qualify_Name --
1066 ------------------------
1068 procedure Fully_Qualify_Name
(E
: Entity_Id
) is
1069 Discard
: Boolean := False;
1072 -- Ignore empty entry (can happen in error cases)
1077 -- If this we are qualifying entities local to a generic
1078 -- instance, use the name of the original instantiation,
1079 -- not that of the anonymous subprogram in the wrapper
1080 -- package, so that gdb doesn't have to know about these.
1082 elsif Is_Generic_Instance
(E
)
1083 and then Is_Subprogram
(E
)
1084 and then not Comes_From_Source
(E
)
1085 and then not Is_Compilation_Unit
(Scope
(E
))
1087 Fully_Qualify_Name
(Related_Instance
(Scope
(E
)));
1091 -- If we reached fully qualified name, then just copy it
1093 if Has_Fully_Qualified_Name
(E
) then
1094 Get_Name_String
(Chars
(E
));
1095 Strip_Suffixes
(Discard
);
1096 Full_Qualify_Name
(1 .. Name_Len
) := Name_Buffer
(1 .. Name_Len
);
1097 Full_Qualify_Len
:= Name_Len
;
1098 Set_Has_Fully_Qualified_Name
(Ent
);
1100 -- Case of non-fully qualified name
1103 if Scope
(E
) = Standard_Standard
then
1104 Set_Has_Fully_Qualified_Name
(Ent
);
1106 Fully_Qualify_Name
(Scope
(E
));
1107 Full_Qualify_Name
(Full_Qualify_Len
+ 1) := '_';
1108 Full_Qualify_Name
(Full_Qualify_Len
+ 2) := '_';
1109 Full_Qualify_Len
:= Full_Qualify_Len
+ 2;
1112 if Has_Qualified_Name
(E
) then
1113 Get_Unqualified_Name_String
(Chars
(E
));
1115 Get_Name_String
(Chars
(E
));
1118 -- Here we do one step of the qualification
1121 (Full_Qualify_Len
+ 1 .. Full_Qualify_Len
+ Name_Len
) :=
1122 Name_Buffer
(1 .. Name_Len
);
1123 Full_Qualify_Len
:= Full_Qualify_Len
+ Name_Len
;
1124 Append_Homonym_Number
(E
);
1128 BNPE_Suffix_Needed
:= True;
1130 end Fully_Qualify_Name
;
1136 function Is_BNPE
(S
: Entity_Id
) return Boolean is
1139 Ekind
(S
) = E_Package
1140 and then Is_Package_Body_Entity
(S
);
1143 --------------------
1144 -- Qualify_Needed --
1145 --------------------
1147 function Qualify_Needed
(S
: Entity_Id
) return Boolean is
1149 -- If we got all the way to Standard, then we have certainly
1150 -- fully qualified the name, so set the flag appropriately,
1151 -- and then return False, since we are most certainly done!
1153 if S
= Standard_Standard
then
1154 Set_Has_Fully_Qualified_Name
(Ent
, True);
1157 -- Otherwise figure out if further qualification is required
1163 Ekind
(Ent
) = E_Subprogram_Body
1165 (Ekind
(S
) /= E_Block
1166 and then not Is_Dynamic_Scope
(S
));
1170 ---------------------
1171 -- Set_BNPE_Suffix --
1172 ---------------------
1174 procedure Set_BNPE_Suffix
(E
: Entity_Id
) is
1175 S
: constant Entity_Id
:= Scope
(E
);
1178 if Qualify_Needed
(S
) then
1179 Set_BNPE_Suffix
(S
);
1182 Add_Char_To_Name_Buffer
('b');
1184 Add_Char_To_Name_Buffer
('n');
1188 Add_Char_To_Name_Buffer
('X');
1190 end Set_BNPE_Suffix
;
1192 ---------------------
1193 -- Set_Entity_Name --
1194 ---------------------
1196 procedure Set_Entity_Name
(E
: Entity_Id
) is
1197 S
: constant Entity_Id
:= Scope
(E
);
1200 -- If we reach an already qualified name, just take the encoding
1201 -- except that we strip the package body suffixes, since these
1202 -- will be separately put on later.
1204 if Has_Qualified_Name
(E
) then
1205 Get_Name_String_And_Append
(Chars
(E
));
1206 Strip_Suffixes
(BNPE_Suffix_Needed
);
1208 -- If the top level name we are adding is itself fully
1209 -- qualified, then that means that the name that we are
1210 -- preparing for the Fully_Qualify_Name call will also
1211 -- generate a fully qualified name.
1213 if Has_Fully_Qualified_Name
(E
) then
1214 Set_Has_Fully_Qualified_Name
(Ent
);
1217 -- Case where upper level name is not encoded yet
1220 -- Recurse if further qualification required
1222 if Qualify_Needed
(S
) then
1223 Set_Entity_Name
(S
);
1224 Add_Str_To_Name_Buffer
("__");
1227 -- Otherwise get name and note if it is a NPBE
1229 Get_Name_String_And_Append
(Chars
(E
));
1232 BNPE_Suffix_Needed
:= True;
1235 Append_Homonym_Number
(E
);
1237 end Set_Entity_Name
;
1239 -- Start of processing for Qualify_Entity_Name
1242 if Has_Qualified_Name
(Ent
) then
1245 -- Here is where we create the proper link for renaming
1247 elsif Ekind
(Ent
) = E_Enumeration_Literal
1248 and then Present
(Debug_Renaming_Link
(Ent
))
1251 Qualify_Entity_Name
(Debug_Renaming_Link
(Ent
));
1252 Get_Name_String
(Chars
(Ent
));
1253 Prepend_String_To_Buffer
1254 (Get_Name_String
(Chars
(Debug_Renaming_Link
(Ent
))));
1255 Set_Chars
(Ent
, Name_Enter
);
1256 Set_Has_Qualified_Name
(Ent
);
1259 elsif Is_Subprogram
(Ent
)
1260 or else Ekind
(Ent
) = E_Subprogram_Body
1261 or else Is_Type
(Ent
)
1263 Fully_Qualify_Name
(Ent
);
1264 Name_Len
:= Full_Qualify_Len
;
1265 Name_Buffer
(1 .. Name_Len
) := Full_Qualify_Name
(1 .. Name_Len
);
1267 elsif Qualify_Needed
(Scope
(Ent
)) then
1269 Set_Entity_Name
(Ent
);
1272 Set_Has_Qualified_Name
(Ent
);
1276 -- Fall through with a fully qualified name in Name_Buffer/Name_Len
1278 Output_Homonym_Numbers_Suffix
;
1280 -- Add body-nested package suffix if required
1282 if BNPE_Suffix_Needed
1283 and then Ekind
(Ent
) /= E_Enumeration_Literal
1285 Set_BNPE_Suffix
(Ent
);
1287 -- Strip trailing n's and last trailing b as required. note that
1288 -- we know there is at least one b, or no suffix would be generated.
1290 while Name_Buffer
(Name_Len
) = 'n' loop
1291 Name_Len
:= Name_Len
- 1;
1294 Name_Len
:= Name_Len
- 1;
1297 Set_Chars
(Ent
, Name_Enter
);
1298 Set_Has_Qualified_Name
(Ent
);
1300 if Debug_Flag_BB
then
1302 Write_Name
(Save_Chars
);
1303 Write_Str
(" qualified as ");
1304 Write_Name
(Chars
(Ent
));
1307 end Qualify_Entity_Name
;
1309 --------------------------
1310 -- Qualify_Entity_Names --
1311 --------------------------
1313 procedure Qualify_Entity_Names
(N
: Node_Id
) is
1315 Name_Qualify_Units
.Append
(N
);
1316 end Qualify_Entity_Names
;
1318 --------------------
1319 -- Strip_Suffixes --
1320 --------------------
1322 procedure Strip_Suffixes
(BNPE_Suffix_Found
: in out Boolean) is
1326 -- Search for and strip BNPE suffix
1328 for J
in reverse 2 .. Name_Len
loop
1329 if Name_Buffer
(J
) = 'X' then
1331 BNPE_Suffix_Found
:= True;
1335 exit when Name_Buffer
(J
) /= 'b' and then Name_Buffer
(J
) /= 'n';
1338 -- Search for and strip homonym numbers suffix
1340 for J
in reverse 2 .. Name_Len
- 2 loop
1341 if Name_Buffer
(J
) = '_'
1342 and then Name_Buffer
(J
+ 1) = '_'
1344 if Name_Buffer
(J
+ 2) in '0' .. '9' then
1345 if Homonym_Len
> 0 then
1346 Homonym_Len
:= Homonym_Len
+ 1;
1347 Homonym_Numbers
(Homonym_Len
) := '-';
1350 SL
:= Name_Len
- (J
+ 1);
1352 Homonym_Numbers
(Homonym_Len
+ 1 .. Homonym_Len
+ SL
) :=
1353 Name_Buffer
(J
+ 2 .. Name_Len
);
1355 Homonym_Len
:= Homonym_Len
+ SL
;