OSDN Git Service

dca021f92375d1c03b5bf94d09c4afd91298275c
[pf3gnuchains/gcc-fork.git] / gcc / ada / exp_ch11.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             E X P _ C H 1 1                              --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2011, Free Software Foundation, Inc.         --
10 --                                                                          --
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.          --
20 --                                                                          --
21 -- GNAT was originally developed  by the GNAT team at  New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
23 --                                                                          --
24 ------------------------------------------------------------------------------
25
26 with Atree;    use Atree;
27 with Casing;   use Casing;
28 with Debug;    use Debug;
29 with Einfo;    use Einfo;
30 with Elists;   use Elists;
31 with Errout;   use Errout;
32 with Exp_Ch7;  use Exp_Ch7;
33 with Exp_Util; use Exp_Util;
34 with Namet;    use Namet;
35 with Nlists;   use Nlists;
36 with Nmake;    use Nmake;
37 with Opt;      use Opt;
38 with Restrict; use Restrict;
39 with Rident;   use Rident;
40 with Rtsfind;  use Rtsfind;
41 with Sem;      use Sem;
42 with Sem_Ch8;  use Sem_Ch8;
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 Stand;    use Stand;
49 with Stringt;  use Stringt;
50 with Targparm; use Targparm;
51 with Tbuild;   use Tbuild;
52 with Uintp;    use Uintp;
53
54 package body Exp_Ch11 is
55
56    -----------------------
57    -- Local Subprograms --
58    -----------------------
59
60    procedure Warn_No_Exception_Propagation_Active (N : Node_Id);
61    --  Generates warning that pragma Restrictions (No_Exception_Propagation)
62    --  is in effect. Caller then generates appropriate continuation message.
63    --  N is the node on which the warning is placed.
64
65    procedure Warn_If_No_Propagation (N : Node_Id);
66    --  Called for an exception raise that is not a local raise (and thus can
67    --  not be optimized to a goto. Issues warning if No_Exception_Propagation
68    --  restriction is set. N is the node for the raise or equivalent call.
69
70    ---------------------------
71    -- Expand_At_End_Handler --
72    ---------------------------
73
74    --  For a handled statement sequence that has a cleanup (At_End_Proc
75    --  field set), an exception handler of the following form is required:
76
77    --     exception
78    --       when all others =>
79    --          cleanup call
80    --          raise;
81
82    --  Note: this exception handler is treated rather specially by
83    --  subsequent expansion in two respects:
84
85    --    The normal call to Undefer_Abort is omitted
86    --    The raise call does not do Defer_Abort
87
88    --  This is because the current tasking code seems to assume that
89    --  the call to the cleanup routine that is made from an exception
90    --  handler for the abort signal is called with aborts deferred.
91
92    --  This expansion is only done if we have front end exception handling.
93    --  If we have back end exception handling, then the AT END handler is
94    --  left alone, and cleanups (including the exceptional case) are handled
95    --  by the back end.
96
97    --  In the front end case, the exception handler described above handles
98    --  the exceptional case. The AT END handler is left in the generated tree
99    --  and the code generator (e.g. gigi) must still handle proper generation
100    --  of cleanup calls for the non-exceptional case.
101
102    procedure Expand_At_End_Handler (HSS : Node_Id; Block : Node_Id) is
103       Clean   : constant Entity_Id  := Entity (At_End_Proc (HSS));
104       Loc     : constant Source_Ptr := Sloc (Clean);
105       Ohandle : Node_Id;
106       Stmnts  : List_Id;
107
108    begin
109       pragma Assert (Present (Clean));
110       pragma Assert (No (Exception_Handlers (HSS)));
111
112       --  Don't expand if back end exception handling active
113
114       if Exception_Mechanism = Back_End_Exceptions then
115          return;
116       end if;
117
118       --  Don't expand an At End handler if we have already had configurable
119       --  run-time violations, since likely this will just be a matter of
120       --  generating useless cascaded messages
121
122       if Configurable_Run_Time_Violations > 0 then
123          return;
124       end if;
125
126       --  Don't expand an At End handler if we are not allowing exceptions
127       --  or if exceptions are transformed into local gotos, and never
128       --  propagated (No_Exception_Propagation).
129
130       if No_Exception_Handlers_Set then
131          return;
132       end if;
133
134       if Present (Block) then
135          Push_Scope (Block);
136       end if;
137
138       Ohandle :=
139         Make_Others_Choice (Loc);
140       Set_All_Others (Ohandle);
141
142       Stmnts := New_List (
143         Make_Procedure_Call_Statement (Loc,
144           Name => New_Occurrence_Of (Clean, Loc)));
145
146       --  Generate reraise statement as last statement of AT-END handler,
147       --  unless we are under control of No_Exception_Propagation, in which
148       --  case no exception propagation is possible anyway, so we do not need
149       --  a reraise (the AT END handler in this case is only for normal exits
150       --  not for exceptional exits). Also, we flag the Reraise statement as
151       --  being part of an AT END handler to prevent signalling this reraise
152       --  as a violation of the restriction when it is not set.
153
154       if not Restriction_Active (No_Exception_Propagation) then
155          declare
156             Rstm : constant Node_Id := Make_Raise_Statement (Loc);
157          begin
158             Set_From_At_End (Rstm);
159             Append_To (Stmnts, Rstm);
160          end;
161       end if;
162
163       Set_Exception_Handlers (HSS, New_List (
164         Make_Implicit_Exception_Handler (Loc,
165           Exception_Choices => New_List (Ohandle),
166           Statements        => Stmnts)));
167
168       Analyze_List (Stmnts, Suppress => All_Checks);
169       Expand_Exception_Handlers (HSS);
170
171       if Present (Block) then
172          Pop_Scope;
173       end if;
174    end Expand_At_End_Handler;
175
176    -------------------------------
177    -- Expand_Exception_Handlers --
178    -------------------------------
179
180    procedure Expand_Exception_Handlers (HSS : Node_Id) is
181       Handlrs       : constant List_Id    := Exception_Handlers (HSS);
182       Loc           : constant Source_Ptr := Sloc (HSS);
183       Handler       : Node_Id;
184       Others_Choice : Boolean;
185       Obj_Decl      : Node_Id;
186       Next_Handler  : Node_Id;
187
188       procedure Expand_Local_Exception_Handlers;
189       --  This procedure handles the expansion of exception handlers for the
190       --  optimization of local raise statements into goto statements.
191
192       procedure Prepend_Call_To_Handler
193         (Proc : RE_Id;
194          Args : List_Id := No_List);
195       --  Routine to prepend a call to the procedure referenced by Proc at
196       --  the start of the handler code for the current Handler.
197
198       procedure Replace_Raise_By_Goto (Raise_S : Node_Id; Goto_L1 : Node_Id);
199       --  Raise_S is a raise statement (possibly expanded, and possibly of the
200       --  form of a Raise_xxx_Error node with a condition. This procedure is
201       --  called to replace the raise action with the (already analyzed) goto
202       --  statement passed as Goto_L1. This procedure also takes care of the
203       --  requirement of inserting a Local_Raise call where possible.
204
205       -------------------------------------
206       -- Expand_Local_Exception_Handlers --
207       -------------------------------------
208
209       --  There are two cases for this transformation. First the case of
210       --  explicit raise statements. For this case, the transformation we do
211       --  looks like this. Right now we have for example (where L1, L2 are
212       --  exception labels)
213
214       --  begin
215       --     ...
216       --     raise_exception (excep1'identity);  -- was raise excep1
217       --     ...
218       --     raise_exception (excep2'identity);  -- was raise excep2
219       --     ...
220       --  exception
221       --     when excep1 =>
222       --        estmts1
223       --     when excep2 =>
224       --        estmts2
225       --  end;
226
227       --  This gets transformed into:
228
229       --  begin
230       --     L1 : label;                        -- marked Exception_Junk
231       --     L2 : label;                        -- marked Exception_Junk
232       --     L3 : label;                        -- marked Exception_Junk
233
234       --     begin                              -- marked Exception_Junk
235       --        ...
236       --        local_raise (excep1'address);   -- was raise excep1
237       --        goto L1;
238       --        ...
239       --        local_raise (excep2'address);   -- was raise excep2
240       --        goto L2;
241       --        ...
242       --     exception
243       --        when excep1 =>
244       --           goto L1;
245       --        when excep2 =>
246       --           goto L2;
247       --     end;
248
249       --     goto L3;        -- skip handler if no raise, marked Exception_Junk
250
251       --     <<L1>>          -- local excep target label, marked Exception_Junk
252       --        begin        -- marked Exception_Junk
253       --           estmts1
254       --        end;
255       --        goto L3;     -- marked Exception_Junk
256
257       --     <<L2>>          -- marked Exception_Junk
258       --        begin        -- marked Exception_Junk
259       --           estmts2
260       --        end;
261       --        goto L3;     -- marked Exception_Junk
262       --     <<L3>>          -- marked Exception_Junk
263       --  end;
264
265       --  Note: the reason we wrap the original statement sequence in an
266       --  inner block is that there may be raise statements within the
267       --  sequence of statements in the handlers, and we must ensure that
268       --  these are properly handled, and in particular, such raise statements
269       --  must not reenter the same exception handlers.
270
271       --  If the restriction No_Exception_Propagation is in effect, then we
272       --  can omit the exception handlers.
273
274       --  begin
275       --     L1 : label;                        -- marked Exception_Junk
276       --     L2 : label;                        -- marked Exception_Junk
277       --     L3 : label;                        -- marked Exception_Junk
278
279       --     begin                              -- marked Exception_Junk
280       --        ...
281       --        local_raise (excep1'address);   -- was raise excep1
282       --        goto L1;
283       --        ...
284       --        local_raise (excep2'address);   -- was raise excep2
285       --        goto L2;
286       --        ...
287       --     end;
288
289       --     goto L3;        -- skip handler if no raise, marked Exception_Junk
290
291       --     <<L1>>          -- local excep target label, marked Exception_Junk
292       --        begin        -- marked Exception_Junk
293       --           estmts1
294       --        end;
295       --        goto L3;     -- marked Exception_Junk
296
297       --     <<L2>>          -- marked Exception_Junk
298       --        begin        -- marked Exception_Junk
299       --           estmts2
300       --        end;
301
302       --     <<L3>>          -- marked Exception_Junk
303       --  end;
304
305       --  The second case is for exceptions generated by the back end in one
306       --  of three situations:
307
308       --    1. Front end generates N_Raise_xxx_Error node
309       --    2. Front end sets Do_xxx_Check flag in subexpression node
310       --    3. Back end detects a situation where an exception is appropriate
311
312       --  In all these cases, the current processing in gigi is to generate a
313       --  call to the appropriate Rcheck_xx routine (where xx encodes both the
314       --  exception message and the exception to be raised, Constraint_Error,
315       --  Program_Error, or Storage_Error.
316
317       --  We could handle some subcases of 1 using the same front end expansion
318       --  into gotos, but even for case 1, we can't handle all cases, since
319       --  generating gotos in the middle of expressions is not possible (it's
320       --  possible at the gigi/gcc level, but not at the level of the GNAT
321       --  tree).
322
323       --  In any case, it seems easier to have a scheme which handles all three
324       --  cases in a uniform manner. So here is how we proceed in this case.
325
326       --  This procedure detects all handlers for these three exceptions,
327       --  Constraint_Error, Program_Error and Storage_Error (including WHEN
328       --  OTHERS handlers that cover one or more of these cases).
329
330       --  If the handler meets the requirements for being the target of a local
331       --  raise, then the front end does the expansion described previously,
332       --  creating a label to be used as a goto target to raise the exception.
333       --  However, no attempt is made in the front end to convert any related
334       --  raise statements into gotos, e.g. all N_Raise_xxx_Error nodes are
335       --  left unchanged and passed to the back end.
336
337       --  Instead, the front end generates two nodes
338
339       --     N_Push_Constraint_Error_Label
340       --     N_Push_Program_Error_Label
341       --     N_Push_Storage_Error_Label
342
343       --       The Push node is generated at the start of the statements
344       --       covered by the handler, and has as a parameter the label to be
345       --       used as the raise target.
346
347       --     N_Pop_Constraint_Error_Label
348       --     N_Pop_Program_Error_Label
349       --     N_Pop_Storage_Error_Label
350
351       --       The Pop node is generated at the end of the covered statements
352       --       and undoes the effect of the preceding corresponding Push node.
353
354       --  In the case where the handler does NOT meet the requirements, the
355       --  front end will still generate the Push and Pop nodes, but the label
356       --  field in the Push node will be empty signifying that for this region
357       --  of code, no optimization is possible.
358
359       --  The back end must maintain three stacks, one for each exception case,
360       --  the Push node pushes an entry onto the corresponding stack, and Pop
361       --  node pops off the entry. Then instead of calling Rcheck_nn, if the
362       --  corresponding top stack entry has an non-empty label, a goto is
363       --  generated. This goto should be preceded by a call to Local_Raise as
364       --  described above.
365
366       --  An example of this transformation is as follows, given:
367
368       --  declare
369       --    A : Integer range 1 .. 10;
370       --  begin
371       --    A := B + C;
372       --  exception
373       --    when Constraint_Error =>
374       --       estmts
375       --  end;
376
377       --  gets transformed to:
378
379       --  declare
380       --    A : Integer range 1 .. 10;
381
382       --  begin
383       --     L1 : label;
384       --     L2 : label;
385
386       --     begin
387       --        %push_constraint_error_label (L1)
388       --        R1b : constant long_long_integer := long_long_integer?(b) +
389       --          long_long_integer?(c);
390       --        [constraint_error when
391       --          not (R1b in -16#8000_0000# .. 16#7FFF_FFFF#)
392       --          "overflow check failed"]
393       --        a := integer?(R1b);
394       --        %pop_constraint_error_Label
395
396       --     exception
397       --        ...
398       --        when constraint_error =>
399       --           goto L1;
400       --     end;
401
402       --     goto L2;       -- skip handler when exception not raised
403       --     <<L1>>         -- target label for local exception
404       --     estmts
405       --     <<L2>>
406       --  end;
407
408       --  Note: the generated labels and goto statements all have the flag
409       --  Exception_Junk set True, so that Sem_Ch6.Check_Returns will ignore
410       --  this generated exception stuff when checking for missing return
411       --  statements (see circuitry in Check_Statement_Sequence).
412
413       --  Note: All of the processing described above occurs only if
414       --  restriction No_Exception_Propagation applies or debug flag .g is
415       --  enabled.
416
417       CE_Locally_Handled : Boolean := False;
418       SE_Locally_Handled : Boolean := False;
419       PE_Locally_Handled : Boolean := False;
420       --  These three flags indicate whether a handler for the corresponding
421       --  exception (CE=Constraint_Error, SE=Storage_Error, PE=Program_Error)
422       --  is present. If so the switch is set to True, the Exception_Label
423       --  field of the corresponding handler is set, and appropriate Push
424       --  and Pop nodes are inserted into the code.
425
426       Local_Expansion_Required : Boolean := False;
427       --  Set True if we have at least one handler requiring local raise
428       --  expansion as described above.
429
430       procedure Expand_Local_Exception_Handlers is
431
432          procedure Add_Exception_Label (H : Node_Id);
433          --  H is an exception handler. First check for an Exception_Label
434          --  already allocated for H. If none, allocate one, set the field in
435          --  the handler node, add the label declaration, and set the flag
436          --  Local_Expansion_Required. Note: if Local_Raise_Not_OK is set
437          --  the call has no effect and Exception_Label is left empty.
438
439          procedure Add_Label_Declaration (L : Entity_Id);
440          --  Add an implicit declaration of the given label to the declaration
441          --  list in the parent of the current sequence of handled statements.
442
443          generic
444             Exc_Locally_Handled : in out Boolean;
445             --  Flag indicating whether a local handler for this exception
446             --  has already been generated.
447
448             with function Make_Push_Label (Loc : Source_Ptr) return Node_Id;
449             --  Function to create a Push_xxx_Label node
450
451             with function Make_Pop_Label (Loc : Source_Ptr) return Node_Id;
452             --  Function to create a Pop_xxx_Label node
453
454          procedure Generate_Push_Pop (H : Node_Id);
455          --  Common code for Generate_Push_Pop_xxx below, used to generate an
456          --  exception label and Push/Pop nodes for Constraint_Error,
457          --  Program_Error, or Storage_Error.
458
459          -------------------------
460          -- Add_Exception_Label --
461          -------------------------
462
463          procedure Add_Exception_Label (H : Node_Id) is
464          begin
465             if No (Exception_Label (H))
466               and then not Local_Raise_Not_OK (H)
467               and then not Special_Exception_Package_Used
468             then
469                Local_Expansion_Required := True;
470
471                declare
472                   L : constant Entity_Id := Make_Temporary (Sloc (H), 'L');
473                begin
474                   Set_Exception_Label (H, L);
475                   Add_Label_Declaration (L);
476                end;
477             end if;
478          end Add_Exception_Label;
479
480          ---------------------------
481          -- Add_Label_Declaration --
482          ---------------------------
483
484          procedure Add_Label_Declaration (L : Entity_Id) is
485             P : constant Node_Id := Parent (HSS);
486
487             Decl_L : constant Node_Id :=
488                        Make_Implicit_Label_Declaration (Loc,
489                          Defining_Identifier => L);
490
491          begin
492             if Declarations (P) = No_List then
493                Set_Declarations (P, Empty_List);
494             end if;
495
496             Append (Decl_L, Declarations (P));
497             Analyze (Decl_L);
498          end Add_Label_Declaration;
499
500          -----------------------
501          -- Generate_Push_Pop --
502          -----------------------
503
504          procedure Generate_Push_Pop (H : Node_Id) is
505          begin
506             if Exc_Locally_Handled then
507                return;
508             else
509                Exc_Locally_Handled := True;
510             end if;
511
512             Add_Exception_Label (H);
513
514             declare
515                F : constant Node_Id := First (Statements (HSS));
516                L : constant Node_Id := Last  (Statements (HSS));
517
518                Push : constant Node_Id := Make_Push_Label (Sloc (F));
519                Pop  : constant Node_Id := Make_Pop_Label  (Sloc (L));
520
521             begin
522                --  We make sure that a call to Get_Local_Raise_Call_Entity is
523                --  made during front end processing, so that when we need it
524                --  in the back end, it will already be available and loaded.
525
526                Discard_Node (Get_Local_Raise_Call_Entity);
527
528                --  Prepare and insert Push and Pop nodes
529
530                Set_Exception_Label (Push, Exception_Label (H));
531                Insert_Before (F, Push);
532                Set_Analyzed (Push);
533
534                Insert_After (L, Pop);
535                Set_Analyzed (Pop);
536             end;
537          end Generate_Push_Pop;
538
539          --  Local declarations
540
541          Loc    : constant Source_Ptr := Sloc (HSS);
542          Stmts  : List_Id := No_List;
543          Choice : Node_Id;
544          Excep  : Entity_Id;
545
546          procedure Generate_Push_Pop_For_Constraint_Error is
547            new Generate_Push_Pop
548              (Exc_Locally_Handled => CE_Locally_Handled,
549               Make_Push_Label     => Make_Push_Constraint_Error_Label,
550               Make_Pop_Label      => Make_Pop_Constraint_Error_Label);
551          --  If no Push/Pop has been generated for CE yet, then set the flag
552          --  CE_Locally_Handled, allocate an Exception_Label for handler H (if
553          --  not already done), and generate Push/Pop nodes for the exception
554          --  label at the start and end of the statements of HSS.
555
556          procedure Generate_Push_Pop_For_Program_Error is
557            new Generate_Push_Pop
558              (Exc_Locally_Handled => PE_Locally_Handled,
559               Make_Push_Label     => Make_Push_Program_Error_Label,
560               Make_Pop_Label      => Make_Pop_Program_Error_Label);
561          --  If no Push/Pop has been generated for PE yet, then set the flag
562          --  PE_Locally_Handled, allocate an Exception_Label for handler H (if
563          --  not already done), and generate Push/Pop nodes for the exception
564          --  label at the start and end of the statements of HSS.
565
566          procedure Generate_Push_Pop_For_Storage_Error is
567            new Generate_Push_Pop
568              (Exc_Locally_Handled => SE_Locally_Handled,
569               Make_Push_Label     => Make_Push_Storage_Error_Label,
570               Make_Pop_Label      => Make_Pop_Storage_Error_Label);
571          --  If no Push/Pop has been generated for SE yet, then set the flag
572          --  SE_Locally_Handled, allocate an Exception_Label for handler H (if
573          --  not already done), and generate Push/Pop nodes for the exception
574          --  label at the start and end of the statements of HSS.
575
576       --  Start of processing for Expand_Local_Exception_Handlers
577
578       begin
579          --  No processing if all exception handlers will get removed
580
581          if Debug_Flag_Dot_X then
582             return;
583          end if;
584
585          --  See for each handler if we have any local raises to expand
586
587          Handler := First_Non_Pragma (Handlrs);
588          while Present (Handler) loop
589
590             --  Note, we do not test Local_Raise_Not_OK here, because in the
591             --  case of Push/Pop generation we want to generate push with a
592             --  null label. The Add_Exception_Label routine has no effect if
593             --  Local_Raise_Not_OK is set, so this works as required.
594
595             if Present (Local_Raise_Statements (Handler)) then
596                Add_Exception_Label (Handler);
597             end if;
598
599             --  If we are doing local raise to goto optimization (restriction
600             --  No_Exception_Propagation set or debug flag .g set), then check
601             --  to see if handler handles CE, PE, SE and if so generate the
602             --  appropriate push/pop sequence for the back end.
603
604             if (Debug_Flag_Dot_G
605                  or else Restriction_Active (No_Exception_Propagation))
606               and then Has_Local_Raise (Handler)
607             then
608                Choice := First (Exception_Choices (Handler));
609                while Present (Choice) loop
610                   if Nkind (Choice) = N_Others_Choice
611                     and then not All_Others (Choice)
612                   then
613                      Generate_Push_Pop_For_Constraint_Error (Handler);
614                      Generate_Push_Pop_For_Program_Error    (Handler);
615                      Generate_Push_Pop_For_Storage_Error    (Handler);
616
617                   elsif Is_Entity_Name (Choice) then
618                      Excep := Get_Renamed_Entity (Entity (Choice));
619
620                      if Excep = Standard_Constraint_Error then
621                         Generate_Push_Pop_For_Constraint_Error (Handler);
622                      elsif Excep = Standard_Program_Error then
623                         Generate_Push_Pop_For_Program_Error    (Handler);
624                      elsif Excep = Standard_Storage_Error then
625                         Generate_Push_Pop_For_Storage_Error    (Handler);
626                      end if;
627                   end if;
628
629                   Next (Choice);
630                end loop;
631             end if;
632
633             Next_Non_Pragma (Handler);
634          end loop;
635
636          --  Nothing to do if no handlers requiring the goto transformation
637
638          if not (Local_Expansion_Required) then
639             return;
640          end if;
641
642          --  Prepare to do the transformation
643
644          declare
645             --  L3 is the label to exit the HSS
646
647             L3_Dent : constant Entity_Id := Make_Temporary (Loc, 'L');
648
649             Labl_L3 : constant Node_Id :=
650                         Make_Label (Loc,
651                           Identifier => New_Occurrence_Of (L3_Dent, Loc));
652
653             Blk_Stm : Node_Id;
654             Relmt   : Elmt_Id;
655
656          begin
657             Set_Exception_Junk (Labl_L3);
658             Add_Label_Declaration (L3_Dent);
659
660             --  Wrap existing statements and handlers in an inner block
661
662             Blk_Stm :=
663               Make_Block_Statement (Loc,
664                 Handled_Statement_Sequence => Relocate_Node (HSS));
665             Set_Exception_Junk (Blk_Stm);
666
667             Rewrite (HSS,
668               Make_Handled_Sequence_Of_Statements (Loc,
669                 Statements => New_List (Blk_Stm),
670                 End_Label  => Relocate_Node (End_Label (HSS))));
671
672             --  Set block statement as analyzed, we don't want to actually call
673             --  Analyze on this block, it would cause a recursion in exception
674             --  handler processing which would mess things up.
675
676             Set_Analyzed (Blk_Stm);
677
678             --  Now loop through the exception handlers to deal with those that
679             --  are targets of local raise statements.
680
681             Handler := First_Non_Pragma (Handlrs);
682             while Present (Handler) loop
683                if Present (Exception_Label (Handler)) then
684
685                   --  This handler needs the goto expansion
686
687                   declare
688                      Loc : constant Source_Ptr := Sloc (Handler);
689
690                      --  L1 is the start label for this handler
691
692                      L1_Dent : constant Entity_Id := Exception_Label (Handler);
693
694                      Labl_L1 : constant Node_Id :=
695                                  Make_Label (Loc,
696                                    Identifier =>
697                                      New_Occurrence_Of (L1_Dent, Loc));
698
699                      --  Jump to L1 to be used as replacement for the original
700                      --  handler (used in the case where exception propagation
701                      --  may still occur).
702
703                      Name_L1 : constant Node_Id :=
704                                  New_Occurrence_Of (L1_Dent, Loc);
705
706                      Goto_L1 : constant Node_Id :=
707                                  Make_Goto_Statement (Loc,
708                                    Name => Name_L1);
709
710                      --  Jump to L3 to be used at the end of handler
711
712                      Name_L3 : constant Node_Id :=
713                                  New_Occurrence_Of (L3_Dent, Loc);
714
715                      Goto_L3 : constant Node_Id :=
716                                  Make_Goto_Statement (Loc,
717                                    Name => Name_L3);
718
719                      H_Stmts : constant List_Id := Statements (Handler);
720
721                   begin
722                      Set_Exception_Junk (Labl_L1);
723                      Set_Exception_Junk (Goto_L3);
724
725                      --  Note: we do NOT set Exception_Junk in Goto_L1, since
726                      --  this is a real transfer of control that we want the
727                      --  Sem_Ch6.Check_Returns procedure to recognize properly.
728
729                      --  Replace handler by a goto L1. We can mark this as
730                      --  analyzed since it is fully formed, and we don't
731                      --  want it going through any further checks. We save
732                      --  the last statement location in the goto L1 node for
733                      --  the benefit of Sem_Ch6.Check_Returns.
734
735                      Set_Statements (Handler, New_List (Goto_L1));
736                      Set_Analyzed (Goto_L1);
737                      Set_Etype (Name_L1, Standard_Void_Type);
738
739                      --  Now replace all the raise statements by goto L1
740
741                      if Present (Local_Raise_Statements (Handler)) then
742                         Relmt := First_Elmt (Local_Raise_Statements (Handler));
743                         while Present (Relmt) loop
744                            declare
745                               Raise_S : constant Node_Id    := Node (Relmt);
746                               RLoc    : constant Source_Ptr := Sloc (Raise_S);
747                               Name_L1 : constant Node_Id :=
748                                           New_Occurrence_Of (L1_Dent, Loc);
749                               Goto_L1 : constant Node_Id :=
750                                           Make_Goto_Statement (RLoc,
751                                             Name => Name_L1);
752
753                            begin
754                               --  Replace raise by goto L1
755
756                               Set_Analyzed (Goto_L1);
757                               Set_Etype (Name_L1, Standard_Void_Type);
758                               Replace_Raise_By_Goto (Raise_S, Goto_L1);
759                            end;
760
761                            Next_Elmt (Relmt);
762                         end loop;
763                      end if;
764
765                      --  Add a goto L3 at end of statement list in block. The
766                      --  first time, this is what skips over the exception
767                      --  handlers in the normal case. Subsequent times, it
768                      --  terminates the execution of the previous handler code,
769                      --  and skips subsequent handlers.
770
771                      Stmts := Statements (HSS);
772
773                      Insert_After (Last (Stmts), Goto_L3);
774                      Set_Analyzed (Goto_L3);
775                      Set_Etype (Name_L3, Standard_Void_Type);
776
777                      --  Now we drop the label that marks the handler start,
778                      --  followed by the statements of the handler.
779
780                      Set_Etype (Identifier (Labl_L1), Standard_Void_Type);
781
782                      Insert_After_And_Analyze (Last (Stmts), Labl_L1);
783
784                      declare
785                         Loc : constant Source_Ptr := Sloc (First (H_Stmts));
786                         Blk : constant Node_Id :=
787                                 Make_Block_Statement (Loc,
788                                   Handled_Statement_Sequence =>
789                                     Make_Handled_Sequence_Of_Statements (Loc,
790                                       Statements => H_Stmts));
791                      begin
792                         Set_Exception_Junk (Blk);
793                         Insert_After_And_Analyze (Last (Stmts), Blk);
794                      end;
795                   end;
796
797                   --  Here if we have local raise statements but the handler is
798                   --  not suitable for processing with a local raise. In this
799                   --  case we have to generate possible diagnostics.
800
801                elsif Has_Local_Raise (Handler)
802                  and then Local_Raise_Statements (Handler) /= No_Elist
803                then
804                   Relmt := First_Elmt (Local_Raise_Statements (Handler));
805                   while Present (Relmt) loop
806                      Warn_If_No_Propagation (Node (Relmt));
807                      Next_Elmt (Relmt);
808                   end loop;
809                end if;
810
811                Next (Handler);
812             end loop;
813
814             --  Only remaining step is to drop the L3 label and we are done
815
816             Set_Etype (Identifier (Labl_L3), Standard_Void_Type);
817
818             --  If we had at least one handler, then we drop the label after
819             --  the last statement of that handler.
820
821             if Stmts /= No_List then
822                Insert_After_And_Analyze (Last (Stmts), Labl_L3);
823
824             --  Otherwise we have removed all the handlers (this results from
825             --  use of pragma Restrictions (No_Exception_Propagation), and we
826             --  drop the label at the end of the statements of the HSS.
827
828             else
829                Insert_After_And_Analyze (Last (Statements (HSS)), Labl_L3);
830             end if;
831
832             return;
833          end;
834       end Expand_Local_Exception_Handlers;
835
836       -----------------------------
837       -- Prepend_Call_To_Handler --
838       -----------------------------
839
840       procedure Prepend_Call_To_Handler
841         (Proc : RE_Id;
842          Args : List_Id := No_List)
843       is
844          Ent : constant Entity_Id := RTE (Proc);
845
846       begin
847          --  If we have no Entity, then we are probably in no run time mode or
848          --  some weird error has occurred. In either case do nothing. Note use
849          --  of No_Location to hide this code from the debugger, so single
850          --  stepping doesn't jump back and forth.
851
852          if Present (Ent) then
853             declare
854                Call : constant Node_Id :=
855                         Make_Procedure_Call_Statement (No_Location,
856                           Name => New_Occurrence_Of (RTE (Proc), No_Location),
857                           Parameter_Associations => Args);
858
859             begin
860                Prepend_To (Statements (Handler), Call);
861                Analyze (Call, Suppress => All_Checks);
862             end;
863          end if;
864       end Prepend_Call_To_Handler;
865
866       ---------------------------
867       -- Replace_Raise_By_Goto --
868       ---------------------------
869
870       procedure Replace_Raise_By_Goto (Raise_S : Node_Id; Goto_L1 : Node_Id) is
871          Loc   : constant Source_Ptr := Sloc (Raise_S);
872          Excep : Entity_Id;
873          LR    : Node_Id;
874          Cond  : Node_Id;
875          Orig  : Node_Id;
876
877       begin
878          --  If we have a null statement, it means that there is no replacement
879          --  needed (typically this results from a suppressed check).
880
881          if Nkind (Raise_S) = N_Null_Statement then
882             return;
883
884          --  Test for Raise_xxx_Error
885
886          elsif Nkind (Raise_S) = N_Raise_Constraint_Error then
887             Excep := Standard_Constraint_Error;
888             Cond  := Condition (Raise_S);
889
890          elsif Nkind (Raise_S) = N_Raise_Storage_Error then
891             Excep := Standard_Storage_Error;
892             Cond := Condition (Raise_S);
893
894          elsif Nkind (Raise_S) = N_Raise_Program_Error then
895             Excep := Standard_Program_Error;
896             Cond := Condition (Raise_S);
897
898             --  The only other possibility is a node that is or used to be a
899             --  simple raise statement.
900
901          else
902             Orig := Original_Node (Raise_S);
903             pragma Assert (Nkind (Orig) = N_Raise_Statement
904                              and then Present (Name (Orig))
905                              and then No (Expression (Orig)));
906             Excep := Entity (Name (Orig));
907             Cond := Empty;
908          end if;
909
910          --  Here Excep is the exception to raise, and Cond is the condition
911          --  First prepare the call to Local_Raise (excep'address).
912
913          if RTE_Available (RE_Local_Raise) then
914             LR :=
915               Make_Procedure_Call_Statement (Loc,
916                 Name => New_Occurrence_Of (RTE (RE_Local_Raise), Loc),
917                 Parameter_Associations => New_List (
918                   Unchecked_Convert_To (RTE (RE_Address),
919                     Make_Attribute_Reference (Loc,
920                       Prefix         => New_Occurrence_Of (Excep, Loc),
921                       Attribute_Name => Name_Identity))));
922
923             --  Use null statement if Local_Raise not available
924
925          else
926             LR :=
927               Make_Null_Statement (Loc);
928          end if;
929
930          --  If there is no condition, we rewrite as
931
932          --    begin
933          --       Local_Raise (excep'Identity);
934          --       goto L1;
935          --    end;
936
937          if No (Cond) then
938             Rewrite (Raise_S,
939               Make_Block_Statement (Loc,
940                 Handled_Statement_Sequence =>
941                   Make_Handled_Sequence_Of_Statements (Loc,
942                     Statements => New_List (LR, Goto_L1))));
943             Set_Exception_Junk (Raise_S);
944
945          --  If there is a condition, we rewrite as
946
947          --    if condition then
948          --       Local_Raise (excep'Identity);
949          --       goto L1;
950          --    end if;
951
952          else
953             Rewrite (Raise_S,
954               Make_If_Statement (Loc,
955                 Condition       => Cond,
956                 Then_Statements => New_List (LR, Goto_L1)));
957          end if;
958
959          Analyze (Raise_S);
960       end Replace_Raise_By_Goto;
961
962    --  Start of processing for Expand_Exception_Handlers
963
964    begin
965       Expand_Local_Exception_Handlers;
966
967       --  Loop through handlers
968
969       Handler := First_Non_Pragma (Handlrs);
970       Handler_Loop : while Present (Handler) loop
971          Process_Statements_For_Controlled_Objects (Handler);
972
973          Next_Handler := Next_Non_Pragma (Handler);
974
975          --  Remove source handler if gnat debug flag .x is set
976
977          if Debug_Flag_Dot_X and then Comes_From_Source (Handler) then
978             Remove (Handler);
979
980          --  Remove handler if no exception propagation, generating a warning
981          --  if a source generated handler was not the target of a local raise.
982
983          else
984             if Restriction_Active (No_Exception_Propagation)
985               and then not Has_Local_Raise (Handler)
986               and then Comes_From_Source (Handler)
987               and then Warn_On_Non_Local_Exception
988             then
989                Warn_No_Exception_Propagation_Active (Handler);
990                Error_Msg_N
991                  ("\?this handler can never be entered, and has been removed",
992                   Handler);
993             end if;
994
995             if No_Exception_Propagation_Active then
996                Remove (Handler);
997
998             --  Exception handler is active and retained and must be processed
999
1000             else
1001                --  If an exception occurrence is present, then we must declare
1002                --  it and initialize it from the value stored in the TSD
1003
1004                --     declare
1005                --        name : Exception_Occurrence;
1006                --     begin
1007                --        Save_Occurrence (name, Get_Current_Excep.all)
1008                --        ...
1009                --     end;
1010
1011                if Present (Choice_Parameter (Handler)) then
1012                   declare
1013                      Cparm : constant Entity_Id  := Choice_Parameter (Handler);
1014                      Cloc  : constant Source_Ptr := Sloc (Cparm);
1015                      Hloc  : constant Source_Ptr := Sloc (Handler);
1016                      Save  : Node_Id;
1017
1018                   begin
1019                      --  Note use of No_Location to hide this code from the
1020                      --  debugger, so single stepping doesn't jump back and
1021                      --  forth.
1022
1023                      Save :=
1024                        Make_Procedure_Call_Statement (No_Location,
1025                          Name =>
1026                            New_Occurrence_Of (RTE (RE_Save_Occurrence),
1027                                               No_Location),
1028                          Parameter_Associations => New_List (
1029                            New_Occurrence_Of (Cparm, Cloc),
1030                            Make_Explicit_Dereference (No_Location,
1031                              Make_Function_Call (No_Location,
1032                                Name => Make_Explicit_Dereference (No_Location,
1033                                  New_Occurrence_Of
1034                                    (RTE (RE_Get_Current_Excep),
1035                                     No_Location))))));
1036
1037                      Mark_Rewrite_Insertion (Save);
1038                      Prepend (Save, Statements (Handler));
1039
1040                      Obj_Decl :=
1041                        Make_Object_Declaration
1042                          (Cloc,
1043                           Defining_Identifier => Cparm,
1044                           Object_Definition   =>
1045                             New_Occurrence_Of
1046                               (RTE (RE_Exception_Occurrence), Cloc));
1047                      Set_No_Initialization (Obj_Decl, True);
1048
1049                      Rewrite (Handler,
1050                        Make_Exception_Handler (Hloc,
1051                          Choice_Parameter  => Empty,
1052                          Exception_Choices => Exception_Choices (Handler),
1053
1054                          Statements => New_List (
1055                            Make_Block_Statement (Hloc,
1056                              Declarations => New_List (Obj_Decl),
1057                              Handled_Statement_Sequence =>
1058                                Make_Handled_Sequence_Of_Statements (Hloc,
1059                                  Statements => Statements (Handler))))));
1060
1061                      --  Local raise statements can't occur, since exception
1062                      --  handlers with choice parameters are not allowed when
1063                      --  No_Exception_Propagation applies, so set attributes
1064                      --  accordingly.
1065
1066                      Set_Local_Raise_Statements (Handler, No_Elist);
1067                      Set_Local_Raise_Not_OK (Handler);
1068
1069                      Analyze_List
1070                        (Statements (Handler), Suppress => All_Checks);
1071                   end;
1072                end if;
1073
1074                --  The processing at this point is rather different for the JVM
1075                --  case, so we completely separate the processing.
1076
1077                --  For the VM case, we unconditionally call Update_Exception,
1078                --  passing a call to the intrinsic Current_Target_Exception
1079                --  (see JVM/.NET versions of Ada.Exceptions for details).
1080
1081                if VM_Target /= No_VM then
1082                   declare
1083                      Arg : constant Node_Id :=
1084                              Make_Function_Call (Loc,
1085                                Name =>
1086                                  New_Occurrence_Of
1087                                    (RTE (RE_Current_Target_Exception), Loc));
1088                   begin
1089                      Prepend_Call_To_Handler
1090                        (RE_Update_Exception, New_List (Arg));
1091                   end;
1092
1093                   --  For the normal case, we have to worry about the state of
1094                   --  abort deferral. Generally, we defer abort during runtime
1095                   --  handling of exceptions. When control is passed to the
1096                   --  handler, then in the normal case we undefer aborts. In
1097                   --  any case this entire handling is relevant only if aborts
1098                   --  are allowed!
1099
1100                elsif Abort_Allowed
1101                  and then Exception_Mechanism /= Back_End_Exceptions
1102                then
1103                   --  There are some special cases in which we do not do the
1104                   --  undefer. In particular a finalization (AT END) handler
1105                   --  wants to operate with aborts still deferred.
1106
1107                   --  We also suppress the call if this is the special handler
1108                   --  for Abort_Signal, since if we are aborting, we want to
1109                   --  keep aborts deferred (one abort is enough).
1110
1111                   --  If abort really needs to be deferred the expander must
1112                   --  add this call explicitly, see
1113                   --  Expand_N_Asynchronous_Select.
1114
1115                   Others_Choice :=
1116                     Nkind (First (Exception_Choices (Handler))) =
1117                                                          N_Others_Choice;
1118
1119                   if (Others_Choice
1120                        or else Entity (First (Exception_Choices (Handler))) /=
1121                                                          Stand.Abort_Signal)
1122                     and then not
1123                       (Others_Choice
1124                         and then
1125                           All_Others (First (Exception_Choices (Handler))))
1126                   then
1127                      Prepend_Call_To_Handler (RE_Abort_Undefer);
1128                   end if;
1129                end if;
1130             end if;
1131          end if;
1132
1133          Handler := Next_Handler;
1134       end loop Handler_Loop;
1135
1136       --  If all handlers got removed, then remove the list. Note we cannot
1137       --  reference HSS here, since expanding local handlers may have buried
1138       --  the handlers in an inner block.
1139
1140       if Is_Empty_List (Handlrs) then
1141          Set_Exception_Handlers (Parent (Handlrs), No_List);
1142       end if;
1143    end Expand_Exception_Handlers;
1144
1145    ------------------------------------
1146    -- Expand_N_Exception_Declaration --
1147    ------------------------------------
1148
1149    --  Generates:
1150    --     exceptE : constant String := "A.B.EXCEP";   -- static data
1151    --     except : exception_data :=  (
1152    --                    Handled_By_Other => False,
1153    --                    Lang             => 'A',
1154    --                    Name_Length      => exceptE'Length,
1155    --                    Full_Name        => exceptE'Address,
1156    --                    HTable_Ptr       => null,
1157    --                    Import_Code      => 0,
1158    --                    Raise_Hook       => null,
1159    --                    );
1160
1161    --  (protecting test only needed if not at library level)
1162    --
1163    --     exceptF : Boolean := True --  static data
1164    --     if exceptF then
1165    --        exceptF := False;
1166    --        Register_Exception (except'Unchecked_Access);
1167    --     end if;
1168
1169    procedure Expand_N_Exception_Declaration (N : Node_Id) is
1170       Loc     : constant Source_Ptr := Sloc (N);
1171       Id      : constant Entity_Id  := Defining_Identifier (N);
1172       L       : List_Id             := New_List;
1173       Flag_Id : Entity_Id;
1174
1175       Name_Exname : constant Name_Id := New_External_Name (Chars (Id), 'E');
1176       Exname      : constant Node_Id :=
1177                       Make_Defining_Identifier (Loc, Name_Exname);
1178
1179       procedure Force_Static_Allocation_Of_Referenced_Objects
1180         (Aggregate : Node_Id);
1181       --  A specialized solution to one particular case of an ugly problem
1182       --
1183       --  The given aggregate includes an Unchecked_Conversion as one of the
1184       --  component values. The call to Analyze_And_Resolve below ends up
1185       --  calling Exp_Ch4.Expand_N_Unchecked_Type_Conversion, which may decide
1186       --  to introduce a (constant) temporary and then obtain the component
1187       --  value by evaluating the temporary.
1188       --
1189       --  In the case of an exception declared within a subprogram (or any
1190       --  other dynamic scope), this is a bad transformation. The exception
1191       --  object is marked as being Statically_Allocated but the temporary is
1192       --  not. If the initial value of a Statically_Allocated declaration
1193       --  references a dynamically allocated object, this prevents static
1194       --  initialization of the object.
1195       --
1196       --  We cope with this here by marking the temporary Statically_Allocated.
1197       --  It might seem cleaner to generalize this utility and then use it to
1198       --  enforce a rule that the entities referenced in the declaration of any
1199       --  "hoisted" (i.e., Is_Statically_Allocated and not Is_Library_Level)
1200       --  entity must also be either Library_Level or hoisted. It turns out
1201       --  that this would be incompatible with the current treatment of an
1202       --  object which is local to a subprogram, subject to an Export pragma,
1203       --  not subject to an address clause, and whose declaration contains
1204       --  references to other local (non-hoisted) objects (e.g., in the initial
1205       --  value expression).
1206
1207       ---------------------------------------------------
1208       -- Force_Static_Allocation_Of_Referenced_Objects --
1209       ---------------------------------------------------
1210
1211       procedure Force_Static_Allocation_Of_Referenced_Objects
1212         (Aggregate : Node_Id)
1213       is
1214          function Fixup_Node (N : Node_Id) return Traverse_Result;
1215          --  If the given node references a dynamically allocated object, then
1216          --  correct the declaration of the object.
1217
1218          ----------------
1219          -- Fixup_Node --
1220          ----------------
1221
1222          function Fixup_Node (N : Node_Id) return Traverse_Result is
1223          begin
1224             if Nkind (N) in N_Has_Entity
1225               and then Present (Entity (N))
1226               and then not Is_Library_Level_Entity (Entity (N))
1227
1228               --  Note: the following test is not needed but it seems cleaner
1229               --  to do this test (this would be more important if procedure
1230               --  Force_Static_Allocation_Of_Referenced_Objects recursively
1231               --  traversed the declaration of an entity after marking it as
1232               --  statically allocated).
1233
1234               and then not Is_Statically_Allocated (Entity (N))
1235             then
1236                Set_Is_Statically_Allocated (Entity (N));
1237             end if;
1238
1239             return OK;
1240          end Fixup_Node;
1241
1242          procedure Fixup_Tree is new Traverse_Proc (Fixup_Node);
1243
1244       --  Start of processing for Force_Static_Allocation_Of_Referenced_Objects
1245
1246       begin
1247          Fixup_Tree (Aggregate);
1248       end Force_Static_Allocation_Of_Referenced_Objects;
1249
1250    --  Start of processing for Expand_N_Exception_Declaration
1251
1252    begin
1253       --  There is no expansion needed when compiling for the JVM since the
1254       --  JVM has a built-in exception mechanism. See cil/gnatlib/a-except.ads
1255       --  for details.
1256
1257       if VM_Target /= No_VM then
1258          return;
1259       end if;
1260
1261       --  Definition of the external name: nam : constant String := "A.B.NAME";
1262
1263       Insert_Action (N,
1264         Make_Object_Declaration (Loc,
1265           Defining_Identifier => Exname,
1266           Constant_Present    => True,
1267           Object_Definition   => New_Occurrence_Of (Standard_String, Loc),
1268           Expression          =>
1269             Make_String_Literal (Loc,
1270               Strval => Fully_Qualified_Name_String (Id))));
1271
1272       Set_Is_Statically_Allocated (Exname);
1273
1274       --  Create the aggregate list for type Standard.Exception_Type:
1275       --  Handled_By_Other component: False
1276
1277       Append_To (L, New_Occurrence_Of (Standard_False, Loc));
1278
1279       --  Lang component: 'A'
1280
1281       Append_To (L,
1282         Make_Character_Literal (Loc,
1283           Chars              =>  Name_uA,
1284           Char_Literal_Value =>  UI_From_Int (Character'Pos ('A'))));
1285
1286       --  Name_Length component: Nam'Length
1287
1288       Append_To (L,
1289         Make_Attribute_Reference (Loc,
1290           Prefix         => New_Occurrence_Of (Exname, Loc),
1291           Attribute_Name => Name_Length));
1292
1293       --  Full_Name component: Standard.A_Char!(Nam'Address)
1294
1295       Append_To (L, Unchecked_Convert_To (Standard_A_Char,
1296         Make_Attribute_Reference (Loc,
1297           Prefix         => New_Occurrence_Of (Exname, Loc),
1298           Attribute_Name => Name_Address)));
1299
1300       --  HTable_Ptr component: null
1301
1302       Append_To (L, Make_Null (Loc));
1303
1304       --  Import_Code component: 0
1305
1306       Append_To (L, Make_Integer_Literal (Loc, 0));
1307
1308       --  Raise_Hook component: null
1309
1310       Append_To (L, Make_Null (Loc));
1311
1312       Set_Expression (N, Make_Aggregate (Loc, Expressions => L));
1313       Analyze_And_Resolve (Expression (N), Etype (Id));
1314
1315       Force_Static_Allocation_Of_Referenced_Objects (Expression (N));
1316
1317       --  Register_Exception (except'Unchecked_Access);
1318
1319       if not No_Exception_Handlers_Set
1320         and then not Restriction_Active (No_Exception_Registration)
1321       then
1322          L := New_List (
1323                 Make_Procedure_Call_Statement (Loc,
1324                   Name => New_Occurrence_Of (RTE (RE_Register_Exception), Loc),
1325                   Parameter_Associations => New_List (
1326                     Unchecked_Convert_To (RTE (RE_Exception_Data_Ptr),
1327                       Make_Attribute_Reference (Loc,
1328                         Prefix         => New_Occurrence_Of (Id, Loc),
1329                         Attribute_Name => Name_Unrestricted_Access)))));
1330
1331          Set_Register_Exception_Call (Id, First (L));
1332
1333          if not Is_Library_Level_Entity (Id) then
1334             Flag_Id :=  Make_Defining_Identifier (Loc,
1335                           New_External_Name (Chars (Id), 'F'));
1336
1337             Insert_Action (N,
1338               Make_Object_Declaration (Loc,
1339                 Defining_Identifier => Flag_Id,
1340                 Object_Definition   =>
1341                   New_Occurrence_Of (Standard_Boolean, Loc),
1342                 Expression          =>
1343                   New_Occurrence_Of (Standard_True, Loc)));
1344
1345             Set_Is_Statically_Allocated (Flag_Id);
1346
1347             Append_To (L,
1348               Make_Assignment_Statement (Loc,
1349                 Name       => New_Occurrence_Of (Flag_Id, Loc),
1350                 Expression => New_Occurrence_Of (Standard_False, Loc)));
1351
1352             Insert_After_And_Analyze (N,
1353               Make_Implicit_If_Statement (N,
1354                 Condition       => New_Occurrence_Of (Flag_Id, Loc),
1355                 Then_Statements => L));
1356
1357          else
1358             Insert_List_After_And_Analyze (N, L);
1359          end if;
1360       end if;
1361    end Expand_N_Exception_Declaration;
1362
1363    ---------------------------------------------
1364    -- Expand_N_Handled_Sequence_Of_Statements --
1365    ---------------------------------------------
1366
1367    procedure Expand_N_Handled_Sequence_Of_Statements (N : Node_Id) is
1368    begin
1369       --  Expand exception handlers
1370
1371       if Present (Exception_Handlers (N))
1372         and then not Restriction_Active (No_Exception_Handlers)
1373       then
1374          Expand_Exception_Handlers (N);
1375       end if;
1376
1377       --  If local exceptions are being expanded, the previous call will
1378       --  have rewritten the construct as a block and reanalyzed it. No
1379       --  further expansion is needed.
1380
1381       if Analyzed (N) then
1382          return;
1383       end if;
1384
1385       --  Add clean up actions if required
1386
1387       if Nkind (Parent (N)) /= N_Package_Body
1388         and then Nkind (Parent (N)) /= N_Accept_Statement
1389         and then Nkind (Parent (N)) /= N_Extended_Return_Statement
1390         and then not Delay_Cleanups (Current_Scope)
1391       then
1392          Expand_Cleanup_Actions (Parent (N));
1393       else
1394          Set_First_Real_Statement (N, First (Statements (N)));
1395       end if;
1396    end Expand_N_Handled_Sequence_Of_Statements;
1397
1398    -------------------------------------
1399    -- Expand_N_Raise_Constraint_Error --
1400    -------------------------------------
1401
1402    procedure Expand_N_Raise_Constraint_Error (N : Node_Id) is
1403    begin
1404       --  We adjust the condition to deal with the C/Fortran boolean case. This
1405       --  may well not be necessary, as all such conditions are generated by
1406       --  the expander and probably are all standard boolean, but who knows
1407       --  what strange optimization in future may require this adjustment!
1408
1409       Adjust_Condition (Condition (N));
1410
1411       --  Now deal with possible local raise handling
1412
1413       Possible_Local_Raise (N, Standard_Constraint_Error);
1414    end Expand_N_Raise_Constraint_Error;
1415
1416    ----------------------------------
1417    -- Expand_N_Raise_Program_Error --
1418    ----------------------------------
1419
1420    procedure Expand_N_Raise_Program_Error (N : Node_Id) is
1421    begin
1422       --  We adjust the condition to deal with the C/Fortran boolean case. This
1423       --  may well not be necessary, as all such conditions are generated by
1424       --  the expander and probably are all standard boolean, but who knows
1425       --  what strange optimization in future may require this adjustment!
1426
1427       Adjust_Condition (Condition (N));
1428
1429       --  Now deal with possible local raise handling
1430
1431       Possible_Local_Raise (N, Standard_Program_Error);
1432    end Expand_N_Raise_Program_Error;
1433
1434    ------------------------------
1435    -- Expand_N_Raise_Statement --
1436    ------------------------------
1437
1438    procedure Expand_N_Raise_Statement (N : Node_Id) is
1439       Loc   : constant Source_Ptr := Sloc (N);
1440       Ehand : Node_Id;
1441       E     : Entity_Id;
1442       Str   : String_Id;
1443       H     : Node_Id;
1444       Src   : Boolean;
1445
1446    begin
1447       --  Processing for locally handled exception (exclude reraise case)
1448
1449       if Present (Name (N)) and then Nkind (Name (N)) = N_Identifier then
1450          if Debug_Flag_Dot_G
1451            or else Restriction_Active (No_Exception_Propagation)
1452          then
1453             --  If we have a local handler, then note that this is potentially
1454             --  able to be transformed into a goto statement.
1455
1456             H := Find_Local_Handler (Entity (Name (N)), N);
1457
1458             if Present (H) then
1459                if Local_Raise_Statements (H) = No_Elist then
1460                   Set_Local_Raise_Statements (H, New_Elmt_List);
1461                end if;
1462
1463                --  Append the new entry if it is not there already. Sometimes
1464                --  we have situations where due to reexpansion, the same node
1465                --  is analyzed twice and would otherwise be added twice.
1466
1467                Append_Unique_Elmt (N, Local_Raise_Statements (H));
1468                Set_Has_Local_Raise (H);
1469
1470             --  If no local handler, then generate no propagation warning
1471
1472             else
1473                Warn_If_No_Propagation (N);
1474             end if;
1475
1476          end if;
1477       end if;
1478
1479       --  If a string expression is present, then the raise statement is
1480       --  converted to a call:
1481       --     Raise_Exception (exception-name'Identity, string);
1482       --  and there is nothing else to do.
1483
1484       if Present (Expression (N)) then
1485
1486          --  Avoid passing exception-name'identity in runtimes in which this
1487          --  argument is not used. This avoids generating undefined references
1488          --  to these exceptions when compiling with no optimization
1489
1490          if Configurable_Run_Time_On_Target
1491            and then (Restriction_Active (No_Exception_Handlers)
1492                        or else
1493                      Restriction_Active (No_Exception_Propagation))
1494          then
1495             Rewrite (N,
1496               Make_Procedure_Call_Statement (Loc,
1497                 Name => New_Occurrence_Of (RTE (RE_Raise_Exception), Loc),
1498                 Parameter_Associations => New_List (
1499                   New_Occurrence_Of (RTE (RE_Null_Id), Loc),
1500                   Expression (N))));
1501          else
1502             Rewrite (N,
1503               Make_Procedure_Call_Statement (Loc,
1504                 Name => New_Occurrence_Of (RTE (RE_Raise_Exception), Loc),
1505                 Parameter_Associations => New_List (
1506                   Make_Attribute_Reference (Loc,
1507                     Prefix         => Name (N),
1508                     Attribute_Name => Name_Identity),
1509                   Expression (N))));
1510          end if;
1511
1512          Analyze (N);
1513          return;
1514       end if;
1515
1516       --  Remaining processing is for the case where no string expression is
1517       --  present.
1518
1519       --  Don't expand a raise statement that does not come from source if we
1520       --  have already had configurable run-time violations, since most likely
1521       --  it will be junk cascaded nonsense.
1522
1523       if Configurable_Run_Time_Violations > 0
1524         and then not Comes_From_Source (N)
1525       then
1526          return;
1527       end if;
1528
1529       --  Convert explicit raise of Program_Error, Constraint_Error, and
1530       --  Storage_Error into the corresponding raise (in High_Integrity_Mode
1531       --  all other raises will get normal expansion and be disallowed,
1532       --  but this is also faster in all modes). Propagate Comes_From_Source
1533       --  flag to the new node.
1534
1535       if Present (Name (N)) and then Nkind (Name (N)) = N_Identifier then
1536          Src := Comes_From_Source (N);
1537
1538          if Entity (Name (N)) = Standard_Constraint_Error then
1539             Rewrite (N,
1540               Make_Raise_Constraint_Error (Loc, Reason => CE_Explicit_Raise));
1541             Set_Comes_From_Source (N, Src);
1542             Analyze (N);
1543             return;
1544
1545          elsif Entity (Name (N)) = Standard_Program_Error then
1546             Rewrite (N,
1547               Make_Raise_Program_Error (Loc, Reason => PE_Explicit_Raise));
1548             Set_Comes_From_Source (N, Src);
1549             Analyze (N);
1550             return;
1551
1552          elsif Entity (Name (N)) = Standard_Storage_Error then
1553             Rewrite (N,
1554               Make_Raise_Storage_Error (Loc, Reason => SE_Explicit_Raise));
1555             Set_Comes_From_Source (N, Src);
1556             Analyze (N);
1557             return;
1558          end if;
1559       end if;
1560
1561       --  Case of name present, in this case we expand raise name to
1562
1563       --    Raise_Exception (name'Identity, location_string);
1564
1565       --  where location_string identifies the file/line of the raise
1566
1567       if Present (Name (N)) then
1568          declare
1569             Id : Entity_Id := Entity (Name (N));
1570
1571          begin
1572             Name_Len := 0;
1573             Build_Location_String (Loc);
1574
1575             --  If the exception is a renaming, use the exception that it
1576             --  renames (which might be a predefined exception, e.g.).
1577
1578             if Present (Renamed_Object (Id)) then
1579                Id := Renamed_Object (Id);
1580             end if;
1581
1582             --  Build a C-compatible string in case of no exception handlers,
1583             --  since this is what the last chance handler is expecting.
1584
1585             if No_Exception_Handlers_Set then
1586
1587                --  Generate an empty message if configuration pragma
1588                --  Suppress_Exception_Locations is set for this unit.
1589
1590                if Opt.Exception_Locations_Suppressed then
1591                   Name_Len := 1;
1592                else
1593                   Name_Len := Name_Len + 1;
1594                end if;
1595
1596                Name_Buffer (Name_Len) := ASCII.NUL;
1597             end if;
1598
1599             if Opt.Exception_Locations_Suppressed then
1600                Name_Len := 0;
1601             end if;
1602
1603             Str := String_From_Name_Buffer;
1604
1605             --  For VMS exceptions, convert the raise into a call to
1606             --  lib$stop so it will be handled by __gnat_error_handler.
1607
1608             if Is_VMS_Exception (Id) then
1609                declare
1610                   Excep_Image : String_Id;
1611                   Cond        : Node_Id;
1612
1613                begin
1614                   if Present (Interface_Name (Id)) then
1615                      Excep_Image := Strval (Interface_Name (Id));
1616                   else
1617                      Get_Name_String (Chars (Id));
1618                      Set_All_Upper_Case;
1619                      Excep_Image := String_From_Name_Buffer;
1620                   end if;
1621
1622                   if Exception_Code (Id) /= No_Uint then
1623                      Cond :=
1624                        Make_Integer_Literal (Loc, Exception_Code (Id));
1625                   else
1626                      Cond :=
1627                        Unchecked_Convert_To (Standard_Integer,
1628                          Make_Function_Call (Loc,
1629                            Name => New_Occurrence_Of
1630                              (RTE (RE_Import_Value), Loc),
1631                            Parameter_Associations => New_List
1632                              (Make_String_Literal (Loc,
1633                                Strval => Excep_Image))));
1634                   end if;
1635
1636                   Rewrite (N,
1637                     Make_Procedure_Call_Statement (Loc,
1638                       Name =>
1639                         New_Occurrence_Of (RTE (RE_Lib_Stop), Loc),
1640                       Parameter_Associations => New_List (Cond)));
1641                         Analyze_And_Resolve (Cond, Standard_Integer);
1642                end;
1643
1644             --  Not VMS exception case, convert raise to call to the
1645             --  Raise_Exception routine.
1646
1647             else
1648                Rewrite (N,
1649                  Make_Procedure_Call_Statement (Loc,
1650                     Name => New_Occurrence_Of (RTE (RE_Raise_Exception), Loc),
1651                     Parameter_Associations => New_List (
1652                       Make_Attribute_Reference (Loc,
1653                         Prefix => Name (N),
1654                         Attribute_Name => Name_Identity),
1655                       Make_String_Literal (Loc,
1656                         Strval => Str))));
1657             end if;
1658          end;
1659
1660       --  Case of no name present (reraise). We rewrite the raise to:
1661
1662       --    Reraise_Occurrence_Always (EO);
1663
1664       --  where EO is the current exception occurrence. If the current handler
1665       --  does not have a choice parameter specification, then we provide one.
1666
1667       else
1668          --  Bypass expansion to a run-time call when back-end exception
1669          --  handling is active, unless the target is a VM, CodePeer or
1670          --  GNATprove. In CodePeer, raising an exception is treated as an
1671          --  error, while in GNATprove all code with exceptions falls outside
1672          --  the subset of code which can be formally analyzed.
1673
1674          if VM_Target = No_VM
1675            and then not CodePeer_Mode
1676            and then Exception_Mechanism = Back_End_Exceptions
1677          then
1678             return;
1679          end if;
1680
1681          --  Find innermost enclosing exception handler (there must be one,
1682          --  since the semantics has already verified that this raise statement
1683          --  is valid, and a raise with no arguments is only permitted in the
1684          --  context of an exception handler.
1685
1686          Ehand := Parent (N);
1687          while Nkind (Ehand) /= N_Exception_Handler loop
1688             Ehand := Parent (Ehand);
1689          end loop;
1690
1691          --  Make exception choice parameter if none present. Note that we do
1692          --  not need to put the entity on the entity chain, since no one will
1693          --  be referencing this entity by normal visibility methods.
1694
1695          if No (Choice_Parameter (Ehand)) then
1696             E := Make_Temporary (Loc, 'E');
1697             Set_Choice_Parameter (Ehand, E);
1698             Set_Ekind (E, E_Variable);
1699             Set_Etype (E, RTE (RE_Exception_Occurrence));
1700             Set_Scope (E, Current_Scope);
1701          end if;
1702
1703          --  Now rewrite the raise as a call to Reraise. A special case arises
1704          --  if this raise statement occurs in the context of a handler for
1705          --  all others (i.e. an at end handler). in this case we avoid
1706          --  the call to defer abort, cleanup routines are expected to be
1707          --  called in this case with aborts deferred.
1708
1709          declare
1710             Ech : constant Node_Id := First (Exception_Choices (Ehand));
1711             Ent : Entity_Id;
1712
1713          begin
1714             if Nkind (Ech) = N_Others_Choice
1715               and then All_Others (Ech)
1716             then
1717                Ent := RTE (RE_Reraise_Occurrence_No_Defer);
1718             else
1719                Ent := RTE (RE_Reraise_Occurrence_Always);
1720             end if;
1721
1722             Rewrite (N,
1723               Make_Procedure_Call_Statement (Loc,
1724                 Name => New_Occurrence_Of (Ent, Loc),
1725                 Parameter_Associations => New_List (
1726                   New_Occurrence_Of (Choice_Parameter (Ehand), Loc))));
1727          end;
1728       end if;
1729
1730       Analyze (N);
1731    end Expand_N_Raise_Statement;
1732
1733    ----------------------------------
1734    -- Expand_N_Raise_Storage_Error --
1735    ----------------------------------
1736
1737    procedure Expand_N_Raise_Storage_Error (N : Node_Id) is
1738    begin
1739       --  We adjust the condition to deal with the C/Fortran boolean case. This
1740       --  may well not be necessary, as all such conditions are generated by
1741       --  the expander and probably are all standard boolean, but who knows
1742       --  what strange optimization in future may require this adjustment!
1743
1744       Adjust_Condition (Condition (N));
1745
1746       --  Now deal with possible local raise handling
1747
1748       Possible_Local_Raise (N, Standard_Storage_Error);
1749    end Expand_N_Raise_Storage_Error;
1750
1751    --------------------------
1752    -- Possible_Local_Raise --
1753    --------------------------
1754
1755    procedure Possible_Local_Raise (N : Node_Id; E : Entity_Id) is
1756    begin
1757       --  Nothing to do if local raise optimization not active
1758
1759       if not Debug_Flag_Dot_G
1760         and then not Restriction_Active (No_Exception_Propagation)
1761       then
1762          return;
1763       end if;
1764
1765       --  Nothing to do if original node was an explicit raise, because in
1766       --  that case, we already generated the required warning for the raise.
1767
1768       if Nkind (Original_Node (N)) = N_Raise_Statement then
1769          return;
1770       end if;
1771
1772       --  Otherwise see if we have a local handler for the exception
1773
1774       declare
1775          H : constant Node_Id := Find_Local_Handler (E, N);
1776
1777       begin
1778          --  If so, mark that it has a local raise
1779
1780          if Present (H) then
1781             Set_Has_Local_Raise (H, True);
1782
1783          --  Otherwise, if the No_Exception_Propagation restriction is active
1784          --  and the warning is enabled, generate the appropriate warnings.
1785
1786          elsif Warn_On_Non_Local_Exception
1787            and then Restriction_Active (No_Exception_Propagation)
1788          then
1789             Warn_No_Exception_Propagation_Active (N);
1790
1791             if Configurable_Run_Time_Mode then
1792                Error_Msg_NE
1793                  ("\?& may call Last_Chance_Handler", N, E);
1794             else
1795                Error_Msg_NE
1796                  ("\?& may result in unhandled exception", N, E);
1797             end if;
1798          end if;
1799       end;
1800    end Possible_Local_Raise;
1801
1802    ------------------------------
1803    -- Expand_N_Subprogram_Info --
1804    ------------------------------
1805
1806    procedure Expand_N_Subprogram_Info (N : Node_Id) is
1807       Loc : constant Source_Ptr := Sloc (N);
1808
1809    begin
1810       --  For now, we replace an Expand_N_Subprogram_Info node with an
1811       --  attribute reference that gives the address of the procedure.
1812       --  This is because gigi does not yet recognize this node, and
1813       --  for the initial targets, this is the right value anyway.
1814
1815       Rewrite (N,
1816         Make_Attribute_Reference (Loc,
1817           Prefix => Identifier (N),
1818           Attribute_Name => Name_Code_Address));
1819
1820       Analyze_And_Resolve (N, RTE (RE_Code_Loc));
1821    end Expand_N_Subprogram_Info;
1822
1823    ------------------------
1824    -- Find_Local_Handler --
1825    ------------------------
1826
1827    function Find_Local_Handler
1828      (Ename : Entity_Id;
1829       Nod   : Node_Id) return Node_Id
1830    is
1831       N : Node_Id;
1832       P : Node_Id;
1833       H : Node_Id;
1834       C : Node_Id;
1835
1836       SSE : Scope_Stack_Entry renames Scope_Stack.Table (Scope_Stack.Last);
1837       --  This is used to test for wrapped actions below
1838
1839       ERaise  : Entity_Id;
1840       EHandle : Entity_Id;
1841       --  The entity Id's for the exception we are raising and handling, using
1842       --  the renamed exception if a Renamed_Entity is present.
1843
1844    begin
1845       --  Never any local handler if all handlers removed
1846
1847       if Debug_Flag_Dot_X then
1848          return Empty;
1849       end if;
1850
1851       --  Get the exception we are raising, allowing for renaming
1852
1853       ERaise := Get_Renamed_Entity (Ename);
1854
1855       --  We need to check if the node we are looking at is contained in
1856       --
1857
1858       --  Loop to search up the tree
1859
1860       N := Nod;
1861       loop
1862          P := Parent (N);
1863
1864          --  If we get to the top of the tree, or to a subprogram, task, entry,
1865          --  protected body, or accept statement without having found a
1866          --  matching handler, then there is no local handler.
1867
1868          if No (P)
1869            or else Nkind (P) = N_Subprogram_Body
1870            or else Nkind (P) = N_Task_Body
1871            or else Nkind (P) = N_Protected_Body
1872            or else Nkind (P) = N_Entry_Body
1873            or else Nkind (P) = N_Accept_Statement
1874          then
1875             return Empty;
1876
1877             --  Test for handled sequence of statements with at least one
1878             --  exception handler which might be the one we are looking for.
1879
1880          elsif Nkind (P) = N_Handled_Sequence_Of_Statements
1881            and then Present (Exception_Handlers (P))
1882          then
1883             --  Before we proceed we need to check if the node N is covered
1884             --  by the statement part of P rather than one of its exception
1885             --  handlers (an exception handler obviously does not cover its
1886             --  own statements).
1887
1888             --  This test is more delicate than might be thought. It is not
1889             --  just a matter of checking the Statements (P), because the node
1890             --  might be waiting to be wrapped in a transient scope, in which
1891             --  case it will end up in the block statements, even though it
1892             --  is not there now.
1893
1894             if Is_List_Member (N)
1895               and then (List_Containing (N) = Statements (P)
1896                           or else
1897                         List_Containing (N) = SSE.Actions_To_Be_Wrapped_Before
1898                           or else
1899                         List_Containing (N) = SSE.Actions_To_Be_Wrapped_After)
1900             then
1901                --  Loop through exception handlers
1902
1903                H := First (Exception_Handlers (P));
1904                while Present (H) loop
1905
1906                   --  Loop through choices in one handler
1907
1908                   C := First (Exception_Choices (H));
1909                   while Present (C) loop
1910
1911                      --  Deal with others case
1912
1913                      if Nkind (C) = N_Others_Choice then
1914
1915                         --  Matching others handler, but we need to ensure
1916                         --  there is no choice parameter. If there is, then we
1917                         --  don't have a local handler after all (since we do
1918                         --  not allow choice parameters for local handlers).
1919
1920                         if No (Choice_Parameter (H)) then
1921                            return H;
1922                         else
1923                            return Empty;
1924                         end if;
1925
1926                      --  If not others must be entity name
1927
1928                      elsif Nkind (C) /= N_Others_Choice then
1929                         pragma Assert (Is_Entity_Name (C));
1930                         pragma Assert (Present (Entity (C)));
1931
1932                         --  Get exception being handled, dealing with renaming
1933
1934                         EHandle := Get_Renamed_Entity (Entity (C));
1935
1936                         --  If match, then check choice parameter
1937
1938                         if ERaise = EHandle then
1939                            if No (Choice_Parameter (H)) then
1940                               return H;
1941                            else
1942                               return Empty;
1943                            end if;
1944                         end if;
1945                      end if;
1946
1947                      Next (C);
1948                   end loop;
1949
1950                   Next (H);
1951                end loop;
1952             end if;
1953          end if;
1954
1955          N := P;
1956       end loop;
1957    end Find_Local_Handler;
1958
1959    ---------------------------------
1960    -- Get_Local_Raise_Call_Entity --
1961    ---------------------------------
1962
1963    --  Note: this is primary provided for use by the back end in generating
1964    --  calls to Local_Raise. But it would be too late in the back end to call
1965    --  RTE if this actually caused a load/analyze of the unit. So what we do
1966    --  is to ensure there is a dummy call to this function during front end
1967    --  processing so that the unit gets loaded then, and not later.
1968
1969    Local_Raise_Call_Entity     : Entity_Id;
1970    Local_Raise_Call_Entity_Set : Boolean := False;
1971
1972    function Get_Local_Raise_Call_Entity return Entity_Id is
1973    begin
1974       if not Local_Raise_Call_Entity_Set then
1975          Local_Raise_Call_Entity_Set := True;
1976
1977          if RTE_Available (RE_Local_Raise) then
1978             Local_Raise_Call_Entity := RTE (RE_Local_Raise);
1979          else
1980             Local_Raise_Call_Entity := Empty;
1981          end if;
1982       end if;
1983
1984       return Local_Raise_Call_Entity;
1985    end Get_Local_Raise_Call_Entity;
1986
1987    -----------------------------
1988    -- Get_RT_Exception_Entity --
1989    -----------------------------
1990
1991    function Get_RT_Exception_Entity (R : RT_Exception_Code) return Entity_Id is
1992    begin
1993       case R is
1994          when RT_CE_Exceptions => return Standard_Constraint_Error;
1995          when RT_PE_Exceptions => return Standard_Program_Error;
1996          when RT_SE_Exceptions => return Standard_Storage_Error;
1997       end case;
1998    end Get_RT_Exception_Entity;
1999
2000    ----------------------
2001    -- Is_Non_Ada_Error --
2002    ----------------------
2003
2004    function Is_Non_Ada_Error (E : Entity_Id) return Boolean is
2005    begin
2006       if not OpenVMS_On_Target then
2007          return False;
2008       end if;
2009
2010       Get_Name_String (Chars (E));
2011
2012       --  Note: it is a little irregular for the body of exp_ch11 to know
2013       --  the details of the encoding scheme for names, but on the other
2014       --  hand, gigi knows them, and this is for gigi's benefit anyway!
2015
2016       if Name_Buffer (1 .. 30) /= "system__aux_dec__non_ada_error" then
2017          return False;
2018       end if;
2019
2020       return True;
2021    end Is_Non_Ada_Error;
2022
2023    ----------------------------
2024    -- Warn_If_No_Propagation --
2025    ----------------------------
2026
2027    procedure Warn_If_No_Propagation (N : Node_Id) is
2028    begin
2029       if Restriction_Check_Required (No_Exception_Propagation)
2030         and then Warn_On_Non_Local_Exception
2031       then
2032          Warn_No_Exception_Propagation_Active (N);
2033
2034          if Configurable_Run_Time_Mode then
2035             Error_Msg_N
2036               ("\?Last_Chance_Handler will be called on exception", N);
2037          else
2038             Error_Msg_N
2039               ("\?execution may raise unhandled exception", N);
2040          end if;
2041       end if;
2042    end Warn_If_No_Propagation;
2043
2044    ------------------------------------------
2045    -- Warn_No_Exception_Propagation_Active --
2046    ------------------------------------------
2047
2048    procedure Warn_No_Exception_Propagation_Active (N : Node_Id) is
2049    begin
2050       Error_Msg_N
2051         ("?pragma Restrictions (No_Exception_Propagation) in effect", N);
2052    end Warn_No_Exception_Propagation_Active;
2053
2054 end Exp_Ch11;