1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 2009-2018, 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 Einfo
; use Einfo
;
27 with Nlists
; use Nlists
;
28 with Rtsfind
; use Rtsfind
;
29 with Sem_Aux
; use Sem_Aux
;
30 with Sinfo
; use Sinfo
;
31 with Stand
; use Stand
;
32 with SCIL_LL
; use SCIL_LL
;
34 package body Sem_SCIL
is
40 function Check_SCIL_Node
(N
: Node_Id
) return Traverse_Result
is
41 SCIL_Node
: constant Node_Id
:= Get_SCIL_Node
(N
);
46 -- For nodes that do not have SCIL node continue traversing the tree
48 if No
(SCIL_Node
) then
52 case Nkind
(SCIL_Node
) is
53 when N_SCIL_Dispatch_Table_Tag_Init
=>
54 pragma Assert
(Nkind
(N
) = N_Object_Declaration
);
57 when N_SCIL_Dispatching_Call
=>
58 Ctrl_Tag
:= SCIL_Controlling_Tag
(SCIL_Node
);
60 -- Parent of SCIL dispatching call nodes MUST be a subprogram call
62 if Nkind
(N
) not in N_Subprogram_Call
then
65 -- In simple cases the controlling tag is the tag of the
66 -- controlling argument (i.e. Obj.Tag).
68 elsif Nkind
(Ctrl_Tag
) = N_Selected_Component
then
69 Ctrl_Typ
:= Etype
(Ctrl_Tag
);
71 -- Interface types are unsupported
73 if Is_Interface
(Ctrl_Typ
)
74 or else (RTE_Available
(RE_Interface_Tag
)
75 and then Ctrl_Typ
= RTE
(RE_Interface_Tag
))
80 pragma Assert
(Ctrl_Typ
= RTE
(RE_Tag
));
84 -- When the controlling tag of a dispatching call is an identifier
85 -- the SCIL_Controlling_Tag attribute references the corresponding
86 -- object or parameter declaration. Interface types are still
89 elsif Nkind_In
(Ctrl_Tag
, N_Object_Declaration
,
90 N_Parameter_Specification
)
92 Ctrl_Typ
:= Etype
(Defining_Identifier
(Ctrl_Tag
));
94 -- Interface types are unsupported.
96 if Is_Interface
(Ctrl_Typ
)
97 or else (RTE_Available
(RE_Interface_Tag
)
98 and then Ctrl_Typ
= RTE
(RE_Interface_Tag
))
99 or else (Is_Access_Type
(Ctrl_Typ
)
103 (Base_Type
(Designated_Type
(Ctrl_Typ
)))))
109 (Ctrl_Typ
= RTE
(RE_Tag
)
111 (Is_Access_Type
(Ctrl_Typ
)
112 and then Available_View
113 (Base_Type
(Designated_Type
(Ctrl_Typ
)))
118 -- Interface types are unsupported
120 elsif Is_Interface
(Etype
(Ctrl_Tag
)) then
124 pragma Assert
(False);
130 when N_SCIL_Membership_Test
=>
132 -- Check contents of the boolean expression associated with the
135 pragma Assert
(Nkind_In
(N
, N_Identifier
,
138 N_Expression_With_Actions
)
139 and then Etype
(N
) = Standard_Boolean
);
141 -- Check the entity identifier of the associated tagged type (that
142 -- is, in testing for membership in T'Class, the entity id of the
145 -- Note: When the SCIL node is generated the private and full-view
146 -- of the tagged types may have been swapped and hence the node
147 -- referenced by attribute SCIL_Entity may be the private view.
148 -- Therefore, in order to uniformly locate the full-view we use
149 -- attribute Underlying_Type.
152 (Is_Tagged_Type
(Underlying_Type
(SCIL_Entity
(SCIL_Node
))));
154 -- Interface types are unsupported
157 (not Is_Interface
(Underlying_Type
(SCIL_Entity
(SCIL_Node
))));
159 -- Check the decoration of the expression that denotes the tag
160 -- value being tested
162 Ctrl_Tag
:= SCIL_Tag_Value
(SCIL_Node
);
164 case Nkind
(Ctrl_Tag
) is
166 -- For class-wide membership tests the SCIL tag value is the
167 -- tag of the tested object (i.e. Obj.Tag).
169 when N_Selected_Component
=>
170 pragma Assert
(Etype
(Ctrl_Tag
) = RTE
(RE_Tag
));
174 pragma Assert
(False);
181 pragma Assert
(False);
188 -------------------------
189 -- First_Non_SCIL_Node --
190 -------------------------
192 function First_Non_SCIL_Node
(L
: List_Id
) return Node_Id
is
197 while Nkind
(N
) in N_SCIL_Node
loop
202 end First_Non_SCIL_Node
;
204 ------------------------
205 -- Next_Non_SCIL_Node --
206 ------------------------
208 function Next_Non_SCIL_Node
(N
: Node_Id
) return Node_Id
is
213 while Nkind
(Aux_N
) in N_SCIL_Node
loop
218 end Next_Non_SCIL_Node
;