OSDN Git Service

2007-09-26 Thomas Quinot <quinot@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / par-ch11.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             P A R . C H 1 1                              --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2007, 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 pragma Style_Checks (All_Checks);
27 --  Turn off subprogram body ordering check. Subprograms are in order
28 --  by RM section rather than alphabetical
29
30 with Sinfo.CN; use Sinfo.CN;
31
32 separate (Par)
33 package body Ch11 is
34
35    --  Local functions, used only in this chapter
36
37    function P_Exception_Handler  return Node_Id;
38    function P_Exception_Choice   return Node_Id;
39
40    ---------------------------------
41    -- 11.1  Exception Declaration --
42    ---------------------------------
43
44    --  Parsed by P_Identifier_Declaration (3.3.1)
45
46    ------------------------------------------
47    -- 11.2  Handled Sequence Of Statements --
48    ------------------------------------------
49
50    --  HANDLED_SEQUENCE_OF_STATEMENTS ::=
51    --      SEQUENCE_OF_STATEMENTS
52    --    [exception
53    --      EXCEPTION_HANDLER
54    --      {EXCEPTION_HANDLER}]
55
56    --  Error_Recovery : Cannot raise Error_Resync
57
58    function P_Handled_Sequence_Of_Statements return Node_Id is
59       Handled_Stmt_Seq_Node : Node_Id;
60
61    begin
62       Handled_Stmt_Seq_Node :=
63         New_Node (N_Handled_Sequence_Of_Statements, Token_Ptr);
64       Set_Statements
65         (Handled_Stmt_Seq_Node, P_Sequence_Of_Statements (SS_Extm_Sreq));
66
67       if Token = Tok_Exception then
68          Scan; -- past EXCEPTION
69          Set_Exception_Handlers
70            (Handled_Stmt_Seq_Node, Parse_Exception_Handlers);
71       end if;
72
73       return Handled_Stmt_Seq_Node;
74    end P_Handled_Sequence_Of_Statements;
75
76    -----------------------------
77    -- 11.2  Exception Handler --
78    -----------------------------
79
80    --  EXCEPTION_HANDLER ::=
81    --    when [CHOICE_PARAMETER_SPECIFICATION :]
82    --      EXCEPTION_CHOICE {| EXCEPTION_CHOICE} =>
83    --        SEQUENCE_OF_STATEMENTS
84
85    --  CHOICE_PARAMETER_SPECIFICATION ::= DEFINING_IDENTIFIER
86
87    --  Error recovery: cannot raise Error_Resync
88
89    function P_Exception_Handler return Node_Id is
90       Scan_State        : Saved_Scan_State;
91       Handler_Node      : Node_Id;
92       Choice_Param_Node : Node_Id;
93
94    begin
95       Handler_Node := New_Node (N_Exception_Handler, Token_Ptr);
96       Set_Local_Raise_Statements (Handler_Node, No_Elist);
97       T_When;
98
99       --  Test for possible choice parameter present
100
101       if Token = Tok_Identifier then
102          Choice_Param_Node := Token_Node;
103          Save_Scan_State (Scan_State); -- at identifier
104          Scan; -- past identifier
105
106          if Token = Tok_Colon then
107             if Ada_Version = Ada_83 then
108                Error_Msg_SP ("(Ada 83) choice parameter not allowed!");
109             end if;
110
111             Scan; -- past :
112             Change_Identifier_To_Defining_Identifier (Choice_Param_Node);
113             Set_Choice_Parameter (Handler_Node, Choice_Param_Node);
114
115          elsif Token = Tok_Others then
116             Error_Msg_AP ("missing "":""");
117             Change_Identifier_To_Defining_Identifier (Choice_Param_Node);
118             Set_Choice_Parameter (Handler_Node, Choice_Param_Node);
119
120          else
121             Restore_Scan_State (Scan_State); -- to identifier
122          end if;
123       end if;
124
125       --  Loop through exception choices
126
127       Set_Exception_Choices (Handler_Node, New_List);
128
129       loop
130          Append (P_Exception_Choice, Exception_Choices (Handler_Node));
131          exit when Token /= Tok_Vertical_Bar;
132          Scan; -- past vertical bar
133       end loop;
134
135       TF_Arrow;
136       Set_Statements (Handler_Node, P_Sequence_Of_Statements (SS_Sreq_Whtm));
137       return Handler_Node;
138    end P_Exception_Handler;
139
140    ------------------------------------------
141    -- 11.2  Choice Parameter Specification --
142    ------------------------------------------
143
144    --  Parsed by P_Exception_Handler (11.2)
145
146    ----------------------------
147    -- 11.2  Exception Choice --
148    ----------------------------
149
150    --  EXCEPTION_CHOICE ::= exception_NAME | others
151
152    --  Error recovery: cannot raise Error_Resync. If an error occurs, then the
153    --  scan pointer is advanced to the next arrow or vertical bar or semicolon.
154
155    function P_Exception_Choice return Node_Id is
156    begin
157
158       if Token = Tok_Others then
159          Scan; -- past OTHERS
160          return New_Node (N_Others_Choice, Prev_Token_Ptr);
161
162       else
163          return P_Name; -- exception name
164       end if;
165
166    exception
167       when Error_Resync =>
168          Resync_Choice;
169          return Error;
170    end P_Exception_Choice;
171
172    ---------------------------
173    -- 11.3  Raise Statement --
174    ---------------------------
175
176    --  RAISE_STATEMENT ::= raise [exception_NAME];
177
178    --  The caller has verified that the initial token is RAISE
179
180    --  Error recovery: can raise Error_Resync
181
182    function P_Raise_Statement return Node_Id is
183       Raise_Node : Node_Id;
184
185    begin
186       Raise_Node := New_Node (N_Raise_Statement, Token_Ptr);
187       Scan; -- past RAISE
188
189       if Token /= Tok_Semicolon then
190          Set_Name (Raise_Node, P_Name);
191       end if;
192
193       if Token = Tok_With then
194          if Ada_Version < Ada_05 then
195             Error_Msg_SC ("string expression in raise is Ada 2005 extension");
196             Error_Msg_SC ("\unit must be compiled with -gnat05 switch");
197          end if;
198
199          Scan; -- past WITH
200          Set_Expression (Raise_Node, P_Expression);
201       end if;
202
203       TF_Semicolon;
204       return Raise_Node;
205    end P_Raise_Statement;
206
207    ------------------------------
208    -- Parse_Exception_Handlers --
209    ------------------------------
210
211    --  This routine scans out a list of exception handlers appearing in a
212    --  construct as:
213
214    --    exception
215    --      EXCEPTION_HANDLER {EXCEPTION_HANDLER}
216
217    --  The caller has scanned out the EXCEPTION keyword
218
219    --  Control returns after scanning the last exception handler, presumably
220    --  at the keyword END, but this is not checked in this routine.
221
222    --  Error recovery: cannot raise Error_Resync
223
224    function Parse_Exception_Handlers return List_Id is
225       Handler       : Node_Id;
226       Handlers_List : List_Id;
227
228    begin
229       Handlers_List := New_List;
230       P_Pragmas_Opt (Handlers_List);
231
232       if Token = Tok_End then
233          Error_Msg_SC ("must have at least one exception handler!");
234
235       else
236          loop
237             Handler := P_Exception_Handler;
238             Append (Handler, Handlers_List);
239
240             --  Note: no need to check for pragmas here. Although the
241             --  syntax officially allows them in this position, they
242             --  will have been swallowed up as part of the statement
243             --  sequence of the handler we just scanned out.
244
245             exit when Token /= Tok_When;
246          end loop;
247       end if;
248
249       return Handlers_List;
250    end Parse_Exception_Handlers;
251
252 end Ch11;