1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
5 -- E X P _ S P A R K --
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. 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 Atree
; use Atree
;
27 with Checks
; use Checks
;
28 with Einfo
; use Einfo
;
29 with Exp_Ch5
; use Exp_Ch5
;
30 with Exp_Dbug
; use Exp_Dbug
;
31 with Exp_Util
; use Exp_Util
;
32 with Namet
; use Namet
;
33 with Nlists
; use Nlists
;
34 with Nmake
; use Nmake
;
35 with Rtsfind
; use Rtsfind
;
36 with Sem_Eval
; use Sem_Eval
;
37 with Sem_Res
; use Sem_Res
;
38 with Sem_Util
; use Sem_Util
;
39 with Sinfo
; use Sinfo
;
40 with Snames
; use Snames
;
41 with Stand
; use Stand
;
42 with Tbuild
; use Tbuild
;
43 with Uintp
; use Uintp
;
45 package body Exp_SPARK
is
47 -----------------------
48 -- Local Subprograms --
49 -----------------------
51 procedure Expand_SPARK_Attribute_Reference
(N
: Node_Id
);
52 -- Replace occurrences of System'To_Address by calls to
53 -- System.Storage_Elements.To_Address
55 procedure Expand_SPARK_N_Object_Renaming_Declaration
(N
: Node_Id
);
56 -- Perform name evaluation for a renamed object
62 procedure Expand_SPARK
(N
: Node_Id
) is
66 -- Qualification of entity names in formal verification mode
67 -- is limited to the addition of a suffix for homonyms (see
68 -- Exp_Dbug.Qualify_Entity_Name). We used to qualify entity names
69 -- as full expansion does, but this was removed as this prevents the
70 -- verification back-end from using a short name for debugging and
71 -- user interaction. The verification back-end already takes care
72 -- of qualifying names when needed.
74 when N_Block_Statement
77 | N_Package_Declaration
78 | N_Protected_Type_Declaration
80 | N_Task_Type_Declaration
82 Qualify_Entity_Names
(N
);
87 Expand_SPARK_Potential_Renaming
(N
);
89 when N_Object_Renaming_Declaration
=>
90 Expand_SPARK_N_Object_Renaming_Declaration
(N
);
92 -- Replace occurrences of System'To_Address by calls to
93 -- System.Storage_Elements.To_Address
95 when N_Attribute_Reference
=>
96 Expand_SPARK_Attribute_Reference
(N
);
98 -- Loop iterations over arrays need to be expanded, to avoid getting
99 -- two names referring to the same object in memory (the array and
100 -- the iterator) in GNATprove, especially since both can be written
101 -- (thus possibly leading to interferences due to aliasing). No such
102 -- problem arises with quantified expressions over arrays, which are
103 -- dealt with specially in GNATprove.
105 when N_Loop_Statement
=>
107 Scheme
: constant Node_Id
:= Iteration_Scheme
(N
);
110 and then Present
(Iterator_Specification
(Scheme
))
112 Is_Iterator_Over_Array
(Iterator_Specification
(Scheme
))
114 Expand_Iterator_Loop_Over_Array
(N
);
118 -- In SPARK mode, no other constructs require expansion
125 --------------------------------------
126 -- Expand_SPARK_Attribute_Reference --
127 --------------------------------------
129 procedure Expand_SPARK_Attribute_Reference
(N
: Node_Id
) is
130 Aname
: constant Name_Id
:= Attribute_Name
(N
);
131 Attr_Id
: constant Attribute_Id
:= Get_Attribute_Id
(Aname
);
132 Loc
: constant Source_Ptr
:= Sloc
(N
);
133 Typ
: constant Entity_Id
:= Etype
(N
);
137 if Attr_Id
= Attribute_To_Address
then
139 -- Extract and convert argument to expected type for call
142 Make_Type_Conversion
(Loc
,
144 New_Occurrence_Of
(RTE
(RE_Integer_Address
), Loc
),
145 Expression
=> Relocate_Node
(First
(Expressions
(N
))));
147 -- Replace attribute reference with call
150 Make_Function_Call
(Loc
,
152 New_Occurrence_Of
(RTE
(RE_To_Address
), Loc
),
153 Parameter_Associations
=> New_List
(Expr
)));
154 Analyze_And_Resolve
(N
, Typ
);
156 -- For attributes which return Universal_Integer, introduce a conversion
157 -- to the expected type with the appropriate check flags set.
159 elsif Attr_Id
= Attribute_Alignment
160 or else Attr_Id
= Attribute_Bit
161 or else Attr_Id
= Attribute_Bit_Position
162 or else Attr_Id
= Attribute_Descriptor_Size
163 or else Attr_Id
= Attribute_First_Bit
164 or else Attr_Id
= Attribute_Last_Bit
165 or else Attr_Id
= Attribute_Length
166 or else Attr_Id
= Attribute_Max_Size_In_Storage_Elements
167 or else Attr_Id
= Attribute_Pos
168 or else Attr_Id
= Attribute_Position
169 or else Attr_Id
= Attribute_Range_Length
170 or else Attr_Id
= Attribute_Object_Size
171 or else Attr_Id
= Attribute_Size
172 or else Attr_Id
= Attribute_Value_Size
173 or else Attr_Id
= Attribute_VADS_Size
174 or else Attr_Id
= Attribute_Aft
175 or else Attr_Id
= Attribute_Max_Alignment_For_Allocation
177 -- If the expected type is Long_Long_Integer, there will be no check
178 -- flag as the compiler assumes attributes always fit in this type.
179 -- Since in SPARK_Mode we do not take Storage_Error into account, we
180 -- cannot make this assumption and need to produce a check.
181 -- ??? It should be enough to add this check for attributes 'Length
182 -- and 'Range_Length when the type is as big as Long_Long_Integer.
185 Typ
: Entity_Id
:= Empty
;
187 if Attr_Id
= Attribute_Range_Length
then
188 Typ
:= Etype
(Prefix
(N
));
190 elsif Attr_Id
= Attribute_Length
then
191 Typ
:= Etype
(Prefix
(N
));
198 if Is_Access_Type
(Typ
) then
199 Typ
:= Designated_Type
(Typ
);
202 if No
(Expressions
(N
)) then
205 J
:= UI_To_Int
(Expr_Value
(First
(Expressions
(N
))));
208 Indx
:= First_Index
(Typ
);
218 Apply_Universal_Integer_Attribute_Checks
(N
);
221 and then RM_Size
(Typ
) = RM_Size
(Standard_Long_Long_Integer
)
223 Set_Do_Overflow_Check
(N
);
227 end Expand_SPARK_Attribute_Reference
;
229 ------------------------------------------------
230 -- Expand_SPARK_N_Object_Renaming_Declaration --
231 ------------------------------------------------
233 procedure Expand_SPARK_N_Object_Renaming_Declaration
(N
: Node_Id
) is
235 -- Unconditionally remove all side effects from the name
237 Evaluate_Name
(Name
(N
));
238 end Expand_SPARK_N_Object_Renaming_Declaration
;
240 -------------------------------------
241 -- Expand_SPARK_Potential_Renaming --
242 -------------------------------------
244 procedure Expand_SPARK_Potential_Renaming
(N
: Node_Id
) is
245 Loc
: constant Source_Ptr
:= Sloc
(N
);
246 Ren_Id
: constant Entity_Id
:= Entity
(N
);
247 Typ
: constant Entity_Id
:= Etype
(N
);
251 -- Replace a reference to a renaming with the actual renamed object
253 if Ekind
(Ren_Id
) in Object_Kind
then
254 Obj_Id
:= Renamed_Object
(Ren_Id
);
256 if Present
(Obj_Id
) then
258 -- The renamed object is an entity when instantiating generics
259 -- or inlining bodies. In this case the renaming is part of the
260 -- mapping "prologue" which links actuals to formals.
262 if Nkind
(Obj_Id
) in N_Entity
then
263 Rewrite
(N
, New_Occurrence_Of
(Obj_Id
, Loc
));
265 -- Otherwise the renamed object denotes a name
268 Rewrite
(N
, New_Copy_Tree
(Obj_Id
, New_Sloc
=> Loc
));
269 Reset_Analyzed_Flags
(N
);
272 Analyze_And_Resolve
(N
, Typ
);
275 end Expand_SPARK_Potential_Renaming
;