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 Einfo
; use Einfo
;
28 with Exp_Ch5
; use Exp_Ch5
;
29 with Exp_Dbug
; use Exp_Dbug
;
30 with Exp_Util
; use Exp_Util
;
31 with Sem_Res
; use Sem_Res
;
32 with Sem_Util
; use Sem_Util
;
33 with Sinfo
; use Sinfo
;
34 with Tbuild
; use Tbuild
;
36 package body Exp_SPARK
is
38 -----------------------
39 -- Local Subprograms --
40 -----------------------
42 procedure Expand_SPARK_N_Object_Renaming_Declaration
(N
: Node_Id
);
43 -- Perform name evaluation for a renamed object
49 procedure Expand_SPARK
(N
: Node_Id
) is
53 -- Qualification of entity names in formal verification mode
54 -- is limited to the addition of a suffix for homonyms (see
55 -- Exp_Dbug.Qualify_Entity_Name). We used to qualify entity names
56 -- as full expansion does, but this was removed as this prevents the
57 -- verification back-end from using a short name for debugging and
58 -- user interaction. The verification back-end already takes care
59 -- of qualifying names when needed.
61 when N_Block_Statement |
64 N_Package_Declaration |
65 N_Protected_Type_Declaration |
67 N_Task_Type_Declaration
=>
68 Qualify_Entity_Names
(N
);
70 when N_Expanded_Name |
72 Expand_SPARK_Potential_Renaming
(N
);
74 when N_Object_Renaming_Declaration
=>
75 Expand_SPARK_N_Object_Renaming_Declaration
(N
);
77 -- Loop iterations over arrays need to be expanded, to avoid getting
78 -- two names referring to the same object in memory (the array and
79 -- the iterator) in GNATprove, especially since both can be written
80 -- (thus possibly leading to interferences due to aliasing). No such
81 -- problem arises with quantified expressions over arrays, which are
82 -- dealt with specially in GNATprove.
84 when N_Loop_Statement
=>
86 Scheme
: constant Node_Id
:= Iteration_Scheme
(N
);
89 and then Present
(Iterator_Specification
(Scheme
))
91 Is_Iterator_Over_Array
(Iterator_Specification
(Scheme
))
93 Expand_Iterator_Loop_Over_Array
(N
);
97 -- In SPARK mode, no other constructs require expansion
104 ------------------------------------------------
105 -- Expand_SPARK_N_Object_Renaming_Declaration --
106 ------------------------------------------------
108 procedure Expand_SPARK_N_Object_Renaming_Declaration
(N
: Node_Id
) is
110 -- Unconditionally remove all side effects from the name
112 Evaluate_Name
(Name
(N
));
113 end Expand_SPARK_N_Object_Renaming_Declaration
;
115 -------------------------------------
116 -- Expand_SPARK_Potential_Renaming --
117 -------------------------------------
119 procedure Expand_SPARK_Potential_Renaming
(N
: Node_Id
) is
120 Loc
: constant Source_Ptr
:= Sloc
(N
);
121 Ren_Id
: constant Entity_Id
:= Entity
(N
);
122 Typ
: constant Entity_Id
:= Etype
(N
);
126 -- Replace a reference to a renaming with the actual renamed object
128 if Ekind
(Ren_Id
) in Object_Kind
then
129 Obj_Id
:= Renamed_Object
(Ren_Id
);
131 if Present
(Obj_Id
) then
133 -- The renamed object is an entity when instantiating generics
134 -- or inlining bodies. In this case the renaming is part of the
135 -- mapping "prologue" which links actuals to formals.
137 if Nkind
(Obj_Id
) in N_Entity
then
138 Rewrite
(N
, New_Occurrence_Of
(Obj_Id
, Loc
));
140 -- Otherwise the renamed object denotes a name
143 Rewrite
(N
, New_Copy_Tree
(Obj_Id
));
144 Reset_Analyzed_Flags
(N
);
147 Analyze_And_Resolve
(N
, Typ
);
150 end Expand_SPARK_Potential_Renaming
;