1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1996-2014, 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 Alloc
; use Alloc
;
27 with Atree
; use Atree
;
28 with Debug
; use Debug
;
29 with Einfo
; use Einfo
;
30 with Nlists
; use Nlists
;
31 with Nmake
; use Nmake
;
33 with Output
; use Output
;
34 with Sem_Aux
; use Sem_Aux
;
35 with Sem_Eval
; use Sem_Eval
;
36 with Sem_Util
; use Sem_Util
;
37 with Sinfo
; use Sinfo
;
38 with Stand
; use Stand
;
39 with Stringt
; use Stringt
;
41 with Targparm
; use Targparm
;
42 with Tbuild
; use Tbuild
;
43 with Urealp
; use Urealp
;
45 package body Exp_Dbug
is
47 -- The following table is used to queue up the entities passed as
48 -- arguments to Qualify_Entity_Names for later processing when
49 -- Qualify_All_Entity_Names is called.
51 package Name_Qualify_Units
is new Table
.Table
(
52 Table_Component_Type
=> Node_Id
,
53 Table_Index_Type
=> Nat
,
55 Table_Initial
=> Alloc
.Name_Qualify_Units_Initial
,
56 Table_Increment
=> Alloc
.Name_Qualify_Units_Increment
,
57 Table_Name
=> "Name_Qualify_Units");
59 --------------------------------
60 -- Use of Qualification Flags --
61 --------------------------------
63 -- There are two flags used to keep track of qualification of entities
65 -- Has_Fully_Qualified_Name
68 -- The difference between these is as follows. Has_Qualified_Name is
69 -- set to indicate that the name has been qualified as required by the
70 -- spec of this package. As described there, this may involve the full
71 -- qualification for the name, but for some entities, notably procedure
72 -- local variables, this full qualification is not required.
74 -- The flag Has_Fully_Qualified_Name is set if indeed the name has been
75 -- fully qualified in the Ada sense. If Has_Fully_Qualified_Name is set,
76 -- then Has_Qualified_Name is also set, but the other way round is not
79 -- Consider the following example:
86 -- Here B is a procedure local variable, so it does not need fully
87 -- qualification. The flag Has_Qualified_Name will be set on the
88 -- first attempt to qualify B, to indicate that the job is done
89 -- and need not be redone.
91 -- But Y is qualified as x__y, since procedures are always fully
92 -- qualified, so the first time that an attempt is made to qualify
93 -- the name y, it will be replaced by x__y, and both flags are set.
95 -- Why the two flags? Well there are cases where we derive type names
96 -- from object names. As noted in the spec, type names are always
97 -- fully qualified. Suppose for example that the backend has to build
98 -- a padded type for variable B. then it will construct the PAD name
99 -- from B, but it requires full qualification, so the fully qualified
100 -- type name will be x__b___PAD. The two flags allow the circuit for
101 -- building this name to realize efficiently that b needs further
108 -- The string defined here (and its associated length) is used to gather
109 -- the homonym string that will be appended to Name_Buffer when the name
110 -- is complete. Strip_Suffixes appends to this string as does
111 -- Append_Homonym_Number, and Output_Homonym_Numbers_Suffix appends the
112 -- string to the end of Name_Buffer.
114 Homonym_Numbers
: String (1 .. 256);
115 Homonym_Len
: Natural := 0;
117 ----------------------
118 -- Local Procedures --
119 ----------------------
121 procedure Add_Uint_To_Buffer
(U
: Uint
);
122 -- Add image of universal integer to Name_Buffer, updating Name_Len
124 procedure Add_Real_To_Buffer
(U
: Ureal
);
125 -- Add nnn_ddd to Name_Buffer, where nnn and ddd are integer values of
126 -- the normalized numerator and denominator of the given real value.
128 procedure Append_Homonym_Number
(E
: Entity_Id
);
129 -- If the entity E has homonyms in the same scope, then make an entry
130 -- in the Homonym_Numbers array, bumping Homonym_Count accordingly.
132 function Bounds_Match_Size
(E
: Entity_Id
) return Boolean;
133 -- Determine whether the bounds of E match the size of the type. This is
134 -- used to determine whether encoding is required for a discrete type.
136 procedure Output_Homonym_Numbers_Suffix
;
137 -- If homonym numbers are stored, then output them into Name_Buffer
139 procedure Prepend_String_To_Buffer
(S
: String);
140 -- Prepend given string to the contents of the string buffer, updating
141 -- the value in Name_Len (i.e. string is added at start of buffer).
143 procedure Prepend_Uint_To_Buffer
(U
: Uint
);
144 -- Prepend image of universal integer to Name_Buffer, updating Name_Len
146 procedure Qualify_Entity_Name
(Ent
: Entity_Id
);
147 -- If not already done, replaces the Chars field of the given entity
148 -- with the appropriate fully qualified name.
150 procedure Reset_Buffers
;
151 -- Reset the contents of Name_Buffer and Homonym_Numbers by setting their
152 -- respective lengths to zero.
154 procedure Strip_Suffixes
(BNPE_Suffix_Found
: in out Boolean);
155 -- Given an qualified entity name in Name_Buffer, remove any plain X or
156 -- X{nb} qualification suffix. The contents of Name_Buffer is not changed
157 -- but Name_Len may be adjusted on return to remove the suffix. If a
158 -- BNPE suffix is found and stripped, then BNPE_Suffix_Found is set to
159 -- True. If no suffix is found, then BNPE_Suffix_Found is not modified.
160 -- This routine also searches for a homonym suffix, and if one is found
161 -- it is also stripped, and the entries are added to the global homonym
162 -- list (Homonym_Numbers) so that they can later be put back.
164 ------------------------
165 -- Add_Real_To_Buffer --
166 ------------------------
168 procedure Add_Real_To_Buffer
(U
: Ureal
) is
170 Add_Uint_To_Buffer
(Norm_Num
(U
));
171 Add_Str_To_Name_Buffer
("_");
172 Add_Uint_To_Buffer
(Norm_Den
(U
));
173 end Add_Real_To_Buffer
;
175 ------------------------
176 -- Add_Uint_To_Buffer --
177 ------------------------
179 procedure Add_Uint_To_Buffer
(U
: Uint
) is
182 Add_Uint_To_Buffer
(-U
);
183 Add_Char_To_Name_Buffer
('m');
185 UI_Image
(U
, Decimal
);
186 Add_Str_To_Name_Buffer
(UI_Image_Buffer
(1 .. UI_Image_Length
));
188 end Add_Uint_To_Buffer
;
190 ---------------------------
191 -- Append_Homonym_Number --
192 ---------------------------
194 procedure Append_Homonym_Number
(E
: Entity_Id
) is
196 procedure Add_Nat_To_H
(Nr
: Nat
);
197 -- Little procedure to append Nr to Homonym_Numbers
203 procedure Add_Nat_To_H
(Nr
: Nat
) is
206 Add_Nat_To_H
(Nr
/ 10);
209 Homonym_Len
:= Homonym_Len
+ 1;
210 Homonym_Numbers
(Homonym_Len
) :=
211 Character'Val (Nr
mod 10 + Character'Pos ('0'));
214 -- Start of processing for Append_Homonym_Number
217 if Has_Homonym
(E
) then
219 H
: Entity_Id
:= Homonym
(E
);
223 while Present
(H
) loop
224 if Scope
(H
) = Scope
(E
) then
231 if Homonym_Len
> 0 then
232 Homonym_Len
:= Homonym_Len
+ 1;
233 Homonym_Numbers
(Homonym_Len
) := '_';
239 end Append_Homonym_Number
;
241 -----------------------
242 -- Bounds_Match_Size --
243 -----------------------
245 function Bounds_Match_Size
(E
: Entity_Id
) return Boolean is
249 if not Is_OK_Static_Subtype
(E
) then
252 elsif Is_Integer_Type
(E
)
253 and then Subtypes_Statically_Match
(E
, Base_Type
(E
))
257 -- Here we check if the static bounds match the natural size, which is
258 -- the size passed through with the debugging information. This is the
259 -- Esize rounded up to 8, 16, 32 or 64 as appropriate.
263 Umark
: constant Uintp
.Save_Mark
:= Uintp
.Mark
;
267 if Esize
(E
) <= 8 then
269 elsif Esize
(E
) <= 16 then
271 elsif Esize
(E
) <= 32 then
277 if Is_Modular_Integer_Type
(E
) or else Is_Enumeration_Type
(E
) then
279 Expr_Rep_Value
(Type_Low_Bound
(E
)) = 0
281 2 ** Siz
- Expr_Rep_Value
(Type_High_Bound
(E
)) = 1;
285 Expr_Rep_Value
(Type_Low_Bound
(E
)) + 2 ** (Siz
- 1) = 0
287 2 ** (Siz
- 1) - Expr_Rep_Value
(Type_High_Bound
(E
)) = 1;
294 end Bounds_Match_Size
;
296 --------------------------------
297 -- Debug_Renaming_Declaration --
298 --------------------------------
300 function Debug_Renaming_Declaration
(N
: Node_Id
) return Node_Id
is
301 Loc
: constant Source_Ptr
:= Sloc
(N
);
302 Ent
: constant Node_Id
:= Defining_Entity
(N
);
303 Nam
: constant Node_Id
:= Name
(N
);
309 Enable
: Boolean := Nkind
(N
) = N_Package_Renaming_Declaration
;
310 -- By default, we do not generate an encoding for renaming. This is
311 -- however done (in which case this is set to True) in a few cases:
312 -- - when a package is renamed,
313 -- - when the renaming involves a packed array,
314 -- - when the renaming involves a packed record.
316 procedure Enable_If_Packed_Array
(N
: Node_Id
);
317 -- Enable encoding generation if N is a packed array
319 function Output_Subscript
(N
: Node_Id
; S
: String) return Boolean;
320 -- Outputs a single subscript value as ?nnn (subscript is compile time
321 -- known value with value nnn) or as ?e (subscript is local constant
322 -- with name e), where S supplies the proper string to use for ?.
323 -- Returns False if the subscript is not of an appropriate type to
324 -- output in one of these two forms. The result is prepended to the
325 -- name stored in Name_Buffer.
327 ----------------------------
328 -- Enable_If_Packed_Array --
329 ----------------------------
331 procedure Enable_If_Packed_Array
(N
: Node_Id
) is
332 T
: constant Entity_Id
:= Etype
(N
);
335 Enable
or else (Ekind
(T
) in Array_Kind
336 and then Present
(Packed_Array_Impl_Type
(T
)));
337 end Enable_If_Packed_Array
;
339 ----------------------
340 -- Output_Subscript --
341 ----------------------
343 function Output_Subscript
(N
: Node_Id
; S
: String) return Boolean is
345 if Compile_Time_Known_Value
(N
) then
346 Prepend_Uint_To_Buffer
(Expr_Value
(N
));
348 elsif Nkind
(N
) = N_Identifier
349 and then Scope
(Entity
(N
)) = Scope
(Ent
)
350 and then Ekind
(Entity
(N
)) = E_Constant
352 Prepend_String_To_Buffer
(Get_Name_String
(Chars
(Entity
(N
))));
358 Prepend_String_To_Buffer
(S
);
360 end Output_Subscript
;
362 -- Start of processing for Debug_Renaming_Declaration
365 if not Comes_From_Source
(N
)
366 and then not Needs_Debug_Info
(Ent
)
371 -- Do not output those local variables in VM case, as this does not
372 -- help debugging (they are just unused), and might lead to duplicated
373 -- local variable names.
375 if VM_Target
/= No_VM
then
379 -- Get renamed entity and compute suffix
389 when N_Expanded_Name
=>
391 -- The entity field for an N_Expanded_Name is on the expanded
392 -- name node itself, so we are done here too.
396 when N_Selected_Component
=>
397 Enable
:= Enable
or else Is_Packed
(Etype
(Prefix
(Ren
)));
398 Prepend_String_To_Buffer
399 (Get_Name_String
(Chars
(Selector_Name
(Ren
))));
400 Prepend_String_To_Buffer
("XR");
403 when N_Indexed_Component
=>
408 Enable_If_Packed_Array
(Prefix
(Ren
));
410 X
:= Last
(Expressions
(Ren
));
411 while Present
(X
) loop
412 if not Output_Subscript
(X
, "XS") then
413 Set_Materialize_Entity
(Ent
);
424 Enable_If_Packed_Array
(Prefix
(Ren
));
425 Typ
:= Etype
(First_Index
(Etype
(Nam
)));
427 if not Output_Subscript
(Type_High_Bound
(Typ
), "XS") then
428 Set_Materialize_Entity
(Ent
);
432 if not Output_Subscript
(Type_Low_Bound
(Typ
), "XL") then
433 Set_Materialize_Entity
(Ent
);
439 when N_Explicit_Dereference
=>
440 Prepend_String_To_Buffer
("XA");
443 -- For now, anything else simply results in no translation
446 Set_Materialize_Entity
(Ent
);
451 -- If we found no reason here to emit an encoding, stop now
454 Set_Materialize_Entity
(Ent
);
458 Prepend_String_To_Buffer
("___XE");
460 -- Include the designation of the form of renaming
463 when N_Object_Renaming_Declaration
=>
464 Prepend_String_To_Buffer
("___XR");
466 when N_Exception_Renaming_Declaration
=>
467 Prepend_String_To_Buffer
("___XRE");
469 when N_Package_Renaming_Declaration
=>
470 Prepend_String_To_Buffer
("___XRP");
476 -- Add the name of the renaming entity to the front
478 Prepend_String_To_Buffer
(Get_Name_String
(Chars
(Ent
)));
480 -- If it is a child unit create a fully qualified name, to disambiguate
481 -- multiple child units with the same name and different parents.
483 if Nkind
(N
) = N_Package_Renaming_Declaration
484 and then Is_Child_Unit
(Ent
)
486 Prepend_String_To_Buffer
("__");
487 Prepend_String_To_Buffer
488 (Get_Name_String
(Chars
(Scope
(Ent
))));
491 -- Create the special object whose name is the debug encoding for the
492 -- renaming declaration.
494 -- For now, the object name contains the suffix encoding for the renamed
495 -- object, but not the name of the leading entity. The object is linked
496 -- the renamed entity using the Debug_Renaming_Link field. Then the
497 -- Qualify_Entity_Name procedure uses this link to create the proper
498 -- fully qualified name.
500 -- The reason we do things this way is that we really need to copy the
501 -- qualification of the renamed entity, and it is really much easier to
502 -- do this after the renamed entity has itself been fully qualified.
504 Obj
:= Make_Defining_Identifier
(Loc
, Chars
=> Name_Enter
);
506 Make_Object_Declaration
(Loc
,
507 Defining_Identifier
=> Obj
,
508 Object_Definition
=> New_Occurrence_Of
509 (Standard_Debug_Renaming_Type
, Loc
));
511 Set_Debug_Renaming_Link
(Obj
, Entity
(Ren
));
513 Set_Debug_Info_Needed
(Obj
);
515 -- The renamed entity may be a temporary, e.g. the result of an
516 -- implicit dereference in an iterator. Indicate that the temporary
517 -- itself requires debug information. If the renamed entity comes
518 -- from source this is a no-op.
520 Set_Debug_Info_Needed
(Entity
(Ren
));
522 -- Mark the object as internal so that it won't be initialized when
523 -- pragma Initialize_Scalars or Normalize_Scalars is in use.
525 Set_Is_Internal
(Obj
);
529 -- If we get an exception, just figure it is a case that we cannot
530 -- successfully handle using our current approach, since this is
531 -- only for debugging, no need to take the compilation with us.
535 return Make_Null_Statement
(Loc
);
536 end Debug_Renaming_Declaration
;
538 ----------------------
539 -- Get_Encoded_Name --
540 ----------------------
542 -- Note: see spec for details on encodings
544 procedure Get_Encoded_Name
(E
: Entity_Id
) is
545 Has_Suffix
: Boolean;
548 -- If not generating code, there is no need to create encoded names, and
549 -- problems when the back-end is called to annotate types without full
550 -- code generation. See comments in Get_External_Name for additional
553 -- However we do create encoded names if the back end is active, even
554 -- if Operating_Mode got reset. Otherwise any serious error reported
555 -- by the backend calling Error_Msg changes the Compilation_Mode to
556 -- Check_Semantics, which disables the functionality of this routine,
557 -- causing the generation of spurious additional errors.
559 -- Couldn't we just test Original_Operating_Mode here? ???
561 if Operating_Mode
/= Generate_Code
562 and then not Generating_Code
567 Get_Name_String
(Chars
(E
));
569 -- Nothing to do if we do not have a type
573 -- Or if this is an enumeration base type
575 or else (Is_Enumeration_Type
(E
) and then Is_Base_Type
(E
))
577 -- Or if this is a dummy type for a renaming
579 or else (Name_Len
>= 3 and then
580 Name_Buffer
(Name_Len
- 2 .. Name_Len
) = "_XR")
582 or else (Name_Len
>= 4 and then
583 (Name_Buffer
(Name_Len
- 3 .. Name_Len
) = "_XRE"
585 Name_Buffer
(Name_Len
- 3 .. Name_Len
) = "_XRP"))
587 -- For all these cases, just return the name unchanged
590 Name_Buffer
(Name_Len
+ 1) := ASCII
.NUL
;
598 if Is_Fixed_Point_Type
(E
) then
599 Get_External_Name
(E
, True, "XF_");
600 Add_Real_To_Buffer
(Delta_Value
(E
));
602 if Small_Value
(E
) /= Delta_Value
(E
) then
603 Add_Str_To_Name_Buffer
("_");
604 Add_Real_To_Buffer
(Small_Value
(E
));
607 -- Discrete case where bounds do not match size
609 elsif Is_Discrete_Type
(E
)
610 and then not Bounds_Match_Size
(E
)
613 Lo
: constant Node_Id
:= Type_Low_Bound
(E
);
614 Hi
: constant Node_Id
:= Type_High_Bound
(E
);
616 Lo_Con
: constant Boolean := Compile_Time_Known_Value
(Lo
);
617 Hi_Con
: constant Boolean := Compile_Time_Known_Value
(Hi
);
619 Lo_Discr
: constant Boolean :=
620 Nkind
(Lo
) = N_Identifier
622 Ekind
(Entity
(Lo
)) = E_Discriminant
;
624 Hi_Discr
: constant Boolean :=
625 Nkind
(Hi
) = N_Identifier
627 Ekind
(Entity
(Hi
)) = E_Discriminant
;
629 Lo_Encode
: constant Boolean := Lo_Con
or Lo_Discr
;
630 Hi_Encode
: constant Boolean := Hi_Con
or Hi_Discr
;
632 Biased
: constant Boolean := Has_Biased_Representation
(E
);
636 Get_External_Name
(E
, True, "XB");
638 Get_External_Name
(E
, True, "XD");
641 if Lo_Encode
or Hi_Encode
then
643 Add_Str_To_Name_Buffer
("_");
647 Add_Str_To_Name_Buffer
("LU_");
649 Add_Str_To_Name_Buffer
("L_");
652 Add_Str_To_Name_Buffer
("U_");
657 Add_Uint_To_Buffer
(Expr_Rep_Value
(Lo
));
659 Get_Name_String_And_Append
(Chars
(Entity
(Lo
)));
662 if Lo_Encode
and Hi_Encode
then
663 Add_Str_To_Name_Buffer
("__");
667 Add_Uint_To_Buffer
(Expr_Rep_Value
(Hi
));
669 Get_Name_String_And_Append
(Chars
(Entity
(Hi
)));
674 -- For all other cases, the encoded name is the normal type name
678 Get_External_Name
(E
);
681 if Debug_Flag_B
and then Has_Suffix
then
682 Write_Str
("**** type ");
683 Write_Name
(Chars
(E
));
684 Write_Str
(" is encoded as ");
685 Write_Str
(Name_Buffer
(1 .. Name_Len
));
689 Name_Buffer
(Name_Len
+ 1) := ASCII
.NUL
;
690 end Get_Encoded_Name
;
692 -----------------------
693 -- Get_External_Name --
694 -----------------------
696 procedure Get_External_Name
698 Has_Suffix
: Boolean := False;
699 Suffix
: String := "")
701 E
: Entity_Id
:= Entity
;
704 procedure Get_Qualified_Name_And_Append
(Entity
: Entity_Id
);
705 -- Appends fully qualified name of given entity to Name_Buffer
707 -----------------------------------
708 -- Get_Qualified_Name_And_Append --
709 -----------------------------------
711 procedure Get_Qualified_Name_And_Append
(Entity
: Entity_Id
) is
713 -- If the entity is a compilation unit, its scope is Standard,
714 -- there is no outer scope, and the no further qualification
717 -- If the front end has already computed a fully qualified name,
718 -- then it is also the case that no further qualification is
721 if Present
(Scope
(Scope
(Entity
)))
722 and then not Has_Fully_Qualified_Name
(Entity
)
724 Get_Qualified_Name_And_Append
(Scope
(Entity
));
725 Add_Str_To_Name_Buffer
("__");
726 Get_Name_String_And_Append
(Chars
(Entity
));
727 Append_Homonym_Number
(Entity
);
730 Get_Name_String_And_Append
(Chars
(Entity
));
732 end Get_Qualified_Name_And_Append
;
734 -- Start of processing for Get_External_Name
737 -- If we are not in code generation mode, this procedure may still be
738 -- called from Back_End (more specifically - from gigi for doing type
739 -- representation annotation or some representation-specific checks).
740 -- But in this mode there is no need to mess with external names.
742 -- Furthermore, the call causes difficulties in this case because the
743 -- string representing the homonym number is not correctly reset as a
744 -- part of the call to Output_Homonym_Numbers_Suffix (which is not
747 if Operating_Mode
/= Generate_Code
then
753 -- If this is a child unit, we want the child
755 if Nkind
(E
) = N_Defining_Program_Unit_Name
then
756 E
:= Defining_Identifier
(Entity
);
761 -- Case of interface name being used
763 if (Kind
= E_Procedure
or else
764 Kind
= E_Function
or else
765 Kind
= E_Constant
or else
766 Kind
= E_Variable
or else
768 and then Present
(Interface_Name
(E
))
769 and then No
(Address_Clause
(E
))
770 and then not Has_Suffix
772 Add_String_To_Name_Buffer
(Strval
(Interface_Name
(E
)));
774 -- All other cases besides the interface name case
777 -- If this is a library level subprogram (i.e. a subprogram that is a
778 -- compilation unit other than a subunit), then we prepend _ada_ to
779 -- ensure distinctions required as described in the spec.
781 -- Check explicitly for child units, because those are not flagged
782 -- as Compilation_Units by lib. Should they be ???
785 and then (Is_Compilation_Unit
(E
) or Is_Child_Unit
(E
))
786 and then not Has_Suffix
788 Add_Str_To_Name_Buffer
("_ada_");
791 -- If the entity is a subprogram instance that is not a compilation
792 -- unit, generate the name of the original Ada entity, which is the
795 if Is_Generic_Instance
(E
)
796 and then Is_Subprogram
(E
)
797 and then not Is_Compilation_Unit
(Scope
(E
))
798 and then (Ekind
(Scope
(E
)) = E_Package
800 Ekind
(Scope
(E
)) = E_Package_Body
)
801 and then Present
(Related_Instance
(Scope
(E
)))
803 E
:= Related_Instance
(Scope
(E
));
806 Get_Qualified_Name_And_Append
(E
);
810 Add_Str_To_Name_Buffer
("___");
811 Add_Str_To_Name_Buffer
(Suffix
);
814 Name_Buffer
(Name_Len
+ 1) := ASCII
.NUL
;
815 end Get_External_Name
;
817 --------------------------
818 -- Get_Variant_Encoding --
819 --------------------------
821 procedure Get_Variant_Encoding
(V
: Node_Id
) is
824 procedure Choice_Val
(Typ
: Character; Choice
: Node_Id
);
825 -- Output encoded value for a single choice value. Typ is the key
826 -- character ('S', 'F', or 'T') that precedes the choice value.
832 procedure Choice_Val
(Typ
: Character; Choice
: Node_Id
) is
834 if Nkind
(Choice
) = N_Integer_Literal
then
835 Add_Char_To_Name_Buffer
(Typ
);
836 Add_Uint_To_Buffer
(Intval
(Choice
));
838 -- Character literal with no entity present (this is the case
839 -- Standard.Character or Standard.Wide_Character as root type)
841 elsif Nkind
(Choice
) = N_Character_Literal
842 and then No
(Entity
(Choice
))
844 Add_Char_To_Name_Buffer
(Typ
);
845 Add_Uint_To_Buffer
(Char_Literal_Value
(Choice
));
849 Ent
: constant Entity_Id
:= Entity
(Choice
);
852 if Ekind
(Ent
) = E_Enumeration_Literal
then
853 Add_Char_To_Name_Buffer
(Typ
);
854 Add_Uint_To_Buffer
(Enumeration_Rep
(Ent
));
857 pragma Assert
(Ekind
(Ent
) = E_Constant
);
858 Choice_Val
(Typ
, Constant_Value
(Ent
));
864 -- Start of processing for Get_Variant_Encoding
869 Choice
:= First
(Discrete_Choices
(V
));
870 while Present
(Choice
) loop
871 if Nkind
(Choice
) = N_Others_Choice
then
872 Add_Char_To_Name_Buffer
('O');
874 elsif Nkind
(Choice
) = N_Range
then
875 Choice_Val
('R', Low_Bound
(Choice
));
876 Choice_Val
('T', High_Bound
(Choice
));
878 elsif Is_Entity_Name
(Choice
)
879 and then Is_Type
(Entity
(Choice
))
881 Choice_Val
('R', Type_Low_Bound
(Entity
(Choice
)));
882 Choice_Val
('T', Type_High_Bound
(Entity
(Choice
)));
884 elsif Nkind
(Choice
) = N_Subtype_Indication
then
886 Rang
: constant Node_Id
:=
887 Range_Expression
(Constraint
(Choice
));
889 Choice_Val
('R', Low_Bound
(Rang
));
890 Choice_Val
('T', High_Bound
(Rang
));
894 Choice_Val
('S', Choice
);
900 Name_Buffer
(Name_Len
+ 1) := ASCII
.NUL
;
904 VP
: constant Node_Id
:= Parent
(V
); -- Variant_Part
905 CL
: constant Node_Id
:= Parent
(VP
); -- Component_List
906 RD
: constant Node_Id
:= Parent
(CL
); -- Record_Definition
907 FT
: constant Node_Id
:= Parent
(RD
); -- Full_Type_Declaration
910 Write_Str
("**** variant for type ");
911 Write_Name
(Chars
(Defining_Identifier
(FT
)));
912 Write_Str
(" is encoded as ");
913 Write_Str
(Name_Buffer
(1 .. Name_Len
));
917 end Get_Variant_Encoding
;
919 -----------------------------------------
920 -- Build_Subprogram_Instance_Renamings --
921 -----------------------------------------
923 procedure Build_Subprogram_Instance_Renamings
932 E
:= First_Entity
(Wrapper
);
933 while Present
(E
) loop
934 if Nkind
(Parent
(E
)) = N_Object_Declaration
935 and then Is_Elementary_Type
(Etype
(E
))
937 Loc
:= Sloc
(Expression
(Parent
(E
)));
938 Decl
:= Make_Object_Renaming_Declaration
(Loc
,
939 Defining_Identifier
=>
940 Make_Defining_Identifier
(Loc
, Chars
(E
)),
941 Subtype_Mark
=> New_Occurrence_Of
(Etype
(E
), Loc
),
942 Name
=> New_Occurrence_Of
(E
, Loc
));
944 Append
(Decl
, Declarations
(N
));
945 Set_Needs_Debug_Info
(Defining_Identifier
(Decl
));
950 end Build_Subprogram_Instance_Renamings
;
952 ------------------------------------
953 -- Get_Secondary_DT_External_Name --
954 ------------------------------------
956 procedure Get_Secondary_DT_External_Name
958 Ancestor_Typ
: Entity_Id
;
962 Get_External_Name
(Typ
);
964 if Ancestor_Typ
/= Typ
then
966 Len
: constant Natural := Name_Len
;
967 Save_Str
: constant String (1 .. Name_Len
)
968 := Name_Buffer
(1 .. Name_Len
);
970 Get_External_Name
(Ancestor_Typ
);
972 -- Append the extended name of the ancestor to the
973 -- extended name of Typ
975 Name_Buffer
(Len
+ 2 .. Len
+ Name_Len
+ 1) :=
976 Name_Buffer
(1 .. Name_Len
);
977 Name_Buffer
(1 .. Len
) := Save_Str
;
978 Name_Buffer
(Len
+ 1) := '_';
979 Name_Len
:= Len
+ Name_Len
+ 1;
983 Add_Nat_To_Name_Buffer
(Suffix_Index
);
984 end Get_Secondary_DT_External_Name
;
986 ---------------------------------
987 -- Make_Packed_Array_Impl_Type_Name --
988 ---------------------------------
990 function Make_Packed_Array_Impl_Type_Name
996 Get_Name_String
(Chars
(Typ
));
997 Add_Str_To_Name_Buffer
("___XP");
998 Add_Uint_To_Buffer
(Csize
);
1000 end Make_Packed_Array_Impl_Type_Name
;
1002 -----------------------------------
1003 -- Output_Homonym_Numbers_Suffix --
1004 -----------------------------------
1006 procedure Output_Homonym_Numbers_Suffix
is
1010 if Homonym_Len
> 0 then
1012 -- Check for all 1's, in which case we do not output
1016 exit when Homonym_Numbers
(J
) /= '1';
1018 -- If we reached end of string we do not output
1020 if J
= Homonym_Len
then
1025 exit when Homonym_Numbers
(J
+ 1) /= '_';
1029 -- If we exit the loop then suffix must be output
1031 Add_Str_To_Name_Buffer
("__");
1032 Add_Str_To_Name_Buffer
(Homonym_Numbers
(1 .. Homonym_Len
));
1035 end Output_Homonym_Numbers_Suffix
;
1037 ------------------------------
1038 -- Prepend_String_To_Buffer --
1039 ------------------------------
1041 procedure Prepend_String_To_Buffer
(S
: String) is
1042 N
: constant Integer := S
'Length;
1044 Name_Buffer
(1 + N
.. Name_Len
+ N
) := Name_Buffer
(1 .. Name_Len
);
1045 Name_Buffer
(1 .. N
) := S
;
1046 Name_Len
:= Name_Len
+ N
;
1047 end Prepend_String_To_Buffer
;
1049 ----------------------------
1050 -- Prepend_Uint_To_Buffer --
1051 ----------------------------
1053 procedure Prepend_Uint_To_Buffer
(U
: Uint
) is
1056 Prepend_String_To_Buffer
("m");
1057 Prepend_Uint_To_Buffer
(-U
);
1059 UI_Image
(U
, Decimal
);
1060 Prepend_String_To_Buffer
(UI_Image_Buffer
(1 .. UI_Image_Length
));
1062 end Prepend_Uint_To_Buffer
;
1064 ------------------------------
1065 -- Qualify_All_Entity_Names --
1066 ------------------------------
1068 procedure Qualify_All_Entity_Names
is
1073 for J
in Name_Qualify_Units
.First
.. Name_Qualify_Units
.Last
loop
1074 E
:= Defining_Entity
(Name_Qualify_Units
.Table
(J
));
1076 Qualify_Entity_Name
(E
);
1078 -- Normally entities in the qualification list are scopes, but in the
1079 -- case of a library-level package renaming there is an associated
1080 -- variable that encodes the debugger name and that variable is
1081 -- entered in the list since it occurs in the Aux_Decls list of the
1082 -- compilation and doesn't have a normal scope.
1084 if Ekind
(E
) /= E_Variable
then
1085 Ent
:= First_Entity
(E
);
1086 while Present
(Ent
) loop
1088 Qualify_Entity_Name
(Ent
);
1091 -- There are odd cases where Last_Entity (E) = E. This happens
1092 -- in the case of renaming of packages. This test avoids
1093 -- getting stuck in such cases.
1099 end Qualify_All_Entity_Names
;
1101 -------------------------
1102 -- Qualify_Entity_Name --
1103 -------------------------
1105 procedure Qualify_Entity_Name
(Ent
: Entity_Id
) is
1107 Full_Qualify_Name
: String (1 .. Name_Buffer
'Length);
1108 Full_Qualify_Len
: Natural := 0;
1109 -- Used to accumulate fully qualified name of subprogram
1111 procedure Fully_Qualify_Name
(E
: Entity_Id
);
1112 -- Used to qualify a subprogram or type name, where full
1113 -- qualification up to Standard is always used. Name is set
1114 -- in Full_Qualify_Name with the length in Full_Qualify_Len.
1115 -- Note that this routine does not prepend the _ada_ string
1116 -- required for library subprograms (this is done in the back end).
1118 function Is_BNPE
(S
: Entity_Id
) return Boolean;
1119 -- Determines if S is a BNPE, i.e. Body-Nested Package Entity, which
1120 -- is defined to be a package which is immediately nested within a
1123 function Qualify_Needed
(S
: Entity_Id
) return Boolean;
1124 -- Given a scope, determines if the scope is to be included in the
1125 -- fully qualified name, True if so, False if not. Blocks and loops
1126 -- are excluded from a qualified name.
1128 procedure Set_BNPE_Suffix
(E
: Entity_Id
);
1129 -- Recursive routine to append the BNPE qualification suffix. Works
1130 -- from right to left with E being the current entity in the list.
1131 -- The result does NOT have the trailing n's and trailing b stripped.
1132 -- The caller must do this required stripping.
1134 procedure Set_Entity_Name
(E
: Entity_Id
);
1135 -- Internal recursive routine that does most of the work. This routine
1136 -- leaves the result sitting in Name_Buffer and Name_Len.
1138 BNPE_Suffix_Needed
: Boolean := False;
1139 -- Set true if a body-nested package entity suffix is required
1141 Save_Chars
: constant Name_Id
:= Chars
(Ent
);
1142 -- Save original name
1144 ------------------------
1145 -- Fully_Qualify_Name --
1146 ------------------------
1148 procedure Fully_Qualify_Name
(E
: Entity_Id
) is
1149 Discard
: Boolean := False;
1152 -- Ignore empty entry (can happen in error cases)
1157 -- If this we are qualifying entities local to a generic instance,
1158 -- use the name of the original instantiation, not that of the
1159 -- anonymous subprogram in the wrapper package, so that gdb doesn't
1160 -- have to know about these.
1162 elsif Is_Generic_Instance
(E
)
1163 and then Is_Subprogram
(E
)
1164 and then not Comes_From_Source
(E
)
1165 and then not Is_Compilation_Unit
(Scope
(E
))
1167 Fully_Qualify_Name
(Related_Instance
(Scope
(E
)));
1171 -- If we reached fully qualified name, then just copy it
1173 if Has_Fully_Qualified_Name
(E
) then
1174 Get_Name_String
(Chars
(E
));
1175 Strip_Suffixes
(Discard
);
1176 Full_Qualify_Name
(1 .. Name_Len
) := Name_Buffer
(1 .. Name_Len
);
1177 Full_Qualify_Len
:= Name_Len
;
1178 Set_Has_Fully_Qualified_Name
(Ent
);
1180 -- Case of non-fully qualified name
1183 if Scope
(E
) = Standard_Standard
then
1184 Set_Has_Fully_Qualified_Name
(Ent
);
1186 Fully_Qualify_Name
(Scope
(E
));
1187 Full_Qualify_Name
(Full_Qualify_Len
+ 1) := '_';
1188 Full_Qualify_Name
(Full_Qualify_Len
+ 2) := '_';
1189 Full_Qualify_Len
:= Full_Qualify_Len
+ 2;
1192 if Has_Qualified_Name
(E
) then
1193 Get_Unqualified_Name_String
(Chars
(E
));
1195 Get_Name_String
(Chars
(E
));
1198 -- Here we do one step of the qualification
1201 (Full_Qualify_Len
+ 1 .. Full_Qualify_Len
+ Name_Len
) :=
1202 Name_Buffer
(1 .. Name_Len
);
1203 Full_Qualify_Len
:= Full_Qualify_Len
+ Name_Len
;
1204 Append_Homonym_Number
(E
);
1208 BNPE_Suffix_Needed
:= True;
1210 end Fully_Qualify_Name
;
1216 function Is_BNPE
(S
: Entity_Id
) return Boolean is
1218 return Ekind
(S
) = E_Package
and then Is_Package_Body_Entity
(S
);
1221 --------------------
1222 -- Qualify_Needed --
1223 --------------------
1225 function Qualify_Needed
(S
: Entity_Id
) return Boolean is
1227 -- If we got all the way to Standard, then we have certainly
1228 -- fully qualified the name, so set the flag appropriately,
1229 -- and then return False, since we are most certainly done.
1231 if S
= Standard_Standard
then
1232 Set_Has_Fully_Qualified_Name
(Ent
, True);
1235 -- Otherwise figure out if further qualification is required
1238 return Is_Subprogram
(Ent
)
1239 or else Ekind
(Ent
) = E_Subprogram_Body
1240 or else (Ekind
(S
) /= E_Block
1241 and then Ekind
(S
) /= E_Loop
1242 and then not Is_Dynamic_Scope
(S
));
1246 ---------------------
1247 -- Set_BNPE_Suffix --
1248 ---------------------
1250 procedure Set_BNPE_Suffix
(E
: Entity_Id
) is
1251 S
: constant Entity_Id
:= Scope
(E
);
1254 if Qualify_Needed
(S
) then
1255 Set_BNPE_Suffix
(S
);
1258 Add_Char_To_Name_Buffer
('b');
1260 Add_Char_To_Name_Buffer
('n');
1264 Add_Char_To_Name_Buffer
('X');
1266 end Set_BNPE_Suffix
;
1268 ---------------------
1269 -- Set_Entity_Name --
1270 ---------------------
1272 procedure Set_Entity_Name
(E
: Entity_Id
) is
1273 S
: constant Entity_Id
:= Scope
(E
);
1276 -- If we reach an already qualified name, just take the encoding
1277 -- except that we strip the package body suffixes, since these
1278 -- will be separately put on later.
1280 if Has_Qualified_Name
(E
) then
1281 Get_Name_String_And_Append
(Chars
(E
));
1282 Strip_Suffixes
(BNPE_Suffix_Needed
);
1284 -- If the top level name we are adding is itself fully
1285 -- qualified, then that means that the name that we are
1286 -- preparing for the Fully_Qualify_Name call will also
1287 -- generate a fully qualified name.
1289 if Has_Fully_Qualified_Name
(E
) then
1290 Set_Has_Fully_Qualified_Name
(Ent
);
1293 -- Case where upper level name is not encoded yet
1296 -- Recurse if further qualification required
1298 if Qualify_Needed
(S
) then
1299 Set_Entity_Name
(S
);
1300 Add_Str_To_Name_Buffer
("__");
1303 -- Otherwise get name and note if it is a BNPE
1305 Get_Name_String_And_Append
(Chars
(E
));
1308 BNPE_Suffix_Needed
:= True;
1311 Append_Homonym_Number
(E
);
1313 end Set_Entity_Name
;
1315 -- Start of processing for Qualify_Entity_Name
1318 if Has_Qualified_Name
(Ent
) then
1321 -- In formal verification mode, simply append a suffix for homonyms.
1322 -- We used to qualify entity names as full expansion does, but this was
1323 -- removed as this prevents the verification back-end from using a short
1324 -- name for debugging and user interaction. The verification back-end
1325 -- already takes care of qualifying names when needed. Still mark the
1326 -- name as being qualified, as Qualify_Entity_Name may be called more
1327 -- than once on the same entity.
1329 elsif GNATprove_Mode
then
1330 if Has_Homonym
(Ent
) then
1331 Get_Name_String
(Chars
(Ent
));
1332 Append_Homonym_Number
(Ent
);
1333 Output_Homonym_Numbers_Suffix
;
1334 Set_Chars
(Ent
, Name_Enter
);
1337 Set_Has_Qualified_Name
(Ent
);
1340 -- If the entity is a variable encoding the debug name for an object
1341 -- renaming, then the qualified name of the entity associated with the
1342 -- renamed object can now be incorporated in the debug name.
1344 elsif Ekind
(Ent
) = E_Variable
1345 and then Present
(Debug_Renaming_Link
(Ent
))
1348 Qualify_Entity_Name
(Debug_Renaming_Link
(Ent
));
1349 Get_Name_String
(Chars
(Ent
));
1351 -- Retrieve the now-qualified name of the renamed entity and insert
1352 -- it in the middle of the name, just preceding the suffix encoding
1353 -- describing the renamed object.
1356 Renamed_Id
: constant String :=
1357 Get_Name_String
(Chars
(Debug_Renaming_Link
(Ent
)));
1358 Insert_Len
: constant Integer := Renamed_Id
'Length + 1;
1359 Index
: Natural := Name_Len
- 3;
1362 -- Loop backwards through the name to find the start of the "___"
1363 -- sequence associated with the suffix.
1365 while Index
>= Name_Buffer
'First
1366 and then (Name_Buffer
(Index
+ 1) /= '_'
1367 or else Name_Buffer
(Index
+ 2) /= '_'
1368 or else Name_Buffer
(Index
+ 3) /= '_')
1373 pragma Assert
(Name_Buffer
(Index
+ 1 .. Index
+ 3) = "___");
1375 -- Insert an underscore separator and the entity name just in
1376 -- front of the suffix.
1378 Name_Buffer
(Index
+ 1 + Insert_Len
.. Name_Len
+ Insert_Len
) :=
1379 Name_Buffer
(Index
+ 1 .. Name_Len
);
1380 Name_Buffer
(Index
+ 1) := '_';
1381 Name_Buffer
(Index
+ 2 .. Index
+ Insert_Len
) := Renamed_Id
;
1382 Name_Len
:= Name_Len
+ Insert_Len
;
1385 -- Reset the name of the variable to the new name that includes the
1386 -- name of the renamed entity.
1388 Set_Chars
(Ent
, Name_Enter
);
1390 -- If the entity needs qualification by its scope then develop it
1391 -- here, add the variable's name, and again reset the entity name.
1393 if Qualify_Needed
(Scope
(Ent
)) then
1395 Set_Entity_Name
(Scope
(Ent
));
1396 Add_Str_To_Name_Buffer
("__");
1398 Get_Name_String_And_Append
(Chars
(Ent
));
1400 Set_Chars
(Ent
, Name_Enter
);
1403 Set_Has_Qualified_Name
(Ent
);
1406 elsif Is_Subprogram
(Ent
)
1407 or else Ekind
(Ent
) = E_Subprogram_Body
1408 or else Is_Type
(Ent
)
1410 Fully_Qualify_Name
(Ent
);
1411 Name_Len
:= Full_Qualify_Len
;
1412 Name_Buffer
(1 .. Name_Len
) := Full_Qualify_Name
(1 .. Name_Len
);
1414 elsif Qualify_Needed
(Scope
(Ent
)) then
1416 Set_Entity_Name
(Ent
);
1419 Set_Has_Qualified_Name
(Ent
);
1423 -- Fall through with a fully qualified name in Name_Buffer/Name_Len
1425 Output_Homonym_Numbers_Suffix
;
1427 -- Add body-nested package suffix if required
1429 if BNPE_Suffix_Needed
1430 and then Ekind
(Ent
) /= E_Enumeration_Literal
1432 Set_BNPE_Suffix
(Ent
);
1434 -- Strip trailing n's and last trailing b as required. note that
1435 -- we know there is at least one b, or no suffix would be generated.
1437 while Name_Buffer
(Name_Len
) = 'n' loop
1438 Name_Len
:= Name_Len
- 1;
1441 Name_Len
:= Name_Len
- 1;
1444 Set_Chars
(Ent
, Name_Enter
);
1445 Set_Has_Qualified_Name
(Ent
);
1447 if Debug_Flag_BB
then
1449 Write_Name
(Save_Chars
);
1450 Write_Str
(" qualified as ");
1451 Write_Name
(Chars
(Ent
));
1454 end Qualify_Entity_Name
;
1456 --------------------------
1457 -- Qualify_Entity_Names --
1458 --------------------------
1460 procedure Qualify_Entity_Names
(N
: Node_Id
) is
1462 Name_Qualify_Units
.Append
(N
);
1463 end Qualify_Entity_Names
;
1469 procedure Reset_Buffers
is
1475 --------------------
1476 -- Strip_Suffixes --
1477 --------------------
1479 procedure Strip_Suffixes
(BNPE_Suffix_Found
: in out Boolean) is
1482 pragma Warnings
(Off
, BNPE_Suffix_Found
);
1483 -- Since this procedure only ever sets the flag
1486 -- Search for and strip BNPE suffix
1488 for J
in reverse 2 .. Name_Len
loop
1489 if Name_Buffer
(J
) = 'X' then
1491 BNPE_Suffix_Found
:= True;
1495 exit when Name_Buffer
(J
) /= 'b' and then Name_Buffer
(J
) /= 'n';
1498 -- Search for and strip homonym numbers suffix
1500 for J
in reverse 2 .. Name_Len
- 2 loop
1501 if Name_Buffer
(J
) = '_'
1502 and then Name_Buffer
(J
+ 1) = '_'
1504 if Name_Buffer
(J
+ 2) in '0' .. '9' then
1505 if Homonym_Len
> 0 then
1506 Homonym_Len
:= Homonym_Len
+ 1;
1507 Homonym_Numbers
(Homonym_Len
) := '-';
1510 SL
:= Name_Len
- (J
+ 1);
1512 Homonym_Numbers
(Homonym_Len
+ 1 .. Homonym_Len
+ SL
) :=
1513 Name_Buffer
(J
+ 2 .. Name_Len
);
1515 Homonym_Len
:= Homonym_Len
+ SL
;