1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2016, 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. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 with Atree
; use Atree
;
33 with Casing
; use Casing
;
34 with Einfo
; use Einfo
;
37 with Nlists
; use Nlists
;
38 with Output
; use Output
;
39 with Sinfo
; use Sinfo
;
40 with Sinput
; use Sinput
;
48 function Get_Body_Name
(N
: Unit_Name_Type
) return Unit_Name_Type
is
52 pragma Assert
(Name_Len
> 2
53 and then Name_Buffer
(Name_Len
- 1) = '%'
54 and then Name_Buffer
(Name_Len
) = 's');
56 Name_Buffer
(Name_Len
) := 'b';
60 -----------------------------------
61 -- Get_External_Unit_Name_String --
62 -----------------------------------
64 procedure Get_External_Unit_Name_String
(N
: Unit_Name_Type
) is
69 -- Get unit name and eliminate trailing %s or %b
72 Name_Len
:= Name_Len
- 2;
74 -- Find number of components
77 for J
in 1 .. Name_Len
loop
78 if Name_Buffer
(J
) = '.' then
83 -- If simple name, nothing to do
89 -- If name has multiple components, replace dots by double underscore
91 Newlen
:= Name_Len
+ Pcount
;
93 for J
in reverse 1 .. Name_Len
loop
94 if Name_Buffer
(J
) = '.' then
95 Name_Buffer
(Newlen
) := '_';
96 Name_Buffer
(Newlen
- 1) := '_';
100 Name_Buffer
(Newlen
) := Name_Buffer
(J
);
101 Newlen
:= Newlen
- 1;
105 Name_Len
:= Name_Len
+ Pcount
;
106 end Get_External_Unit_Name_String
;
108 --------------------------
109 -- Get_Parent_Body_Name --
110 --------------------------
112 function Get_Parent_Body_Name
(N
: Unit_Name_Type
) return Unit_Name_Type
is
116 while Name_Buffer
(Name_Len
) /= '.' loop
117 pragma Assert
(Name_Len
> 1); -- not a child or subunit name
118 Name_Len
:= Name_Len
- 1;
121 Name_Buffer
(Name_Len
) := '%';
122 Name_Len
:= Name_Len
+ 1;
123 Name_Buffer
(Name_Len
) := 'b';
126 end Get_Parent_Body_Name
;
128 --------------------------
129 -- Get_Parent_Spec_Name --
130 --------------------------
132 function Get_Parent_Spec_Name
(N
: Unit_Name_Type
) return Unit_Name_Type
is
136 while Name_Buffer
(Name_Len
) /= '.' loop
140 Name_Len
:= Name_Len
- 1;
144 Name_Buffer
(Name_Len
) := '%';
145 Name_Len
:= Name_Len
+ 1;
146 Name_Buffer
(Name_Len
) := 's';
149 end Get_Parent_Spec_Name
;
155 function Get_Spec_Name
(N
: Unit_Name_Type
) return Unit_Name_Type
is
159 pragma Assert
(Name_Len
> 2
160 and then Name_Buffer
(Name_Len
- 1) = '%'
161 and then Name_Buffer
(Name_Len
) = 'b');
163 Name_Buffer
(Name_Len
) := 's';
171 function Get_Unit_Name
(N
: Node_Id
) return Unit_Name_Type
is
173 Unit_Name_Buffer
: String (1 .. Hostparm
.Max_Name_Length
);
174 -- Buffer used to build name of unit. Note that we cannot use the
175 -- Name_Buffer in package Name_Table because we use it to read
178 Unit_Name_Length
: Natural := 0;
179 -- Length of name stored in Unit_Name_Buffer
184 procedure Add_Char
(C
: Character);
185 -- Add a single character to stored unit name
187 procedure Add_Name
(Name
: Name_Id
);
188 -- Add the characters of a names table entry to stored unit name
190 procedure Add_Node_Name
(Node
: Node_Id
);
191 -- Recursive procedure adds characters associated with Node
193 function Get_Parent
(Node
: Node_Id
) return Node_Id
;
194 -- Get parent compilation unit of a stub
200 procedure Add_Char
(C
: Character) is
202 -- Should really check for max length exceeded here???
203 Unit_Name_Length
:= Unit_Name_Length
+ 1;
204 Unit_Name_Buffer
(Unit_Name_Length
) := C
;
211 procedure Add_Name
(Name
: Name_Id
) is
213 Get_Name_String
(Name
);
215 for J
in 1 .. Name_Len
loop
216 Add_Char
(Name_Buffer
(J
));
224 procedure Add_Node_Name
(Node
: Node_Id
) is
225 Kind
: constant Node_Kind
:= Nkind
(Node
);
228 -- Just ignore an error node (someone else will give a message)
233 -- Otherwise see what kind of node we have
237 when N_Defining_Identifier
238 | N_Defining_Operator_Symbol
241 -- Note: it is of course an error to have a defining
242 -- operator symbol at this point, but this is not where
243 -- the error is signalled, so we handle it nicely here.
245 Add_Name
(Chars
(Node
));
247 when N_Defining_Program_Unit_Name
=>
248 Add_Node_Name
(Name
(Node
));
250 Add_Node_Name
(Defining_Identifier
(Node
));
253 | N_Selected_Component
255 Add_Node_Name
(Prefix
(Node
));
257 Add_Node_Name
(Selector_Name
(Node
));
259 when N_Package_Specification
260 | N_Subprogram_Specification
262 Add_Node_Name
(Defining_Unit_Name
(Node
));
264 when N_Generic_Declaration
265 | N_Package_Declaration
267 | N_Subprogram_Declaration
269 Add_Node_Name
(Specification
(Node
));
271 when N_Generic_Instantiation
=>
272 Add_Node_Name
(Defining_Unit_Name
(Node
));
274 when N_Package_Body
=>
275 Add_Node_Name
(Defining_Unit_Name
(Node
));
277 when N_Protected_Body
280 Add_Node_Name
(Defining_Identifier
(Node
));
282 when N_Package_Renaming_Declaration
=>
283 Add_Node_Name
(Defining_Unit_Name
(Node
));
285 when N_Subprogram_Renaming_Declaration
=>
286 Add_Node_Name
(Specification
(Node
));
288 when N_Generic_Renaming_Declaration
=>
289 Add_Node_Name
(Defining_Unit_Name
(Node
));
291 when N_Subprogram_Body_Stub
=>
292 Add_Node_Name
(Get_Parent
(Node
));
294 Add_Node_Name
(Specification
(Node
));
296 when N_Compilation_Unit
=>
297 Add_Node_Name
(Unit
(Node
));
299 when N_Package_Body_Stub
=>
300 Add_Node_Name
(Get_Parent
(Node
));
302 Add_Node_Name
(Defining_Identifier
(Node
));
304 when N_Protected_Body_Stub
307 Add_Node_Name
(Get_Parent
(Node
));
309 Add_Node_Name
(Defining_Identifier
(Node
));
312 Add_Node_Name
(Name
(Node
));
314 Add_Node_Name
(Proper_Body
(Node
));
316 when N_With_Clause
=>
317 Add_Node_Name
(Name
(Node
));
320 Add_Node_Name
(Expression
(First
321 (Pragma_Argument_Associations
(Node
))));
323 -- Tasks and protected stuff appear only in an error context,
324 -- but the error has been posted elsewhere, so we deal nicely
325 -- with these error situations here, and produce a reasonable
326 -- unit name using the defining identifier.
328 when N_Protected_Type_Declaration
329 | N_Single_Protected_Declaration
330 | N_Single_Task_Declaration
331 | N_Task_Type_Declaration
333 Add_Node_Name
(Defining_Identifier
(Node
));
345 function Get_Parent
(Node
: Node_Id
) return Node_Id
is
349 while Nkind
(N
) /= N_Compilation_Unit
loop
356 -- Start of processing for Get_Unit_Name
361 -- If we have Defining_Identifier, find the associated unit node
363 if Nkind
(Node
) = N_Defining_Identifier
then
364 Node
:= Declaration_Node
(Node
);
366 -- If an expanded name, it is an already analyzed child unit, find
369 elsif Nkind
(Node
) = N_Expanded_Name
then
370 Node
:= Declaration_Node
(Entity
(Node
));
373 if Nkind
(Node
) = N_Package_Specification
374 or else Nkind
(Node
) in N_Subprogram_Specification
376 Node
:= Parent
(Node
);
379 -- Node points to the unit, so get its name and add proper suffix
381 Add_Node_Name
(Node
);
385 when N_Generic_Declaration
386 | N_Generic_Instantiation
387 | N_Generic_Renaming_Declaration
388 | N_Package_Declaration
389 | N_Package_Renaming_Declaration
391 | N_Protected_Type_Declaration
392 | N_Single_Protected_Declaration
393 | N_Single_Task_Declaration
394 | N_Subprogram_Declaration
395 | N_Subprogram_Renaming_Declaration
396 | N_Task_Type_Declaration
405 | N_Selected_Component
416 Name_Buffer
(1 .. Unit_Name_Length
) :=
417 Unit_Name_Buffer
(1 .. Unit_Name_Length
);
418 Name_Len
:= Unit_Name_Length
;
423 --------------------------
424 -- Get_Unit_Name_String --
425 --------------------------
427 procedure Get_Unit_Name_String
429 Suffix
: Boolean := True)
431 Unit_Is_Body
: Boolean;
434 Get_Decoded_Name_String
(N
);
435 Unit_Is_Body
:= Name_Buffer
(Name_Len
) = 'b';
436 Set_Casing
(Identifier_Casing
(Source_Index
(Main_Unit
)));
438 -- A special fudge, normally we don't have operator symbols present,
439 -- since it is always an error to do so. However, if we do, at this
440 -- stage it has the form:
444 -- and the %s or %b has already been eliminated so put 2 chars back
446 if Name_Buffer
(1) = '"' then
447 Name_Len
:= Name_Len
+ 2;
450 -- Now adjust the %s or %b to (spec) or (body)
454 Name_Buffer
(Name_Len
- 1 .. Name_Len
+ 5) := " (body)";
456 Name_Buffer
(Name_Len
- 1 .. Name_Len
+ 5) := " (spec)";
460 for J
in 1 .. Name_Len
loop
461 if Name_Buffer
(J
) = '-' then
462 Name_Buffer
(J
) := '.';
469 Name_Len
:= Name_Len
+ (7 - 2);
471 Name_Len
:= Name_Len
- 2;
473 end Get_Unit_Name_String
;
479 function Is_Body_Name
(N
: Unit_Name_Type
) return Boolean is
483 and then Name_Buffer
(Name_Len
- 1) = '%'
484 and then Name_Buffer
(Name_Len
) = 'b';
491 function Is_Child_Name
(N
: Unit_Name_Type
) return Boolean is
498 while Name_Buffer
(J
) /= '.' loop
500 return False; -- not a child or subunit name
513 function Is_Spec_Name
(N
: Unit_Name_Type
) return Boolean is
517 and then Name_Buffer
(Name_Len
- 1) = '%'
518 and then Name_Buffer
(Name_Len
) = 's';
521 -----------------------
522 -- Name_To_Unit_Name --
523 -----------------------
525 function Name_To_Unit_Name
(N
: Name_Id
) return Unit_Name_Type
is
528 Name_Buffer
(Name_Len
+ 1) := '%';
529 Name_Buffer
(Name_Len
+ 2) := 's';
530 Name_Len
:= Name_Len
+ 2;
532 end Name_To_Unit_Name
;
539 (Old
: Unit_Name_Type
;
540 Newp
: Unit_Name_Type
) return Unit_Name_Type
545 Get_Name_String
(Old
);
548 Child
: constant String := Name_Buffer
(1 .. Name_Len
);
551 Get_Name_String
(Newp
);
552 Name_Len
:= Name_Len
- 2;
555 while Child
(P
) /= '.' loop
559 while P
<= Child
'Last loop
560 Name_Len
:= Name_Len
+ 1;
561 Name_Buffer
(Name_Len
) := Child
(P
);
573 function Uname_Ge
(Left
, Right
: Unit_Name_Type
) return Boolean is
575 return Left
= Right
or else Uname_Gt
(Left
, Right
);
582 function Uname_Gt
(Left
, Right
: Unit_Name_Type
) return Boolean is
584 return Left
/= Right
and then not Uname_Lt
(Left
, Right
);
591 function Uname_Le
(Left
, Right
: Unit_Name_Type
) return Boolean is
593 return Left
= Right
or else Uname_Lt
(Left
, Right
);
600 function Uname_Lt
(Left
, Right
: Unit_Name_Type
) return Boolean is
601 Left_Name
: String (1 .. Hostparm
.Max_Name_Length
);
602 Left_Length
: Natural;
603 Right_Name
: String renames Name_Buffer
;
604 Right_Length
: Natural renames Name_Len
;
608 pragma Warnings
(Off
, Right_Length
);
609 -- Suppress warnings on Right_Length, used in pragma Assert
615 Get_Name_String
(Left
);
616 Left_Name
(1 .. Name_Len
+ 1) := Name_Buffer
(1 .. Name_Len
+ 1);
617 Left_Length
:= Name_Len
;
618 Get_Name_String
(Right
);
622 exit when Left_Name
(J
) = '%';
624 if Right_Name
(J
) = '%' then
625 return False; -- left name is longer
628 pragma Assert
(J
<= Left_Length
and then J
<= Right_Length
);
630 if Left_Name
(J
) /= Right_Name
(J
) then
631 return Left_Name
(J
) < Right_Name
(J
); -- parent names different
637 -- Come here pointing to % in left name
639 if Right_Name
(J
) /= '%' then
640 return True; -- right name is longer
643 -- Here the parent names are the same and specs sort low. If neither is
644 -- a spec, then we are comparing the same name and we want a result of
645 -- False in any case.
647 return Left_Name
(J
+ 1) = 's';
650 ---------------------
651 -- Write_Unit_Name --
652 ---------------------
654 procedure Write_Unit_Name
(N
: Unit_Name_Type
) is
656 Get_Unit_Name_String
(N
);
657 Write_Str
(Name_Buffer
(1 .. Name_Len
));