Reverting merge from trunk
[official-gcc.git] / gcc / ada / exp_dbug.adb
blob7dd72069acad880b7623a620a63ff022941e2060
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- E X P _ D B U G --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1996-2013, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. 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. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
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;
32 with Opt; use Opt;
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;
40 with Table;
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,
54 Table_Low_Bound => 1,
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
66 -- Has_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
77 -- the case.
79 -- Consider the following example:
81 -- with ...
82 -- procedure X is
83 -- B : Ddd.Ttt;
84 -- procedure Y is ..
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
102 -- qualification.
104 --------------------
105 -- Homonym_Suffix --
106 --------------------
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
169 begin
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
180 begin
181 if U < 0 then
182 Add_Uint_To_Buffer (-U);
183 Add_Char_To_Name_Buffer ('m');
184 else
185 UI_Image (U, Decimal);
186 Add_Str_To_Name_Buffer (UI_Image_Buffer (1 .. UI_Image_Length));
187 end if;
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
199 ------------------
200 -- Add_Nat_To_H --
201 ------------------
203 procedure Add_Nat_To_H (Nr : Nat) is
204 begin
205 if Nr >= 10 then
206 Add_Nat_To_H (Nr / 10);
207 end if;
209 Homonym_Len := Homonym_Len + 1;
210 Homonym_Numbers (Homonym_Len) :=
211 Character'Val (Nr mod 10 + Character'Pos ('0'));
212 end Add_Nat_To_H;
214 -- Start of processing for Append_Homonym_Number
216 begin
217 if Has_Homonym (E) then
218 declare
219 H : Entity_Id := Homonym (E);
220 Nr : Nat := 1;
222 begin
223 while Present (H) loop
224 if Scope (H) = Scope (E) then
225 Nr := Nr + 1;
226 end if;
228 H := Homonym (H);
229 end loop;
231 if Homonym_Len > 0 then
232 Homonym_Len := Homonym_Len + 1;
233 Homonym_Numbers (Homonym_Len) := '_';
234 end if;
236 Add_Nat_To_H (Nr);
237 end;
238 end if;
239 end Append_Homonym_Number;
241 -----------------------
242 -- Bounds_Match_Size --
243 -----------------------
245 function Bounds_Match_Size (E : Entity_Id) return Boolean is
246 Siz : Uint;
248 begin
249 if not Is_OK_Static_Subtype (E) then
250 return False;
252 elsif Is_Integer_Type (E)
253 and then Subtypes_Statically_Match (E, Base_Type (E))
254 then
255 return True;
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.
261 else
262 declare
263 Umark : constant Uintp.Save_Mark := Uintp.Mark;
264 Result : Boolean;
266 begin
267 if Esize (E) <= 8 then
268 Siz := Uint_8;
269 elsif Esize (E) <= 16 then
270 Siz := Uint_16;
271 elsif Esize (E) <= 32 then
272 Siz := Uint_32;
273 else
274 Siz := Uint_64;
275 end if;
277 if Is_Modular_Integer_Type (E) or else Is_Enumeration_Type (E) then
278 Result :=
279 Expr_Rep_Value (Type_Low_Bound (E)) = 0
280 and then
281 2 ** Siz - Expr_Rep_Value (Type_High_Bound (E)) = 1;
283 else
284 Result :=
285 Expr_Rep_Value (Type_Low_Bound (E)) + 2 ** (Siz - 1) = 0
286 and then
287 2 ** (Siz - 1) - Expr_Rep_Value (Type_High_Bound (E)) = 1;
288 end if;
290 Release (Umark);
291 return Result;
292 end;
293 end if;
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);
304 Ren : Node_Id;
305 Typ : Entity_Id;
306 Obj : Entity_Id;
307 Res : Node_Id;
309 function Output_Subscript (N : Node_Id; S : String) return Boolean;
310 -- Outputs a single subscript value as ?nnn (subscript is compile time
311 -- known value with value nnn) or as ?e (subscript is local constant
312 -- with name e), where S supplies the proper string to use for ?.
313 -- Returns False if the subscript is not of an appropriate type to
314 -- output in one of these two forms. The result is prepended to the
315 -- name stored in Name_Buffer.
317 ----------------------
318 -- Output_Subscript --
319 ----------------------
321 function Output_Subscript (N : Node_Id; S : String) return Boolean is
322 begin
323 if Compile_Time_Known_Value (N) then
324 Prepend_Uint_To_Buffer (Expr_Value (N));
326 elsif Nkind (N) = N_Identifier
327 and then Scope (Entity (N)) = Scope (Ent)
328 and then Ekind (Entity (N)) = E_Constant
329 then
330 Prepend_String_To_Buffer (Get_Name_String (Chars (Entity (N))));
332 else
333 return False;
334 end if;
336 Prepend_String_To_Buffer (S);
337 return True;
338 end Output_Subscript;
340 -- Start of processing for Debug_Renaming_Declaration
342 begin
343 if not Comes_From_Source (N)
344 and then not Needs_Debug_Info (Ent)
345 then
346 return Empty;
347 end if;
349 -- Do not output those local variables in VM case, as this does not
350 -- help debugging (they are just unused), and might lead to duplicated
351 -- local variable names.
353 if VM_Target /= No_VM then
354 return Empty;
355 end if;
357 -- Get renamed entity and compute suffix
359 Name_Len := 0;
360 Ren := Nam;
361 loop
362 case Nkind (Ren) is
364 when N_Identifier =>
365 exit;
367 when N_Expanded_Name =>
369 -- The entity field for an N_Expanded_Name is on the expanded
370 -- name node itself, so we are done here too.
372 exit;
374 when N_Selected_Component =>
375 Prepend_String_To_Buffer
376 (Get_Name_String (Chars (Selector_Name (Ren))));
377 Prepend_String_To_Buffer ("XR");
378 Ren := Prefix (Ren);
380 when N_Indexed_Component =>
381 declare
382 X : Node_Id := Last (Expressions (Ren));
384 begin
385 while Present (X) loop
386 if not Output_Subscript (X, "XS") then
387 Set_Materialize_Entity (Ent);
388 return Empty;
389 end if;
391 Prev (X);
392 end loop;
393 end;
395 Ren := Prefix (Ren);
397 when N_Slice =>
399 Typ := Etype (First_Index (Etype (Nam)));
401 if not Output_Subscript (Type_High_Bound (Typ), "XS") then
402 Set_Materialize_Entity (Ent);
403 return Empty;
404 end if;
406 if not Output_Subscript (Type_Low_Bound (Typ), "XL") then
407 Set_Materialize_Entity (Ent);
408 return Empty;
409 end if;
411 Ren := Prefix (Ren);
413 when N_Explicit_Dereference =>
414 Prepend_String_To_Buffer ("XA");
415 Ren := Prefix (Ren);
417 -- For now, anything else simply results in no translation
419 when others =>
420 Set_Materialize_Entity (Ent);
421 return Empty;
422 end case;
423 end loop;
425 Prepend_String_To_Buffer ("___XE");
427 -- Include the designation of the form of renaming
429 case Nkind (N) is
430 when N_Object_Renaming_Declaration =>
431 Prepend_String_To_Buffer ("___XR");
433 when N_Exception_Renaming_Declaration =>
434 Prepend_String_To_Buffer ("___XRE");
436 when N_Package_Renaming_Declaration =>
437 Prepend_String_To_Buffer ("___XRP");
439 when others =>
440 return Empty;
441 end case;
443 -- Add the name of the renaming entity to the front
445 Prepend_String_To_Buffer (Get_Name_String (Chars (Ent)));
447 -- If it is a child unit create a fully qualified name, to disambiguate
448 -- multiple child units with the same name and different parents.
450 if Nkind (N) = N_Package_Renaming_Declaration
451 and then Is_Child_Unit (Ent)
452 then
453 Prepend_String_To_Buffer ("__");
454 Prepend_String_To_Buffer
455 (Get_Name_String (Chars (Scope (Ent))));
456 end if;
458 -- Create the special object whose name is the debug encoding for the
459 -- renaming declaration.
461 -- For now, the object name contains the suffix encoding for the renamed
462 -- object, but not the name of the leading entity. The object is linked
463 -- the renamed entity using the Debug_Renaming_Link field. Then the
464 -- Qualify_Entity_Name procedure uses this link to create the proper
465 -- fully qualified name.
467 -- The reason we do things this way is that we really need to copy the
468 -- qualification of the renamed entity, and it is really much easier to
469 -- do this after the renamed entity has itself been fully qualified.
471 Obj := Make_Defining_Identifier (Loc, Chars => Name_Enter);
472 Res :=
473 Make_Object_Declaration (Loc,
474 Defining_Identifier => Obj,
475 Object_Definition => New_Reference_To
476 (Standard_Debug_Renaming_Type, Loc));
478 Set_Debug_Renaming_Link (Obj, Entity (Ren));
480 Set_Debug_Info_Needed (Obj);
482 -- Mark the object as internal so that it won't be initialized when
483 -- pragma Initialize_Scalars or Normalize_Scalars is in use.
485 Set_Is_Internal (Obj);
487 return Res;
489 -- If we get an exception, just figure it is a case that we cannot
490 -- successfully handle using our current approach, since this is
491 -- only for debugging, no need to take the compilation with us!
493 exception
494 when others =>
495 return Make_Null_Statement (Loc);
496 end Debug_Renaming_Declaration;
498 ----------------------
499 -- Get_Encoded_Name --
500 ----------------------
502 -- Note: see spec for details on encodings
504 procedure Get_Encoded_Name (E : Entity_Id) is
505 Has_Suffix : Boolean;
507 begin
508 -- If not generating code, there is no need to create encoded names, and
509 -- problems when the back-end is called to annotate types without full
510 -- code generation. See comments in Get_External_Name_With_Suffix for
511 -- additional details.
513 -- However we do create encoded names if the back end is active, even
514 -- if Operating_Mode got reset. Otherwise any serious error reported
515 -- by the backend calling Error_Msg changes the Compilation_Mode to
516 -- Check_Semantics, which disables the functionality of this routine,
517 -- causing the generation of spurious additional errors.
519 -- Couldn't we just test Original_Operating_Mode here? ???
521 if Operating_Mode /= Generate_Code
522 and then not Generating_Code
523 then
524 return;
525 end if;
527 Get_Name_String (Chars (E));
529 -- Nothing to do if we do not have a type
531 if not Is_Type (E)
533 -- Or if this is an enumeration base type
535 or else (Is_Enumeration_Type (E) and then Is_Base_Type (E))
537 -- Or if this is a dummy type for a renaming
539 or else (Name_Len >= 3 and then
540 Name_Buffer (Name_Len - 2 .. Name_Len) = "_XR")
542 or else (Name_Len >= 4 and then
543 (Name_Buffer (Name_Len - 3 .. Name_Len) = "_XRE"
544 or else
545 Name_Buffer (Name_Len - 3 .. Name_Len) = "_XRP"))
547 -- For all these cases, just return the name unchanged
549 then
550 Name_Buffer (Name_Len + 1) := ASCII.NUL;
551 return;
552 end if;
554 Has_Suffix := True;
556 -- Fixed-point case
558 if Is_Fixed_Point_Type (E) then
559 Get_External_Name_With_Suffix (E, "XF_");
560 Add_Real_To_Buffer (Delta_Value (E));
562 if Small_Value (E) /= Delta_Value (E) then
563 Add_Str_To_Name_Buffer ("_");
564 Add_Real_To_Buffer (Small_Value (E));
565 end if;
567 -- Vax floating-point case
569 elsif Vax_Float (E) then
570 if Digits_Value (Base_Type (E)) = 6 then
571 Get_External_Name_With_Suffix (E, "XFF");
573 elsif Digits_Value (Base_Type (E)) = 9 then
574 Get_External_Name_With_Suffix (E, "XFF");
576 else
577 pragma Assert (Digits_Value (Base_Type (E)) = 15);
578 Get_External_Name_With_Suffix (E, "XFG");
579 end if;
581 -- Discrete case where bounds do not match size
583 elsif Is_Discrete_Type (E)
584 and then not Bounds_Match_Size (E)
585 then
586 declare
587 Lo : constant Node_Id := Type_Low_Bound (E);
588 Hi : constant Node_Id := Type_High_Bound (E);
590 Lo_Con : constant Boolean := Compile_Time_Known_Value (Lo);
591 Hi_Con : constant Boolean := Compile_Time_Known_Value (Hi);
593 Lo_Discr : constant Boolean :=
594 Nkind (Lo) = N_Identifier
595 and then
596 Ekind (Entity (Lo)) = E_Discriminant;
598 Hi_Discr : constant Boolean :=
599 Nkind (Hi) = N_Identifier
600 and then
601 Ekind (Entity (Hi)) = E_Discriminant;
603 Lo_Encode : constant Boolean := Lo_Con or Lo_Discr;
604 Hi_Encode : constant Boolean := Hi_Con or Hi_Discr;
606 Biased : constant Boolean := Has_Biased_Representation (E);
608 begin
609 if Biased then
610 Get_External_Name_With_Suffix (E, "XB");
611 else
612 Get_External_Name_With_Suffix (E, "XD");
613 end if;
615 if Lo_Encode or Hi_Encode then
616 if Biased then
617 Add_Str_To_Name_Buffer ("_");
618 else
619 if Lo_Encode then
620 if Hi_Encode then
621 Add_Str_To_Name_Buffer ("LU_");
622 else
623 Add_Str_To_Name_Buffer ("L_");
624 end if;
625 else
626 Add_Str_To_Name_Buffer ("U_");
627 end if;
628 end if;
630 if Lo_Con then
631 Add_Uint_To_Buffer (Expr_Rep_Value (Lo));
632 elsif Lo_Discr then
633 Get_Name_String_And_Append (Chars (Entity (Lo)));
634 end if;
636 if Lo_Encode and Hi_Encode then
637 Add_Str_To_Name_Buffer ("__");
638 end if;
640 if Hi_Con then
641 Add_Uint_To_Buffer (Expr_Rep_Value (Hi));
642 elsif Hi_Discr then
643 Get_Name_String_And_Append (Chars (Entity (Hi)));
644 end if;
645 end if;
646 end;
648 -- For all other cases, the encoded name is the normal type name
650 else
651 Has_Suffix := False;
652 Get_External_Name (E, Has_Suffix);
653 end if;
655 if Debug_Flag_B and then Has_Suffix then
656 Write_Str ("**** type ");
657 Write_Name (Chars (E));
658 Write_Str (" is encoded as ");
659 Write_Str (Name_Buffer (1 .. Name_Len));
660 Write_Eol;
661 end if;
663 Name_Buffer (Name_Len + 1) := ASCII.NUL;
664 end Get_Encoded_Name;
666 -----------------------
667 -- Get_External_Name --
668 -----------------------
670 procedure Get_External_Name (Entity : Entity_Id; Has_Suffix : Boolean) is
671 E : Entity_Id := Entity;
672 Kind : Entity_Kind;
674 procedure Get_Qualified_Name_And_Append (Entity : Entity_Id);
675 -- Appends fully qualified name of given entity to Name_Buffer
677 -----------------------------------
678 -- Get_Qualified_Name_And_Append --
679 -----------------------------------
681 procedure Get_Qualified_Name_And_Append (Entity : Entity_Id) is
682 begin
683 -- If the entity is a compilation unit, its scope is Standard,
684 -- there is no outer scope, and the no further qualification
685 -- is required.
687 -- If the front end has already computed a fully qualified name,
688 -- then it is also the case that no further qualification is
689 -- required.
691 if Present (Scope (Scope (Entity)))
692 and then not Has_Fully_Qualified_Name (Entity)
693 then
694 Get_Qualified_Name_And_Append (Scope (Entity));
695 Add_Str_To_Name_Buffer ("__");
696 Get_Name_String_And_Append (Chars (Entity));
697 Append_Homonym_Number (Entity);
699 else
700 Get_Name_String_And_Append (Chars (Entity));
701 end if;
702 end Get_Qualified_Name_And_Append;
704 -- Start of processing for Get_External_Name
706 begin
707 Reset_Buffers;
709 -- If this is a child unit, we want the child
711 if Nkind (E) = N_Defining_Program_Unit_Name then
712 E := Defining_Identifier (Entity);
713 end if;
715 Kind := Ekind (E);
717 -- Case of interface name being used
719 if (Kind = E_Procedure or else
720 Kind = E_Function or else
721 Kind = E_Constant or else
722 Kind = E_Variable or else
723 Kind = E_Exception)
724 and then Present (Interface_Name (E))
725 and then No (Address_Clause (E))
726 and then not Has_Suffix
727 then
728 Add_String_To_Name_Buffer (Strval (Interface_Name (E)));
730 -- All other cases besides the interface name case
732 else
733 -- If this is a library level subprogram (i.e. a subprogram that is a
734 -- compilation unit other than a subunit), then we prepend _ada_ to
735 -- ensure distinctions required as described in the spec.
737 -- Check explicitly for child units, because those are not flagged
738 -- as Compilation_Units by lib. Should they be ???
740 if Is_Subprogram (E)
741 and then (Is_Compilation_Unit (E) or Is_Child_Unit (E))
742 and then not Has_Suffix
743 then
744 Add_Str_To_Name_Buffer ("_ada_");
745 end if;
747 -- If the entity is a subprogram instance that is not a compilation
748 -- unit, generate the name of the original Ada entity, which is the
749 -- one gdb needs.
751 if Is_Generic_Instance (E)
752 and then Is_Subprogram (E)
753 and then not Is_Compilation_Unit (Scope (E))
754 and then (Ekind (Scope (E)) = E_Package
755 or else
756 Ekind (Scope (E)) = E_Package_Body)
757 and then Present (Related_Instance (Scope (E)))
758 then
759 E := Related_Instance (Scope (E));
760 end if;
762 Get_Qualified_Name_And_Append (E);
763 end if;
765 Name_Buffer (Name_Len + 1) := ASCII.NUL;
766 end Get_External_Name;
768 -----------------------------------
769 -- Get_External_Name_With_Suffix --
770 -----------------------------------
772 procedure Get_External_Name_With_Suffix
773 (Entity : Entity_Id;
774 Suffix : String)
776 Has_Suffix : constant Boolean := (Suffix /= "");
778 begin
779 -- If we are not in code generation mode, this procedure may still be
780 -- called from Back_End (more specifically - from gigi for doing type
781 -- representation annotation or some representation-specific checks).
782 -- But in this mode there is no need to mess with external names.
784 -- Furthermore, the call causes difficulties in this case because the
785 -- string representing the homonym number is not correctly reset as a
786 -- part of the call to Output_Homonym_Numbers_Suffix (which is not
787 -- called in gigi).
789 if Operating_Mode /= Generate_Code then
790 return;
791 end if;
793 Get_External_Name (Entity, Has_Suffix);
795 if Has_Suffix then
796 Add_Str_To_Name_Buffer ("___");
797 Add_Str_To_Name_Buffer (Suffix);
798 Name_Buffer (Name_Len + 1) := ASCII.NUL;
799 end if;
800 end Get_External_Name_With_Suffix;
802 --------------------------
803 -- Get_Variant_Encoding --
804 --------------------------
806 procedure Get_Variant_Encoding (V : Node_Id) is
807 Choice : Node_Id;
809 procedure Choice_Val (Typ : Character; Choice : Node_Id);
810 -- Output encoded value for a single choice value. Typ is the key
811 -- character ('S', 'F', or 'T') that precedes the choice value.
813 ----------------
814 -- Choice_Val --
815 ----------------
817 procedure Choice_Val (Typ : Character; Choice : Node_Id) is
818 begin
819 if Nkind (Choice) = N_Integer_Literal then
820 Add_Char_To_Name_Buffer (Typ);
821 Add_Uint_To_Buffer (Intval (Choice));
823 -- Character literal with no entity present (this is the case
824 -- Standard.Character or Standard.Wide_Character as root type)
826 elsif Nkind (Choice) = N_Character_Literal
827 and then No (Entity (Choice))
828 then
829 Add_Char_To_Name_Buffer (Typ);
830 Add_Uint_To_Buffer (Char_Literal_Value (Choice));
832 else
833 declare
834 Ent : constant Entity_Id := Entity (Choice);
836 begin
837 if Ekind (Ent) = E_Enumeration_Literal then
838 Add_Char_To_Name_Buffer (Typ);
839 Add_Uint_To_Buffer (Enumeration_Rep (Ent));
841 else
842 pragma Assert (Ekind (Ent) = E_Constant);
843 Choice_Val (Typ, Constant_Value (Ent));
844 end if;
845 end;
846 end if;
847 end Choice_Val;
849 -- Start of processing for Get_Variant_Encoding
851 begin
852 Name_Len := 0;
854 Choice := First (Discrete_Choices (V));
855 while Present (Choice) loop
856 if Nkind (Choice) = N_Others_Choice then
857 Add_Char_To_Name_Buffer ('O');
859 elsif Nkind (Choice) = N_Range then
860 Choice_Val ('R', Low_Bound (Choice));
861 Choice_Val ('T', High_Bound (Choice));
863 elsif Is_Entity_Name (Choice)
864 and then Is_Type (Entity (Choice))
865 then
866 Choice_Val ('R', Type_Low_Bound (Entity (Choice)));
867 Choice_Val ('T', Type_High_Bound (Entity (Choice)));
869 elsif Nkind (Choice) = N_Subtype_Indication then
870 declare
871 Rang : constant Node_Id :=
872 Range_Expression (Constraint (Choice));
873 begin
874 Choice_Val ('R', Low_Bound (Rang));
875 Choice_Val ('T', High_Bound (Rang));
876 end;
878 else
879 Choice_Val ('S', Choice);
880 end if;
882 Next (Choice);
883 end loop;
885 Name_Buffer (Name_Len + 1) := ASCII.NUL;
887 if Debug_Flag_B then
888 declare
889 VP : constant Node_Id := Parent (V); -- Variant_Part
890 CL : constant Node_Id := Parent (VP); -- Component_List
891 RD : constant Node_Id := Parent (CL); -- Record_Definition
892 FT : constant Node_Id := Parent (RD); -- Full_Type_Declaration
894 begin
895 Write_Str ("**** variant for type ");
896 Write_Name (Chars (Defining_Identifier (FT)));
897 Write_Str (" is encoded as ");
898 Write_Str (Name_Buffer (1 .. Name_Len));
899 Write_Eol;
900 end;
901 end if;
902 end Get_Variant_Encoding;
904 -----------------------------------------
905 -- Build_Subprogram_Instance_Renamings --
906 -----------------------------------------
908 procedure Build_Subprogram_Instance_Renamings
909 (N : Node_Id;
910 Wrapper : Entity_Id)
912 Loc : Source_Ptr;
913 Decl : Node_Id;
914 E : Entity_Id;
916 begin
917 E := First_Entity (Wrapper);
918 while Present (E) loop
919 if Nkind (Parent (E)) = N_Object_Declaration
920 and then Is_Elementary_Type (Etype (E))
921 then
922 Loc := Sloc (Expression (Parent (E)));
923 Decl := Make_Object_Renaming_Declaration (Loc,
924 Defining_Identifier =>
925 Make_Defining_Identifier (Loc, Chars (E)),
926 Subtype_Mark => New_Occurrence_Of (Etype (E), Loc),
927 Name => New_Occurrence_Of (E, Loc));
929 Append (Decl, Declarations (N));
930 Set_Needs_Debug_Info (Defining_Identifier (Decl));
931 end if;
933 Next_Entity (E);
934 end loop;
935 end Build_Subprogram_Instance_Renamings;
937 ------------------------------------
938 -- Get_Secondary_DT_External_Name --
939 ------------------------------------
941 procedure Get_Secondary_DT_External_Name
942 (Typ : Entity_Id;
943 Ancestor_Typ : Entity_Id;
944 Suffix_Index : Int)
946 begin
947 Get_External_Name (Typ, Has_Suffix => False);
949 if Ancestor_Typ /= Typ then
950 declare
951 Len : constant Natural := Name_Len;
952 Save_Str : constant String (1 .. Name_Len)
953 := Name_Buffer (1 .. Name_Len);
954 begin
955 Get_External_Name (Ancestor_Typ, Has_Suffix => False);
957 -- Append the extended name of the ancestor to the
958 -- extended name of Typ
960 Name_Buffer (Len + 2 .. Len + Name_Len + 1) :=
961 Name_Buffer (1 .. Name_Len);
962 Name_Buffer (1 .. Len) := Save_Str;
963 Name_Buffer (Len + 1) := '_';
964 Name_Len := Len + Name_Len + 1;
965 end;
966 end if;
968 Add_Nat_To_Name_Buffer (Suffix_Index);
969 end Get_Secondary_DT_External_Name;
971 ---------------------------------
972 -- Make_Packed_Array_Type_Name --
973 ---------------------------------
975 function Make_Packed_Array_Type_Name
976 (Typ : Entity_Id;
977 Csize : Uint)
978 return Name_Id
980 begin
981 Get_Name_String (Chars (Typ));
982 Add_Str_To_Name_Buffer ("___XP");
983 Add_Uint_To_Buffer (Csize);
984 return Name_Find;
985 end Make_Packed_Array_Type_Name;
987 -----------------------------------
988 -- Output_Homonym_Numbers_Suffix --
989 -----------------------------------
991 procedure Output_Homonym_Numbers_Suffix is
992 J : Natural;
994 begin
995 if Homonym_Len > 0 then
997 -- Check for all 1's, in which case we do not output
999 J := 1;
1000 loop
1001 exit when Homonym_Numbers (J) /= '1';
1003 -- If we reached end of string we do not output
1005 if J = Homonym_Len then
1006 Homonym_Len := 0;
1007 return;
1008 end if;
1010 exit when Homonym_Numbers (J + 1) /= '_';
1011 J := J + 2;
1012 end loop;
1014 -- If we exit the loop then suffix must be output
1016 Add_Str_To_Name_Buffer ("__");
1017 Add_Str_To_Name_Buffer (Homonym_Numbers (1 .. Homonym_Len));
1018 Homonym_Len := 0;
1019 end if;
1020 end Output_Homonym_Numbers_Suffix;
1022 ------------------------------
1023 -- Prepend_String_To_Buffer --
1024 ------------------------------
1026 procedure Prepend_String_To_Buffer (S : String) is
1027 N : constant Integer := S'Length;
1028 begin
1029 Name_Buffer (1 + N .. Name_Len + N) := Name_Buffer (1 .. Name_Len);
1030 Name_Buffer (1 .. N) := S;
1031 Name_Len := Name_Len + N;
1032 end Prepend_String_To_Buffer;
1034 ----------------------------
1035 -- Prepend_Uint_To_Buffer --
1036 ----------------------------
1038 procedure Prepend_Uint_To_Buffer (U : Uint) is
1039 begin
1040 if U < 0 then
1041 Prepend_String_To_Buffer ("m");
1042 Prepend_Uint_To_Buffer (-U);
1043 else
1044 UI_Image (U, Decimal);
1045 Prepend_String_To_Buffer (UI_Image_Buffer (1 .. UI_Image_Length));
1046 end if;
1047 end Prepend_Uint_To_Buffer;
1049 ------------------------------
1050 -- Qualify_All_Entity_Names --
1051 ------------------------------
1053 procedure Qualify_All_Entity_Names is
1054 E : Entity_Id;
1055 Ent : Entity_Id;
1057 begin
1058 for J in Name_Qualify_Units.First .. Name_Qualify_Units.Last loop
1059 E := Defining_Entity (Name_Qualify_Units.Table (J));
1060 Reset_Buffers;
1061 Qualify_Entity_Name (E);
1063 -- Normally entities in the qualification list are scopes, but in the
1064 -- case of a library-level package renaming there is an associated
1065 -- variable that encodes the debugger name and that variable is
1066 -- entered in the list since it occurs in the Aux_Decls list of the
1067 -- compilation and doesn't have a normal scope.
1069 if Ekind (E) /= E_Variable then
1070 Ent := First_Entity (E);
1071 while Present (Ent) loop
1072 Reset_Buffers;
1073 Qualify_Entity_Name (Ent);
1074 Next_Entity (Ent);
1076 -- There are odd cases where Last_Entity (E) = E. This happens
1077 -- in the case of renaming of packages. This test avoids
1078 -- getting stuck in such cases.
1080 exit when Ent = E;
1081 end loop;
1082 end if;
1083 end loop;
1084 end Qualify_All_Entity_Names;
1086 -------------------------
1087 -- Qualify_Entity_Name --
1088 -------------------------
1090 procedure Qualify_Entity_Name (Ent : Entity_Id) is
1092 Full_Qualify_Name : String (1 .. Name_Buffer'Length);
1093 Full_Qualify_Len : Natural := 0;
1094 -- Used to accumulate fully qualified name of subprogram
1096 procedure Fully_Qualify_Name (E : Entity_Id);
1097 -- Used to qualify a subprogram or type name, where full
1098 -- qualification up to Standard is always used. Name is set
1099 -- in Full_Qualify_Name with the length in Full_Qualify_Len.
1100 -- Note that this routine does not prepend the _ada_ string
1101 -- required for library subprograms (this is done in the back end).
1103 function Is_BNPE (S : Entity_Id) return Boolean;
1104 -- Determines if S is a BNPE, i.e. Body-Nested Package Entity, which
1105 -- is defined to be a package which is immediately nested within a
1106 -- package body.
1108 function Qualify_Needed (S : Entity_Id) return Boolean;
1109 -- Given a scope, determines if the scope is to be included in the
1110 -- fully qualified name, True if so, False if not.
1112 procedure Set_BNPE_Suffix (E : Entity_Id);
1113 -- Recursive routine to append the BNPE qualification suffix. Works
1114 -- from right to left with E being the current entity in the list.
1115 -- The result does NOT have the trailing n's and trailing b stripped.
1116 -- The caller must do this required stripping.
1118 procedure Set_Entity_Name (E : Entity_Id);
1119 -- Internal recursive routine that does most of the work. This routine
1120 -- leaves the result sitting in Name_Buffer and Name_Len.
1122 BNPE_Suffix_Needed : Boolean := False;
1123 -- Set true if a body-nested package entity suffix is required
1125 Save_Chars : constant Name_Id := Chars (Ent);
1126 -- Save original name
1128 ------------------------
1129 -- Fully_Qualify_Name --
1130 ------------------------
1132 procedure Fully_Qualify_Name (E : Entity_Id) is
1133 Discard : Boolean := False;
1135 begin
1136 -- Ignore empty entry (can happen in error cases)
1138 if No (E) then
1139 return;
1141 -- If this we are qualifying entities local to a generic instance,
1142 -- use the name of the original instantiation, not that of the
1143 -- anonymous subprogram in the wrapper package, so that gdb doesn't
1144 -- have to know about these.
1146 elsif Is_Generic_Instance (E)
1147 and then Is_Subprogram (E)
1148 and then not Comes_From_Source (E)
1149 and then not Is_Compilation_Unit (Scope (E))
1150 then
1151 Fully_Qualify_Name (Related_Instance (Scope (E)));
1152 return;
1153 end if;
1155 -- If we reached fully qualified name, then just copy it
1157 if Has_Fully_Qualified_Name (E) then
1158 Get_Name_String (Chars (E));
1159 Strip_Suffixes (Discard);
1160 Full_Qualify_Name (1 .. Name_Len) := Name_Buffer (1 .. Name_Len);
1161 Full_Qualify_Len := Name_Len;
1162 Set_Has_Fully_Qualified_Name (Ent);
1164 -- Case of non-fully qualified name
1166 else
1167 if Scope (E) = Standard_Standard then
1168 Set_Has_Fully_Qualified_Name (Ent);
1169 else
1170 Fully_Qualify_Name (Scope (E));
1171 Full_Qualify_Name (Full_Qualify_Len + 1) := '_';
1172 Full_Qualify_Name (Full_Qualify_Len + 2) := '_';
1173 Full_Qualify_Len := Full_Qualify_Len + 2;
1174 end if;
1176 if Has_Qualified_Name (E) then
1177 Get_Unqualified_Name_String (Chars (E));
1178 else
1179 Get_Name_String (Chars (E));
1180 end if;
1182 -- Here we do one step of the qualification
1184 Full_Qualify_Name
1185 (Full_Qualify_Len + 1 .. Full_Qualify_Len + Name_Len) :=
1186 Name_Buffer (1 .. Name_Len);
1187 Full_Qualify_Len := Full_Qualify_Len + Name_Len;
1188 Append_Homonym_Number (E);
1189 end if;
1191 if Is_BNPE (E) then
1192 BNPE_Suffix_Needed := True;
1193 end if;
1194 end Fully_Qualify_Name;
1196 -------------
1197 -- Is_BNPE --
1198 -------------
1200 function Is_BNPE (S : Entity_Id) return Boolean is
1201 begin
1202 return
1203 Ekind (S) = E_Package
1204 and then Is_Package_Body_Entity (S);
1205 end Is_BNPE;
1207 --------------------
1208 -- Qualify_Needed --
1209 --------------------
1211 function Qualify_Needed (S : Entity_Id) return Boolean is
1212 begin
1213 -- If we got all the way to Standard, then we have certainly
1214 -- fully qualified the name, so set the flag appropriately,
1215 -- and then return False, since we are most certainly done!
1217 if S = Standard_Standard then
1218 Set_Has_Fully_Qualified_Name (Ent, True);
1219 return False;
1221 -- Otherwise figure out if further qualification is required
1223 else
1224 return
1225 Is_Subprogram (Ent)
1226 or else
1227 Ekind (Ent) = E_Subprogram_Body
1228 or else
1229 (Ekind (S) /= E_Block
1230 and then not Is_Dynamic_Scope (S));
1231 end if;
1232 end Qualify_Needed;
1234 ---------------------
1235 -- Set_BNPE_Suffix --
1236 ---------------------
1238 procedure Set_BNPE_Suffix (E : Entity_Id) is
1239 S : constant Entity_Id := Scope (E);
1241 begin
1242 if Qualify_Needed (S) then
1243 Set_BNPE_Suffix (S);
1245 if Is_BNPE (E) then
1246 Add_Char_To_Name_Buffer ('b');
1247 else
1248 Add_Char_To_Name_Buffer ('n');
1249 end if;
1251 else
1252 Add_Char_To_Name_Buffer ('X');
1253 end if;
1254 end Set_BNPE_Suffix;
1256 ---------------------
1257 -- Set_Entity_Name --
1258 ---------------------
1260 procedure Set_Entity_Name (E : Entity_Id) is
1261 S : constant Entity_Id := Scope (E);
1263 begin
1264 -- If we reach an already qualified name, just take the encoding
1265 -- except that we strip the package body suffixes, since these
1266 -- will be separately put on later.
1268 if Has_Qualified_Name (E) then
1269 Get_Name_String_And_Append (Chars (E));
1270 Strip_Suffixes (BNPE_Suffix_Needed);
1272 -- If the top level name we are adding is itself fully
1273 -- qualified, then that means that the name that we are
1274 -- preparing for the Fully_Qualify_Name call will also
1275 -- generate a fully qualified name.
1277 if Has_Fully_Qualified_Name (E) then
1278 Set_Has_Fully_Qualified_Name (Ent);
1279 end if;
1281 -- Case where upper level name is not encoded yet
1283 else
1284 -- Recurse if further qualification required
1286 if Qualify_Needed (S) then
1287 Set_Entity_Name (S);
1288 Add_Str_To_Name_Buffer ("__");
1289 end if;
1291 -- Otherwise get name and note if it is a BNPE
1293 Get_Name_String_And_Append (Chars (E));
1295 if Is_BNPE (E) then
1296 BNPE_Suffix_Needed := True;
1297 end if;
1299 Append_Homonym_Number (E);
1300 end if;
1301 end Set_Entity_Name;
1303 -- Start of processing for Qualify_Entity_Name
1305 begin
1306 if Has_Qualified_Name (Ent) then
1307 return;
1309 -- In formal verification mode, simply append a suffix for homonyms.
1310 -- We used to qualify entity names as full expansion does, but this was
1311 -- removed as this prevents the verification back-end from using a short
1312 -- name for debugging and user interaction. The verification back-end
1313 -- already takes care of qualifying names when needed. Still mark the
1314 -- name as being qualified, as Qualify_Entity_Name may be called more
1315 -- than once on the same entity.
1317 elsif SPARK_Mode then
1318 if Has_Homonym (Ent) then
1319 Get_Name_String (Chars (Ent));
1320 Append_Homonym_Number (Ent);
1321 Output_Homonym_Numbers_Suffix;
1322 Set_Chars (Ent, Name_Enter);
1323 end if;
1325 Set_Has_Qualified_Name (Ent);
1326 return;
1328 -- If the entity is a variable encoding the debug name for an object
1329 -- renaming, then the qualified name of the entity associated with the
1330 -- renamed object can now be incorporated in the debug name.
1332 elsif Ekind (Ent) = E_Variable
1333 and then Present (Debug_Renaming_Link (Ent))
1334 then
1335 Name_Len := 0;
1336 Qualify_Entity_Name (Debug_Renaming_Link (Ent));
1337 Get_Name_String (Chars (Ent));
1339 -- Retrieve the now-qualified name of the renamed entity and insert
1340 -- it in the middle of the name, just preceding the suffix encoding
1341 -- describing the renamed object.
1343 declare
1344 Renamed_Id : constant String :=
1345 Get_Name_String (Chars (Debug_Renaming_Link (Ent)));
1346 Insert_Len : constant Integer := Renamed_Id'Length + 1;
1347 Index : Natural := Name_Len - 3;
1349 begin
1350 -- Loop backwards through the name to find the start of the "___"
1351 -- sequence associated with the suffix.
1353 while Index >= Name_Buffer'First
1354 and then (Name_Buffer (Index + 1) /= '_'
1355 or else Name_Buffer (Index + 2) /= '_'
1356 or else Name_Buffer (Index + 3) /= '_')
1357 loop
1358 Index := Index - 1;
1359 end loop;
1361 pragma Assert (Name_Buffer (Index + 1 .. Index + 3) = "___");
1363 -- Insert an underscore separator and the entity name just in
1364 -- front of the suffix.
1366 Name_Buffer (Index + 1 + Insert_Len .. Name_Len + Insert_Len) :=
1367 Name_Buffer (Index + 1 .. Name_Len);
1368 Name_Buffer (Index + 1) := '_';
1369 Name_Buffer (Index + 2 .. Index + Insert_Len) := Renamed_Id;
1370 Name_Len := Name_Len + Insert_Len;
1371 end;
1373 -- Reset the name of the variable to the new name that includes the
1374 -- name of the renamed entity.
1376 Set_Chars (Ent, Name_Enter);
1378 -- If the entity needs qualification by its scope then develop it
1379 -- here, add the variable's name, and again reset the entity name.
1381 if Qualify_Needed (Scope (Ent)) then
1382 Name_Len := 0;
1383 Set_Entity_Name (Scope (Ent));
1384 Add_Str_To_Name_Buffer ("__");
1386 Get_Name_String_And_Append (Chars (Ent));
1388 Set_Chars (Ent, Name_Enter);
1389 end if;
1391 Set_Has_Qualified_Name (Ent);
1392 return;
1394 elsif Is_Subprogram (Ent)
1395 or else Ekind (Ent) = E_Subprogram_Body
1396 or else Is_Type (Ent)
1397 then
1398 Fully_Qualify_Name (Ent);
1399 Name_Len := Full_Qualify_Len;
1400 Name_Buffer (1 .. Name_Len) := Full_Qualify_Name (1 .. Name_Len);
1402 elsif Qualify_Needed (Scope (Ent)) then
1403 Name_Len := 0;
1404 Set_Entity_Name (Ent);
1406 else
1407 Set_Has_Qualified_Name (Ent);
1408 return;
1409 end if;
1411 -- Fall through with a fully qualified name in Name_Buffer/Name_Len
1413 Output_Homonym_Numbers_Suffix;
1415 -- Add body-nested package suffix if required
1417 if BNPE_Suffix_Needed
1418 and then Ekind (Ent) /= E_Enumeration_Literal
1419 then
1420 Set_BNPE_Suffix (Ent);
1422 -- Strip trailing n's and last trailing b as required. note that
1423 -- we know there is at least one b, or no suffix would be generated.
1425 while Name_Buffer (Name_Len) = 'n' loop
1426 Name_Len := Name_Len - 1;
1427 end loop;
1429 Name_Len := Name_Len - 1;
1430 end if;
1432 Set_Chars (Ent, Name_Enter);
1433 Set_Has_Qualified_Name (Ent);
1435 if Debug_Flag_BB then
1436 Write_Str ("*** ");
1437 Write_Name (Save_Chars);
1438 Write_Str (" qualified as ");
1439 Write_Name (Chars (Ent));
1440 Write_Eol;
1441 end if;
1442 end Qualify_Entity_Name;
1444 --------------------------
1445 -- Qualify_Entity_Names --
1446 --------------------------
1448 procedure Qualify_Entity_Names (N : Node_Id) is
1449 begin
1450 Name_Qualify_Units.Append (N);
1451 end Qualify_Entity_Names;
1453 -------------------
1454 -- Reset_Buffers --
1455 -------------------
1457 procedure Reset_Buffers is
1458 begin
1459 Name_Len := 0;
1460 Homonym_Len := 0;
1461 end Reset_Buffers;
1463 --------------------
1464 -- Strip_Suffixes --
1465 --------------------
1467 procedure Strip_Suffixes (BNPE_Suffix_Found : in out Boolean) is
1468 SL : Natural;
1470 pragma Warnings (Off, BNPE_Suffix_Found);
1471 -- Since this procedure only ever sets the flag
1473 begin
1474 -- Search for and strip BNPE suffix
1476 for J in reverse 2 .. Name_Len loop
1477 if Name_Buffer (J) = 'X' then
1478 Name_Len := J - 1;
1479 BNPE_Suffix_Found := True;
1480 exit;
1481 end if;
1483 exit when Name_Buffer (J) /= 'b' and then Name_Buffer (J) /= 'n';
1484 end loop;
1486 -- Search for and strip homonym numbers suffix
1488 for J in reverse 2 .. Name_Len - 2 loop
1489 if Name_Buffer (J) = '_'
1490 and then Name_Buffer (J + 1) = '_'
1491 then
1492 if Name_Buffer (J + 2) in '0' .. '9' then
1493 if Homonym_Len > 0 then
1494 Homonym_Len := Homonym_Len + 1;
1495 Homonym_Numbers (Homonym_Len) := '-';
1496 end if;
1498 SL := Name_Len - (J + 1);
1500 Homonym_Numbers (Homonym_Len + 1 .. Homonym_Len + SL) :=
1501 Name_Buffer (J + 2 .. Name_Len);
1502 Name_Len := J - 1;
1503 Homonym_Len := Homonym_Len + SL;
1504 end if;
1506 exit;
1507 end if;
1508 end loop;
1509 end Strip_Suffixes;
1511 end Exp_Dbug;