OSDN Git Service

* cp-tree.h (lang_identifier): Remove class_value.
[pf3gnuchains/gcc-fork.git] / gcc / cp / cp-gimplify.c
1 /* C++-specific tree lowering bits; see also c-gimplify.c and tree-gimple.c.
2
3    Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
4    Contributed by Jason Merrill <jason@redhat.com>
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING.  If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21 02111-1307, USA.  */
22
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "tree.h"
28 #include "cp-tree.h"
29 #include "c-common.h"
30 #include "toplev.h"
31 #include "tree-gimple.h"
32
33
34 /* Genericize a TRY_BLOCK.  */
35
36 static void
37 genericize_try_block (tree *stmt_p)
38 {
39   tree body = TRY_STMTS (*stmt_p);
40   tree cleanup = TRY_HANDLERS (*stmt_p);
41
42   gimplify_stmt (&body);
43
44   if (CLEANUP_P (*stmt_p))
45     /* A cleanup is an expression, so it doesn't need to be genericized.  */;
46   else
47     gimplify_stmt (&cleanup);
48
49   *stmt_p = build (TRY_CATCH_EXPR, void_type_node, body, cleanup);
50 }
51
52 /* Genericize a HANDLER by converting to a CATCH_EXPR.  */
53
54 static void
55 genericize_catch_block (tree *stmt_p)
56 {
57   tree type = HANDLER_TYPE (*stmt_p);
58   tree body = HANDLER_BODY (*stmt_p);
59
60   gimplify_stmt (&body);
61
62   /* FIXME should the caught type go in TREE_TYPE?  */
63   *stmt_p = build (CATCH_EXPR, void_type_node, type, body);
64 }
65
66 /* Genericize an EH_SPEC_BLOCK by converting it to a
67    TRY_CATCH_EXPR/EH_FILTER_EXPR pair.  */
68
69 static void
70 genericize_eh_spec_block (tree *stmt_p)
71 {
72   tree body = EH_SPEC_STMTS (*stmt_p);
73   tree allowed = EH_SPEC_RAISES (*stmt_p);
74   tree failure = build_call (call_unexpected_node,
75                              tree_cons (NULL_TREE, build_exc_ptr (),
76                                         NULL_TREE));
77   gimplify_stmt (&body);
78
79   *stmt_p = gimple_build_eh_filter (body, allowed, failure);
80 }
81
82 /* Genericize an IF_STMT by turning it into a COND_EXPR.  */
83
84 static void
85 gimplify_if_stmt (tree *stmt_p)
86 {
87   tree stmt, then_, else_;
88
89   stmt = *stmt_p;
90   then_ = THEN_CLAUSE (stmt);
91   else_ = ELSE_CLAUSE (stmt);
92
93   if (!then_)
94     then_ = build_empty_stmt ();
95   if (!else_)
96     else_ = build_empty_stmt ();
97
98   stmt = build (COND_EXPR, void_type_node, IF_COND (stmt), then_, else_);
99   *stmt_p = stmt;
100 }
101
102 /* Gimplify initialization from an AGGR_INIT_EXPR.  */
103
104 static void
105 cp_gimplify_init_expr (tree *expr_p, tree *pre_p, tree *post_p)
106 {
107   tree from = TREE_OPERAND (*expr_p, 1);
108   tree to = TREE_OPERAND (*expr_p, 0);
109   tree sub;
110
111   /* If we are initializing something from a TARGET_EXPR, strip the
112      TARGET_EXPR and initialize it directly.  */
113   /* What about code that pulls out the temp and uses it elsewhere?  I
114      think that such code never uses the TARGET_EXPR as an initializer.  If
115      I'm wrong, we'll abort because the temp won't have any RTL.  In that
116      case, I guess we'll need to replace references somehow.  */
117   if (TREE_CODE (from) == TARGET_EXPR)
118     from = TARGET_EXPR_INITIAL (from);
119   if (TREE_CODE (from) == CLEANUP_POINT_EXPR)
120     from = TREE_OPERAND (from, 0);
121
122   /* Look through any COMPOUND_EXPRs.  */
123   sub = expr_last (from);
124
125   /* If we are initializing from an AGGR_INIT_EXPR, drop the INIT_EXPR and
126      replace the slot operand with our target.
127
128      Should we add a target parm to gimplify_expr instead?  No, as in this
129      case we want to replace the INIT_EXPR.  */
130   if (TREE_CODE (sub) == AGGR_INIT_EXPR)
131     {
132       gimplify_expr (&to, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
133       TREE_OPERAND (sub, 2) = to;
134       *expr_p = from;
135
136       /* The initialization is now a side-effect, so the container can
137          become void.  */
138       if (from != sub)
139         TREE_TYPE (from) = void_type_node;
140     }
141 }
142
143 /* Gimplify a MUST_NOT_THROW_EXPR.  */
144
145 static void
146 gimplify_must_not_throw_expr (tree *expr_p, tree *pre_p)
147 {
148   tree stmt = *expr_p;
149   tree temp = voidify_wrapper_expr (stmt, NULL);
150   tree body = TREE_OPERAND (stmt, 0);
151
152   gimplify_stmt (&body);
153
154   stmt = gimple_build_eh_filter (body, NULL_TREE,
155                                  build_call (terminate_node, NULL_TREE));
156
157   if (temp)
158     {
159       append_to_statement_list (stmt, pre_p);
160       *expr_p = temp;
161     }
162   else
163     *expr_p = stmt;
164 }
165
166 /* Do C++-specific gimplification.  Args are as for gimplify_expr.  */
167
168 int
169 cp_gimplify_expr (tree *expr_p, tree *pre_p, tree *post_p)
170 {
171   int saved_stmts_are_full_exprs_p = 0;
172   enum tree_code code = TREE_CODE (*expr_p);
173   enum gimplify_status ret;
174
175   if (STATEMENT_CODE_P (code))
176     {
177       saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
178       current_stmt_tree ()->stmts_are_full_exprs_p
179         = STMT_IS_FULL_EXPR_P (*expr_p);
180     }
181
182   switch (code)
183     {
184     case PTRMEM_CST:
185       *expr_p = cplus_expand_constant (*expr_p);
186       ret = GS_OK;
187       break;
188
189     case AGGR_INIT_EXPR:
190       simplify_aggr_init_expr (expr_p);
191       ret = GS_OK;
192       break;
193
194     case THROW_EXPR:
195       /* FIXME communicate throw type to backend, probably by moving
196          THROW_EXPR into ../tree.def.  */
197       *expr_p = TREE_OPERAND (*expr_p, 0);
198       ret = GS_OK;
199       break;
200
201     case MUST_NOT_THROW_EXPR:
202       gimplify_must_not_throw_expr (expr_p, pre_p);
203       ret = GS_OK;
204       break;
205
206     case INIT_EXPR:
207     case MODIFY_EXPR:
208       cp_gimplify_init_expr (expr_p, pre_p, post_p);
209       ret = GS_OK;
210       break;
211
212     case EMPTY_CLASS_EXPR:
213       {
214         /* Yes, an INTEGER_CST with RECORD_TYPE.  */
215         tree i = build_int_2 (0, 0);
216         TREE_TYPE (i) = TREE_TYPE (*expr_p);
217         *expr_p = i;
218       }
219       ret = GS_OK;
220       break;
221
222     case BASELINK:
223       *expr_p = BASELINK_FUNCTIONS (*expr_p);
224       ret = GS_OK;
225       break;
226
227     case TRY_BLOCK:
228       genericize_try_block (expr_p);
229       ret = GS_OK;
230       break;
231
232     case HANDLER:
233       genericize_catch_block (expr_p);
234       ret = GS_OK;
235       break;
236
237     case EH_SPEC_BLOCK:
238       genericize_eh_spec_block (expr_p);
239       ret = GS_OK;
240       break;
241
242     case USING_STMT:
243       /* Just ignore for now.  Eventually we will want to pass this on to
244          the debugger.  */
245       *expr_p = build_empty_stmt ();
246       ret = GS_ALL_DONE;
247       break;
248
249     case IF_STMT:
250       gimplify_if_stmt (expr_p);
251       ret = GS_OK;
252       break;
253
254     default:
255       ret = c_gimplify_expr (expr_p, pre_p, post_p);
256       break;
257     }
258
259   /* Restore saved state.  */
260   if (STATEMENT_CODE_P (code))
261     current_stmt_tree ()->stmts_are_full_exprs_p
262       = saved_stmts_are_full_exprs_p;
263
264   return ret;
265 }
266
267 /* Genericize a CLEANUP_STMT.  This just turns into a TRY_FINALLY or
268    TRY_CATCH depending on whether it's EH-only.  */
269
270 static tree
271 gimplify_cleanup_stmt (tree *stmt_p, int *walk_subtrees,
272                        void *data ATTRIBUTE_UNUSED)
273 {
274   tree stmt = *stmt_p;
275
276   if (DECL_P (stmt) || TYPE_P (stmt))
277     *walk_subtrees = 0;
278   else if (TREE_CODE (stmt) == CLEANUP_STMT)
279     *stmt_p = build (CLEANUP_EH_ONLY (stmt) ? TRY_CATCH_EXPR : TRY_FINALLY_EXPR,
280                      void_type_node, CLEANUP_BODY (stmt), CLEANUP_EXPR (stmt));
281
282   return NULL;
283 }
284
285 void
286 cp_genericize (tree fndecl)
287 {
288   /* Due to the way voidify_wrapper_expr is written, we don't get a chance
289      to lower this construct before scanning it.  So we need to lower these
290      before doing anything else.  */
291   walk_tree (&DECL_SAVED_TREE (fndecl), gimplify_cleanup_stmt, NULL, NULL);
292
293   /* Do everything else.  */
294   c_genericize (fndecl);
295 }