1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
10 -- Copyright (C) 1992-2002 Free Software Foundation, Inc. --
12 -- GNAT is free software; you can redistribute it and/or modify it under --
13 -- terms of the GNU General Public License as published by the Free Soft- --
14 -- ware Foundation; either version 2, or (at your option) any later ver- --
15 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
18 -- for more details. You should have received a copy of the GNU General --
19 -- Public License distributed with GNAT; see file COPYING. If not, write --
20 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
21 -- MA 02111-1307, USA. --
23 -- GNAT was originally developed by the GNAT team at New York University. --
24 -- Extensive contributions were provided by Ada Core Technologies Inc. --
26 ------------------------------------------------------------------------------
28 with Atree
; use Atree
;
29 with Casing
; use Casing
;
30 with Einfo
; use Einfo
;
31 with Errout
; use Errout
;
32 with Exp_Ch11
; use Exp_Ch11
;
33 with Exp_Tss
; use Exp_Tss
;
34 with Exp_Util
; use Exp_Util
;
35 with Expander
; use Expander
;
36 with Namet
; use Namet
;
37 with Nlists
; use Nlists
;
38 with Nmake
; use Nmake
;
40 with Rtsfind
; use Rtsfind
;
42 with Sem_Eval
; use Sem_Eval
;
43 with Sem_Res
; use Sem_Res
;
44 with Sem_Util
; use Sem_Util
;
45 with Sinfo
; use Sinfo
;
46 with Sinput
; use Sinput
;
47 with Snames
; use Snames
;
48 with Stringt
; use Stringt
;
49 with Stand
; use Stand
;
50 with Tbuild
; use Tbuild
;
51 with Uintp
; use Uintp
;
53 package body Exp_Prag
is
55 -----------------------
56 -- Local Subprograms --
57 -----------------------
59 function Arg1
(N
: Node_Id
) return Node_Id
;
60 function Arg2
(N
: Node_Id
) return Node_Id
;
61 -- Obtain specified Pragma_Argument_Association
63 procedure Expand_Pragma_Abort_Defer
(N
: Node_Id
);
64 procedure Expand_Pragma_Assert
(N
: Node_Id
);
65 procedure Expand_Pragma_Import
(N
: Node_Id
);
66 procedure Expand_Pragma_Import_Export_Exception
(N
: Node_Id
);
67 procedure Expand_Pragma_Inspection_Point
(N
: Node_Id
);
68 procedure Expand_Pragma_Interrupt_Priority
(N
: Node_Id
);
74 function Arg1
(N
: Node_Id
) return Node_Id
is
76 return First
(Pragma_Argument_Associations
(N
));
83 function Arg2
(N
: Node_Id
) return Node_Id
is
85 return Next
(Arg1
(N
));
92 procedure Expand_N_Pragma
(N
: Node_Id
) is
94 -- Note: we may have a pragma whose chars field is not a
95 -- recognized pragma, and we must ignore it at this stage.
97 if Is_Pragma_Name
(Chars
(N
)) then
98 case Get_Pragma_Id
(Chars
(N
)) is
100 -- Pragmas requiring special expander action
102 when Pragma_Abort_Defer
=>
103 Expand_Pragma_Abort_Defer
(N
);
105 when Pragma_Assert
=>
106 Expand_Pragma_Assert
(N
);
108 when Pragma_Export_Exception
=>
109 Expand_Pragma_Import_Export_Exception
(N
);
111 when Pragma_Import
=>
112 Expand_Pragma_Import
(N
);
114 when Pragma_Import_Exception
=>
115 Expand_Pragma_Import_Export_Exception
(N
);
117 when Pragma_Inspection_Point
=>
118 Expand_Pragma_Inspection_Point
(N
);
120 when Pragma_Interrupt_Priority
=>
121 Expand_Pragma_Interrupt_Priority
(N
);
123 -- All other pragmas need no expander action
131 -------------------------------
132 -- Expand_Pragma_Abort_Defer --
133 -------------------------------
135 -- An Abort_Defer pragma appears as the first statement in a handled
136 -- statement sequence (right after the begin). It defers aborts for
137 -- the entire statement sequence, but not for any declarations or
138 -- handlers (if any) associated with this statement sequence.
140 -- The transformation is to transform
142 -- pragma Abort_Defer;
151 -- when all others =>
152 -- Abort_Undefer.all;
155 -- Abort_Undefer_Direct;
158 procedure Expand_Pragma_Abort_Defer
(N
: Node_Id
) is
159 Loc
: constant Source_Ptr
:= Sloc
(N
);
163 Blk
: constant Entity_Id
:=
164 New_Internal_Entity
(E_Block
, Current_Scope
, Sloc
(N
), 'B');
167 Stms
:= New_List
(Build_Runtime_Call
(Loc
, RE_Abort_Defer
));
170 Stm
:= Remove_Next
(N
);
176 Make_Handled_Sequence_Of_Statements
(Loc
,
179 New_Occurrence_Of
(RTE
(RE_Abort_Undefer_Direct
), Loc
));
182 Make_Block_Statement
(Loc
,
183 Handled_Statement_Sequence
=> HSS
));
185 Set_Scope
(Blk
, Current_Scope
);
186 Set_Etype
(Blk
, Standard_Void_Type
);
187 Set_Identifier
(N
, New_Occurrence_Of
(Blk
, Sloc
(N
)));
188 Expand_At_End_Handler
(HSS
, Blk
);
190 end Expand_Pragma_Abort_Defer
;
192 --------------------------
193 -- Expand_Pragma_Assert --
194 --------------------------
196 procedure Expand_Pragma_Assert
(N
: Node_Id
) is
197 Loc
: constant Source_Ptr
:= Sloc
(N
);
198 Cond
: constant Node_Id
:= Expression
(Arg1
(N
));
202 -- We already know that assertions are enabled, because otherwise
203 -- the semantic pass dealt with rewriting the assertion (see Sem_Prag)
205 pragma Assert
(Assertions_Enabled
);
207 -- Since assertions are on, we rewrite the pragma with its
208 -- corresponding if statement, and then analyze the statement
209 -- The expansion transforms:
211 -- pragma Assert (condition [,message]);
215 -- if not condition then
216 -- System.Assertions.Raise_Assert_Failure (Str);
219 -- where Str is the message if one is present, or the default of
220 -- file:line if no message is given.
222 -- First, we need to prepare the character literal
224 if Present
(Arg2
(N
)) then
225 Msg
:= Strval
(Expr_Value_S
(Expression
(Arg2
(N
))));
227 Build_Location_String
(Loc
);
228 Msg
:= String_From_Name_Buffer
;
231 -- Now generate the if statement. Note that we consider this to be
232 -- an explicit conditional in the source, not an implicit if, so we
233 -- do not call Make_Implicit_If_Statement.
236 Make_If_Statement
(Loc
,
240 Then_Statements
=> New_List
(
241 Make_Procedure_Call_Statement
(Loc
,
243 New_Reference_To
(RTE
(RE_Raise_Assert_Failure
), Loc
),
244 Parameter_Associations
=> New_List
(
245 Make_String_Literal
(Loc
, Msg
))))));
249 -- If new condition is always false, give a warning
251 if Nkind
(N
) = N_Procedure_Call_Statement
252 and then Is_RTE
(Entity
(Name
(N
)), RE_Raise_Assert_Failure
)
254 -- If original condition was a Standard.False, we assume
255 -- that this is indeed intented to raise assert error
256 -- and no warning is required.
258 if Is_Entity_Name
(Original_Node
(Cond
))
259 and then Entity
(Original_Node
(Cond
)) = Standard_False
263 Error_Msg_N
("?assertion will fail at run-time", N
);
266 end Expand_Pragma_Assert
;
268 --------------------------
269 -- Expand_Pragma_Import --
270 --------------------------
272 -- When applied to a variable, the default initialization must not be
273 -- done. As it is already done when the pragma is found, we just get rid
274 -- of the call the initialization procedure which followed the object
277 -- We can't use the freezing mechanism for this purpose, since we
278 -- have to elaborate the initialization expression when it is first
279 -- seen (i.e. this elaboration cannot be deferred to the freeze point).
281 procedure Expand_Pragma_Import
(N
: Node_Id
) is
282 Def_Id
: constant Entity_Id
:= Entity
(Expression
(Arg2
(N
)));
287 if Ekind
(Def_Id
) = E_Variable
then
288 Typ
:= Etype
(Def_Id
);
289 After_Def
:= Next
(Parent
(Def_Id
));
291 if Has_Non_Null_Base_Init_Proc
(Typ
)
292 and then Nkind
(After_Def
) = N_Procedure_Call_Statement
293 and then Is_Entity_Name
(Name
(After_Def
))
294 and then Entity
(Name
(After_Def
)) = Base_Init_Proc
(Typ
)
298 elsif Is_Access_Type
(Typ
) then
299 Set_Expression
(Parent
(Def_Id
), Empty
);
302 end Expand_Pragma_Import
;
304 -------------------------------------------
305 -- Expand_Pragma_Import_Export_Exception --
306 -------------------------------------------
308 -- For a VMS exception fix up the language field with "VMS"
309 -- instead of "Ada" (gigi needs this), create a constant that will be the
310 -- value of the VMS condition code and stuff the Interface_Name field
311 -- with the unexpanded name of the exception (if not already set).
312 -- For a Ada exception, just stuff the Interface_Name field
313 -- with the unexpanded name of the exception (if not already set).
315 procedure Expand_Pragma_Import_Export_Exception
(N
: Node_Id
) is
316 Id
: constant Entity_Id
:= Entity
(Expression
(Arg1
(N
)));
317 Call
: constant Node_Id
:= Register_Exception_Call
(Id
);
318 Loc
: constant Source_Ptr
:= Sloc
(N
);
320 if Present
(Call
) then
322 Excep_Internal
: constant Node_Id
:=
323 Make_Defining_Identifier
324 (Loc
, New_Internal_Name
('V'));
325 Export_Pragma
: Node_Id
;
326 Excep_Alias
: Node_Id
;
327 Excep_Object
: Node_Id
;
328 Excep_Image
: String_Id
;
335 if Present
(Interface_Name
(Id
)) then
336 Excep_Image
:= Strval
(Interface_Name
(Id
));
338 Get_Name_String
(Chars
(Id
));
340 Excep_Image
:= String_From_Name_Buffer
;
343 Exdata
:= Component_Associations
(Expression
(Parent
(Id
)));
345 if Is_VMS_Exception
(Id
) then
347 Lang1
:= Next
(First
(Exdata
));
348 Lang2
:= Next
(Lang1
);
349 Lang3
:= Next
(Lang2
);
351 Rewrite
(Expression
(Lang1
),
352 Make_Character_Literal
(Loc
, Name_uV
, Get_Char_Code
('V')));
353 Analyze
(Expression
(Lang1
));
355 Rewrite
(Expression
(Lang2
),
356 Make_Character_Literal
(Loc
, Name_uM
, Get_Char_Code
('M')));
357 Analyze
(Expression
(Lang2
));
359 Rewrite
(Expression
(Lang3
),
360 Make_Character_Literal
(Loc
, Name_uS
, Get_Char_Code
('S')));
361 Analyze
(Expression
(Lang3
));
363 if Exception_Code
(Id
) /= No_Uint
then
364 Code
:= Make_Integer_Literal
(Loc
, Exception_Code
(Id
));
367 Make_Object_Declaration
(Loc
,
368 Defining_Identifier
=> Excep_Internal
,
370 New_Reference_To
(Standard_Integer
, Loc
));
372 Insert_Action
(N
, Excep_Object
);
373 Analyze
(Excep_Object
);
376 Store_String_Int
(UI_To_Int
(Exception_Code
(Id
)) / 8 * 8);
383 (Make_Pragma_Argument_Association
386 New_Reference_To
(Excep_Internal
, Loc
)),
387 Make_Pragma_Argument_Association
392 Strval
=> End_String
))));
394 Insert_Action
(N
, Excep_Alias
);
395 Analyze
(Excep_Alias
);
402 (Make_Pragma_Argument_Association
404 Expression
=> Make_Identifier
(Loc
, Name_C
)),
405 Make_Pragma_Argument_Association
408 New_Reference_To
(Excep_Internal
, Loc
)),
409 Make_Pragma_Argument_Association
414 Strval
=> Excep_Image
)),
415 Make_Pragma_Argument_Association
420 Strval
=> Excep_Image
))));
422 Insert_Action
(N
, Export_Pragma
);
423 Analyze
(Export_Pragma
);
427 Unchecked_Convert_To
(Standard_Integer
,
428 Make_Function_Call
(Loc
,
430 New_Reference_To
(RTE
(RE_Import_Value
), Loc
),
431 Parameter_Associations
=> New_List
432 (Make_String_Literal
(Loc
,
433 Strval
=> Excep_Image
))));
437 Make_Procedure_Call_Statement
(Loc
,
438 Name
=> New_Reference_To
439 (RTE
(RE_Register_VMS_Exception
), Loc
),
440 Parameter_Associations
=> New_List
(Code
)));
442 Analyze_And_Resolve
(Code
, Standard_Integer
);
447 if not Present
(Interface_Name
(Id
)) then
448 Set_Interface_Name
(Id
,
451 Strval
=> Excep_Image
));
455 end Expand_Pragma_Import_Export_Exception
;
457 ------------------------------------
458 -- Expand_Pragma_Inspection_Point --
459 ------------------------------------
461 -- If no argument is given, then we supply a default argument list that
462 -- includes all objects declared at the source level in all subprograms
463 -- that enclose the inspection point pragma.
465 procedure Expand_Pragma_Inspection_Point
(N
: Node_Id
) is
466 Loc
: constant Source_Ptr
:= Sloc
(N
);
473 if No
(Pragma_Argument_Associations
(N
)) then
477 while S
/= Standard_Standard
loop
478 E
:= First_Entity
(S
);
479 while Present
(E
) loop
480 if Comes_From_Source
(E
)
481 and then Is_Object
(E
)
482 and then not Is_Entry_Formal
(E
)
483 and then Ekind
(E
) /= E_Component
484 and then Ekind
(E
) /= E_Discriminant
485 and then Ekind
(E
) /= E_Generic_In_Parameter
486 and then Ekind
(E
) /= E_Generic_In_Out_Parameter
489 Make_Pragma_Argument_Association
(Loc
,
490 Expression
=> New_Occurrence_Of
(E
, Loc
)));
499 Set_Pragma_Argument_Associations
(N
, A
);
502 -- Expand the arguments of the pragma. Expanding an entity reference
503 -- is a noop, except in a protected operation, where a reference may
504 -- have to be transformed into a reference to the corresponding prival.
505 -- Are there other pragmas that may require this ???
507 Assoc
:= First
(Pragma_Argument_Associations
(N
));
509 while Present
(Assoc
) loop
510 Expand
(Expression
(Assoc
));
513 end Expand_Pragma_Inspection_Point
;
515 --------------------------------------
516 -- Expand_Pragma_Interrupt_Priority --
517 --------------------------------------
519 -- Supply default argument if none exists (System.Interrupt_Priority'Last)
521 procedure Expand_Pragma_Interrupt_Priority
(N
: Node_Id
) is
522 Loc
: constant Source_Ptr
:= Sloc
(N
);
525 if No
(Pragma_Argument_Associations
(N
)) then
526 Set_Pragma_Argument_Associations
(N
, New_List
(
527 Make_Pragma_Argument_Association
(Loc
,
529 Make_Attribute_Reference
(Loc
,
531 New_Occurrence_Of
(RTE
(RE_Interrupt_Priority
), Loc
),
532 Attribute_Name
=> Name_Last
))));
534 end Expand_Pragma_Interrupt_Priority
;