OSDN Git Service

Fix PR c++/37093
[pf3gnuchains/gcc-fork.git] / gcc / cp / except.c
1 /* Handle exceptional things in C++.
2    Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3    2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009
4    Free Software Foundation, Inc.
5    Contributed by Michael Tiemann <tiemann@cygnus.com>
6    Rewritten by Mike Stump <mrs@cygnus.com>, based upon an
7    initial re-implementation courtesy Tad Hunt.
8
9 This file is part of GCC.
10
11 GCC is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3, or (at your option)
14 any later version.
15
16 GCC is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with GCC; see the file COPYING3.  If not see
23 <http://www.gnu.org/licenses/>.  */
24
25
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "tm.h"
30 #include "tree.h"
31 #include "rtl.h"
32 #include "expr.h"
33 #include "libfuncs.h"
34 #include "cp-tree.h"
35 #include "flags.h"
36 #include "output.h"
37 #include "except.h"
38 #include "toplev.h"
39 #include "tree-inline.h"
40 #include "tree-iterator.h"
41 #include "target.h"
42 #include "gimple.h"
43
44 static void push_eh_cleanup (tree);
45 static tree prepare_eh_type (tree);
46 static tree do_begin_catch (void);
47 static int dtor_nothrow (tree);
48 static tree do_end_catch (tree);
49 static bool decl_is_java_type (tree decl, int err);
50 static void initialize_handler_parm (tree, tree);
51 static tree do_allocate_exception (tree);
52 static tree wrap_cleanups_r (tree *, int *, void *);
53 static int complete_ptr_ref_or_void_ptr_p (tree, tree);
54 static bool is_admissible_throw_operand (tree);
55 static int can_convert_eh (tree, tree);
56 static tree cp_protect_cleanup_actions (void);
57
58 /* Sets up all the global eh stuff that needs to be initialized at the
59    start of compilation.  */
60
61 void
62 init_exception_processing (void)
63 {
64   tree tmp;
65
66   /* void std::terminate (); */
67   push_namespace (std_identifier);
68   tmp = build_function_type (void_type_node, void_list_node);
69   terminate_node = build_cp_library_fn_ptr ("terminate", tmp);
70   TREE_THIS_VOLATILE (terminate_node) = 1;
71   TREE_NOTHROW (terminate_node) = 1;
72   pop_namespace ();
73
74   /* void __cxa_call_unexpected(void *); */
75   tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
76   tmp = build_function_type (void_type_node, tmp);
77   call_unexpected_node
78     = push_throw_library_fn (get_identifier ("__cxa_call_unexpected"), tmp);
79
80   lang_protect_cleanup_actions = &cp_protect_cleanup_actions;
81 }
82
83 /* Returns an expression to be executed if an unhandled exception is
84    propagated out of a cleanup region.  */
85
86 static tree
87 cp_protect_cleanup_actions (void)
88 {
89   /* [except.terminate]
90
91      When the destruction of an object during stack unwinding exits
92      using an exception ... void terminate(); is called.  */
93   return terminate_node;
94 }
95
96 static tree
97 prepare_eh_type (tree type)
98 {
99   if (type == NULL_TREE)
100     return type;
101   if (type == error_mark_node)
102     return error_mark_node;
103
104   /* peel back references, so they match.  */
105   type = non_reference (type);
106
107   /* Peel off cv qualifiers.  */
108   type = TYPE_MAIN_VARIANT (type);
109
110   /* Functions and arrays decay to pointers.  */
111   type = type_decays_to (type);
112
113   return type;
114 }
115
116 /* Return the type info for TYPE as used by EH machinery.  */
117 tree
118 eh_type_info (tree type)
119 {
120   tree exp;
121
122   if (type == NULL_TREE || type == error_mark_node)
123     return type;
124
125   if (decl_is_java_type (type, 0))
126     exp = build_java_class_ref (TREE_TYPE (type));
127   else
128     exp = get_tinfo_decl (type);
129
130   return exp;
131 }
132
133 /* Build the address of a typeinfo decl for use in the runtime
134    matching field of the exception model.  */
135
136 tree
137 build_eh_type_type (tree type)
138 {
139   tree exp = eh_type_info (type);
140
141   if (!exp)
142     return NULL;
143
144   mark_used (exp);
145
146   return convert (ptr_type_node, build_address (exp));
147 }
148
149 tree
150 build_exc_ptr (void)
151 {
152   return build_call_n (built_in_decls [BUILT_IN_EH_POINTER],
153                        1, integer_zero_node);
154 }
155
156 /* Declare a function NAME, returning RETURN_TYPE, taking a single
157    parameter PARM_TYPE, with an empty exception specification.
158
159    Note that the C++ ABI document does not have a throw-specifier on
160    the routines declared below via this function.  The declarations
161    are consistent with the actual implementations in libsupc++.  */
162
163 static tree
164 declare_nothrow_library_fn (tree name, tree return_type, tree parm_type)
165 {
166   tree tmp = tree_cons (NULL_TREE, parm_type, void_list_node);
167   return push_library_fn (name, build_function_type (return_type, tmp),
168                           empty_except_spec);
169 }
170
171 /* Build up a call to __cxa_get_exception_ptr so that we can build a
172    copy constructor for the thrown object.  */
173
174 static tree
175 do_get_exception_ptr (void)
176 {
177   tree fn;
178
179   fn = get_identifier ("__cxa_get_exception_ptr");
180   if (!get_global_value_if_present (fn, &fn))
181     {
182       /* Declare void* __cxa_get_exception_ptr (void *) throw().  */
183       fn = declare_nothrow_library_fn (fn, ptr_type_node, ptr_type_node);
184     }
185
186   return cp_build_function_call (fn, tree_cons (NULL_TREE, build_exc_ptr (),
187                                                 NULL_TREE),
188                                  tf_warning_or_error);
189 }
190
191 /* Build up a call to __cxa_begin_catch, to tell the runtime that the
192    exception has been handled.  */
193
194 static tree
195 do_begin_catch (void)
196 {
197   tree fn;
198
199   fn = get_identifier ("__cxa_begin_catch");
200   if (!get_global_value_if_present (fn, &fn))
201     {
202       /* Declare void* __cxa_begin_catch (void *) throw().  */
203       fn = declare_nothrow_library_fn (fn, ptr_type_node, ptr_type_node);
204     }
205
206   return cp_build_function_call (fn, tree_cons (NULL_TREE, build_exc_ptr (),
207                                                 NULL_TREE),
208                                  tf_warning_or_error);
209 }
210
211 /* Returns nonzero if cleaning up an exception of type TYPE (which can be
212    NULL_TREE for a ... handler) will not throw an exception.  */
213
214 static int
215 dtor_nothrow (tree type)
216 {
217   if (type == NULL_TREE)
218     return 0;
219
220   if (!CLASS_TYPE_P (type))
221     return 1;
222
223   if (CLASSTYPE_LAZY_DESTRUCTOR (type))
224     lazily_declare_fn (sfk_destructor, type);
225
226   return TREE_NOTHROW (CLASSTYPE_DESTRUCTORS (type));
227 }
228
229 /* Build up a call to __cxa_end_catch, to destroy the exception object
230    for the current catch block if no others are currently using it.  */
231
232 static tree
233 do_end_catch (tree type)
234 {
235   tree fn, cleanup;
236
237   fn = get_identifier ("__cxa_end_catch");
238   if (!get_global_value_if_present (fn, &fn))
239     {
240       /* Declare void __cxa_end_catch ().  */
241       fn = push_void_library_fn (fn, void_list_node);
242       /* This can throw if the destructor for the exception throws.  */
243       TREE_NOTHROW (fn) = 0;
244     }
245
246   cleanup = cp_build_function_call (fn, NULL_TREE, tf_warning_or_error);
247   TREE_NOTHROW (cleanup) = dtor_nothrow (type);
248
249   return cleanup;
250 }
251
252 /* This routine creates the cleanup for the current exception.  */
253
254 static void
255 push_eh_cleanup (tree type)
256 {
257   finish_decl_cleanup (NULL_TREE, do_end_catch (type));
258 }
259
260 /* Return nonzero value if DECL is a Java type suitable for catch or
261    throw.  */
262
263 static bool
264 decl_is_java_type (tree decl, int err)
265 {
266   bool r = (TREE_CODE (decl) == POINTER_TYPE
267             && TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
268             && TYPE_FOR_JAVA (TREE_TYPE (decl)));
269
270   if (err)
271     {
272       if (TREE_CODE (decl) == REFERENCE_TYPE
273           && TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
274           && TYPE_FOR_JAVA (TREE_TYPE (decl)))
275         {
276           /* Can't throw a reference.  */
277           error ("type %qT is disallowed in Java %<throw%> or %<catch%>",
278                  decl);
279         }
280
281       if (r)
282         {
283           tree jthrow_node
284             = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jthrowable"));
285
286           if (jthrow_node == NULL_TREE)
287             fatal_error
288               ("call to Java %<catch%> or %<throw%> with %<jthrowable%> undefined");
289
290           jthrow_node = TREE_TYPE (TREE_TYPE (jthrow_node));
291
292           if (! DERIVED_FROM_P (jthrow_node, TREE_TYPE (decl)))
293             {
294               /* Thrown object must be a Throwable.  */
295               error ("type %qT is not derived from %<java::lang::Throwable%>",
296                      TREE_TYPE (decl));
297             }
298         }
299     }
300
301   return r;
302 }
303
304 /* Select the personality routine to be used for exception handling,
305    or issue an error if we need two different ones in the same
306    translation unit.
307    ??? At present eh_personality_decl is set to
308    __gxx_personality_(sj|v)0 in init_exception_processing - should it
309    be done here instead?  */
310 void
311 choose_personality_routine (enum languages lang)
312 {
313   static enum {
314     chose_none,
315     chose_cpp,
316     chose_java,
317     gave_error
318   } state;
319
320   switch (state)
321     {
322     case gave_error:
323       return;
324
325     case chose_cpp:
326       if (lang != lang_cplusplus)
327         goto give_error;
328       return;
329
330     case chose_java:
331       if (lang != lang_java)
332         goto give_error;
333       return;
334
335     case chose_none:
336       ; /* Proceed to language selection.  */
337     }
338
339   switch (lang)
340     {
341     case lang_cplusplus:
342       state = chose_cpp;
343       break;
344
345     case lang_java:
346       state = chose_java;
347       terminate_node = built_in_decls [BUILT_IN_ABORT];
348       pragma_java_exceptions = true;
349       break;
350
351     default:
352       gcc_unreachable ();
353     }
354   return;
355
356  give_error:
357   error ("mixing C++ and Java catches in a single translation unit");
358   state = gave_error;
359 }
360
361 /* Initialize the catch parameter DECL.  */
362
363 static void
364 initialize_handler_parm (tree decl, tree exp)
365 {
366   tree init;
367   tree init_type;
368
369   /* Make sure we mark the catch param as used, otherwise we'll get a
370      warning about an unused ((anonymous)).  */
371   TREE_USED (decl) = 1;
372
373   /* Figure out the type that the initializer is.  Pointers are returned
374      adjusted by value from __cxa_begin_catch.  Others are returned by
375      reference.  */
376   init_type = TREE_TYPE (decl);
377   if (!POINTER_TYPE_P (init_type))
378     init_type = build_reference_type (init_type);
379
380   choose_personality_routine (decl_is_java_type (init_type, 0)
381                               ? lang_java : lang_cplusplus);
382
383   /* Since pointers are passed by value, initialize a reference to
384      pointer catch parm with the address of the temporary.  */
385   if (TREE_CODE (init_type) == REFERENCE_TYPE
386       && TYPE_PTR_P (TREE_TYPE (init_type)))
387     exp = cp_build_unary_op (ADDR_EXPR, exp, 1, tf_warning_or_error);
388
389   exp = ocp_convert (init_type, exp, CONV_IMPLICIT|CONV_FORCE_TEMP, 0);
390
391   init = convert_from_reference (exp);
392
393   /* If the constructor for the catch parm exits via an exception, we
394      must call terminate.  See eh23.C.  */
395   if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
396     {
397       /* Generate the copy constructor call directly so we can wrap it.
398          See also expand_default_init.  */
399       init = ocp_convert (TREE_TYPE (decl), init,
400                           CONV_IMPLICIT|CONV_FORCE_TEMP, 0);
401       /* Force cleanups now to avoid nesting problems with the
402          MUST_NOT_THROW_EXPR.  */
403       init = fold_build_cleanup_point_expr (TREE_TYPE (init), init);
404       init = build1 (MUST_NOT_THROW_EXPR, TREE_TYPE (init), init);
405     }
406
407   decl = pushdecl (decl);
408
409   start_decl_1 (decl, true);
410   cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE,
411                   LOOKUP_ONLYCONVERTING|DIRECT_BIND);
412 }
413
414 /* Call this to start a catch block.  DECL is the catch parameter.  */
415
416 tree
417 expand_start_catch_block (tree decl)
418 {
419   tree exp;
420   tree type;
421
422   if (! doing_eh (1))
423     return NULL_TREE;
424
425   /* Make sure this declaration is reasonable.  */
426   if (decl && !complete_ptr_ref_or_void_ptr_p (TREE_TYPE (decl), NULL_TREE))
427     decl = error_mark_node;
428
429   if (decl)
430     type = prepare_eh_type (TREE_TYPE (decl));
431   else
432     type = NULL_TREE;
433
434   if (decl && decl_is_java_type (type, 1))
435     {
436       /* Java only passes object via pointer and doesn't require
437          adjusting.  The java object is immediately before the
438          generic exception header.  */
439       exp = build_exc_ptr ();
440       exp = build1 (NOP_EXPR, build_pointer_type (type), exp);
441       exp = build2 (POINTER_PLUS_EXPR, TREE_TYPE (exp), exp,
442                     fold_build1_loc (input_location,
443                                  NEGATE_EXPR, sizetype,
444                                  TYPE_SIZE_UNIT (TREE_TYPE (exp))));
445       exp = cp_build_indirect_ref (exp, NULL, tf_warning_or_error);
446       initialize_handler_parm (decl, exp);
447       return type;
448     }
449
450   /* Call __cxa_end_catch at the end of processing the exception.  */
451   push_eh_cleanup (type);
452
453   /* If there's no decl at all, then all we need to do is make sure
454      to tell the runtime that we've begun handling the exception.  */
455   if (decl == NULL || decl == error_mark_node)
456     finish_expr_stmt (do_begin_catch ());
457
458   /* If the C++ object needs constructing, we need to do that before
459      calling __cxa_begin_catch, so that std::uncaught_exception gets
460      the right value during the copy constructor.  */
461   else if (flag_use_cxa_get_exception_ptr
462            && TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
463     {
464       exp = do_get_exception_ptr ();
465       initialize_handler_parm (decl, exp);
466       finish_expr_stmt (do_begin_catch ());
467     }
468
469   /* Otherwise the type uses a bitwise copy, and we don't have to worry
470      about the value of std::uncaught_exception and therefore can do the
471      copy with the return value of __cxa_end_catch instead.  */
472   else
473     {
474       tree init = do_begin_catch ();
475       tree init_type = type;
476
477       /* Pointers are passed by values, everything else by reference.  */
478       if (!TYPE_PTR_P (type))
479         init_type = build_pointer_type (type);
480       if (init_type != TREE_TYPE (init))
481         init = build1 (NOP_EXPR, init_type, init);
482       exp = create_temporary_var (init_type);
483       DECL_REGISTER (exp) = 1;
484       cp_finish_decl (exp, init, /*init_const_expr=*/false,
485                       NULL_TREE, LOOKUP_ONLYCONVERTING);
486       initialize_handler_parm (decl, exp);
487     }
488
489   return type;
490 }
491
492
493 /* Call this to end a catch block.  Its responsible for emitting the
494    code to handle jumping back to the correct place, and for emitting
495    the label to jump to if this catch block didn't match.  */
496
497 void
498 expand_end_catch_block (void)
499 {
500   if (! doing_eh (1))
501     return;
502
503   /* The exception being handled is rethrown if control reaches the end of
504      a handler of the function-try-block of a constructor or destructor.  */
505   if (in_function_try_handler
506       && (DECL_CONSTRUCTOR_P (current_function_decl)
507           || DECL_DESTRUCTOR_P (current_function_decl)))
508     finish_expr_stmt (build_throw (NULL_TREE));
509 }
510
511 tree
512 begin_eh_spec_block (void)
513 {
514   tree r = build_stmt (input_location, EH_SPEC_BLOCK, NULL_TREE, NULL_TREE);
515   add_stmt (r);
516   EH_SPEC_STMTS (r) = push_stmt_list ();
517   return r;
518 }
519
520 void
521 finish_eh_spec_block (tree raw_raises, tree eh_spec_block)
522 {
523   tree raises;
524
525   EH_SPEC_STMTS (eh_spec_block) = pop_stmt_list (EH_SPEC_STMTS (eh_spec_block));
526
527   /* Strip cv quals, etc, from the specification types.  */
528   for (raises = NULL_TREE;
529        raw_raises && TREE_VALUE (raw_raises);
530        raw_raises = TREE_CHAIN (raw_raises))
531     {
532       tree type = prepare_eh_type (TREE_VALUE (raw_raises));
533       tree tinfo = eh_type_info (type);
534
535       mark_used (tinfo);
536       raises = tree_cons (NULL_TREE, type, raises);
537     }
538
539   EH_SPEC_RAISES (eh_spec_block) = raises;
540 }
541
542 /* Return a pointer to a buffer for an exception object of type TYPE.  */
543
544 static tree
545 do_allocate_exception (tree type)
546 {
547   tree fn;
548
549   fn = get_identifier ("__cxa_allocate_exception");
550   if (!get_global_value_if_present (fn, &fn))
551     {
552       /* Declare void *__cxa_allocate_exception(size_t) throw().  */
553       fn = declare_nothrow_library_fn (fn, ptr_type_node, size_type_node);
554     }
555
556   return cp_build_function_call (fn, 
557                                  tree_cons (NULL_TREE, size_in_bytes (type),
558                                             NULL_TREE),
559                                  tf_warning_or_error);
560 }
561
562 /* Call __cxa_free_exception from a cleanup.  This is never invoked
563    directly, but see the comment for stabilize_throw_expr.  */
564
565 static tree
566 do_free_exception (tree ptr)
567 {
568   tree fn;
569
570   fn = get_identifier ("__cxa_free_exception");
571   if (!get_global_value_if_present (fn, &fn))
572     {
573       /* Declare void __cxa_free_exception (void *) throw().  */
574       fn = declare_nothrow_library_fn (fn, void_type_node, ptr_type_node);
575     }
576
577   return cp_build_function_call (fn, tree_cons (NULL_TREE, ptr, NULL_TREE),
578                                  tf_warning_or_error);
579 }
580
581 /* Wrap all cleanups for TARGET_EXPRs in MUST_NOT_THROW_EXPR.
582    Called from build_throw via walk_tree_without_duplicates.  */
583
584 static tree
585 wrap_cleanups_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
586                  void *data ATTRIBUTE_UNUSED)
587 {
588   tree exp = *tp;
589   tree cleanup;
590
591   /* Don't walk into types.  */
592   if (TYPE_P (exp))
593     {
594       *walk_subtrees = 0;
595       return NULL_TREE;
596     }
597   if (TREE_CODE (exp) != TARGET_EXPR)
598     return NULL_TREE;
599
600   cleanup = TARGET_EXPR_CLEANUP (exp);
601   if (cleanup)
602     {
603       cleanup = build1 (MUST_NOT_THROW_EXPR, void_type_node, cleanup);
604       TARGET_EXPR_CLEANUP (exp) = cleanup;
605     }
606
607   /* Keep iterating.  */
608   return NULL_TREE;
609 }
610
611 /* Build a throw expression.  */
612
613 tree
614 build_throw (tree exp)
615 {
616   tree fn;
617
618   if (exp == error_mark_node)
619     return exp;
620
621   if (processing_template_decl)
622     {
623       if (cfun)
624         current_function_returns_abnormally = 1;
625       return build_min (THROW_EXPR, void_type_node, exp);
626     }
627
628   if (exp == null_node)
629     warning (0, "throwing NULL, which has integral, not pointer type");
630
631   if (exp != NULL_TREE)
632     {
633       if (!is_admissible_throw_operand (exp))
634         return error_mark_node;
635     }
636
637   if (! doing_eh (1))
638     return error_mark_node;
639
640   if (exp && decl_is_java_type (TREE_TYPE (exp), 1))
641     {
642       tree fn = get_identifier ("_Jv_Throw");
643       if (!get_global_value_if_present (fn, &fn))
644         {
645           /* Declare void _Jv_Throw (void *).  */
646           tree tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
647           tmp = build_function_type (ptr_type_node, tmp);
648           fn = push_throw_library_fn (fn, tmp);
649         }
650       else if (really_overloaded_fn (fn))
651         {
652           error ("%qD should never be overloaded", fn);
653           return error_mark_node;
654         }
655       fn = OVL_CURRENT (fn);
656       exp = cp_build_function_call (fn, tree_cons (NULL_TREE, exp, NULL_TREE),
657                                     tf_warning_or_error);
658     }
659   else if (exp)
660     {
661       tree throw_type;
662       tree temp_type;
663       tree cleanup;
664       tree object, ptr;
665       tree tmp;
666       tree temp_expr, allocate_expr;
667       bool elided;
668
669       /* The CLEANUP_TYPE is the internal type of a destructor.  */
670       if (!cleanup_type)
671         {
672           tmp = void_list_node;
673           tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
674           tmp = build_function_type (void_type_node, tmp);
675           cleanup_type = build_pointer_type (tmp);
676         }
677
678       fn = get_identifier ("__cxa_throw");
679       if (!get_global_value_if_present (fn, &fn))
680         {
681           /* Declare void __cxa_throw (void*, void*, void (*)(void*)).  */
682           /* ??? Second argument is supposed to be "std::type_info*".  */
683           tmp = void_list_node;
684           tmp = tree_cons (NULL_TREE, cleanup_type, tmp);
685           tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
686           tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
687           tmp = build_function_type (void_type_node, tmp);
688           fn = push_throw_library_fn (fn, tmp);
689         }
690
691       /* [except.throw]
692
693          A throw-expression initializes a temporary object, the type
694          of which is determined by removing any top-level
695          cv-qualifiers from the static type of the operand of throw
696          and adjusting the type from "array of T" or "function return
697          T" to "pointer to T" or "pointer to function returning T"
698          respectively.  */
699       temp_type = is_bitfield_expr_with_lowered_type (exp);
700       if (!temp_type)
701         temp_type = type_decays_to (TREE_TYPE (exp));
702
703       /* OK, this is kind of wacky.  The standard says that we call
704          terminate when the exception handling mechanism, after
705          completing evaluation of the expression to be thrown but
706          before the exception is caught (_except.throw_), calls a
707          user function that exits via an uncaught exception.
708
709          So we have to protect the actual initialization of the
710          exception object with terminate(), but evaluate the
711          expression first.  Since there could be temps in the
712          expression, we need to handle that, too.  We also expand
713          the call to __cxa_allocate_exception first (which doesn't
714          matter, since it can't throw).  */
715
716       /* Allocate the space for the exception.  */
717       allocate_expr = do_allocate_exception (temp_type);
718       allocate_expr = get_target_expr (allocate_expr);
719       ptr = TARGET_EXPR_SLOT (allocate_expr);
720       object = build_nop (build_pointer_type (temp_type), ptr);
721       object = cp_build_indirect_ref (object, NULL, tf_warning_or_error);
722
723       elided = (TREE_CODE (exp) == TARGET_EXPR);
724
725       /* And initialize the exception object.  */
726       if (CLASS_TYPE_P (temp_type))
727         {
728           int flags = LOOKUP_NORMAL | LOOKUP_ONLYCONVERTING;
729           VEC(tree,gc) *exp_vec;
730
731           /* Under C++0x [12.8/16 class.copy], a thrown lvalue is sometimes
732              treated as an rvalue for the purposes of overload resolution
733              to favor move constructors over copy constructors.  */
734           if (/* Must be a local, automatic variable.  */
735               TREE_CODE (exp) == VAR_DECL
736               && DECL_CONTEXT (exp) == current_function_decl
737               && ! TREE_STATIC (exp)
738               /* The variable must not have the `volatile' qualifier.  */
739               && !(cp_type_quals (TREE_TYPE (exp)) & TYPE_QUAL_VOLATILE))
740             flags = flags | LOOKUP_PREFER_RVALUE;
741
742           /* Call the copy constructor.  */
743           exp_vec = make_tree_vector_single (exp);
744           exp = (build_special_member_call
745                  (object, complete_ctor_identifier, &exp_vec,
746                   TREE_TYPE (object), flags, tf_warning_or_error));
747           release_tree_vector (exp_vec);
748           if (exp == error_mark_node)
749             {
750               error ("  in thrown expression");
751               return error_mark_node;
752             }
753         }
754       else
755         exp = build2 (INIT_EXPR, temp_type, object,
756                       decay_conversion (exp));
757
758       /* Pre-evaluate the thrown expression first, since if we allocated
759          the space first we would have to deal with cleaning it up if
760          evaluating this expression throws.
761
762          The case where EXP the initializer is a cast or a function
763          returning a class is a bit of a grey area in the standard; it's
764          unclear whether or not it should be allowed to throw.  We used to
765          say no, as that allowed us to optimize this case without worrying
766          about deallocating the exception object if it does.  But that
767          conflicted with expectations (PR 13944) and the EDG compiler; now
768          we wrap the initialization in a TRY_CATCH_EXPR to call
769          do_free_exception rather than in a MUST_NOT_THROW_EXPR, for this
770          case only.
771
772          BUT: Issue 475 may do away with this inconsistency by removing the
773          terminate() in this situation.
774
775          Note that we don't check the return value from stabilize_init
776          because it will only return false in cases where elided is true,
777          and therefore we don't need to work around the failure to
778          preevaluate.  */
779       temp_expr = NULL_TREE;
780       stabilize_init (exp, &temp_expr);
781
782       /* Wrap the initialization in a CLEANUP_POINT_EXPR so that cleanups
783          for temporaries within the initialization are run before the one
784          for the exception object, preserving LIFO order.  */
785       exp = build1 (CLEANUP_POINT_EXPR, void_type_node, exp);
786
787       if (elided)
788         exp = build2 (TRY_CATCH_EXPR, void_type_node, exp,
789                       do_free_exception (ptr));
790       else
791         exp = build1 (MUST_NOT_THROW_EXPR, void_type_node, exp);
792
793       /* Prepend the allocation.  */
794       exp = build2 (COMPOUND_EXPR, TREE_TYPE (exp), allocate_expr, exp);
795       if (temp_expr)
796         {
797           /* Prepend the calculation of the throw expression.  Also, force
798              any cleanups from the expression to be evaluated here so that
799              we don't have to do them during unwinding.  But first wrap
800              them in MUST_NOT_THROW_EXPR, since they are run after the
801              exception object is initialized.  */
802           cp_walk_tree_without_duplicates (&temp_expr, wrap_cleanups_r, 0);
803           exp = build2 (COMPOUND_EXPR, TREE_TYPE (exp), temp_expr, exp);
804           exp = build1 (CLEANUP_POINT_EXPR, TREE_TYPE (exp), exp);
805         }
806
807       throw_type = build_eh_type_type (prepare_eh_type (TREE_TYPE (object)));
808
809       if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (object)))
810         {
811           cleanup = lookup_fnfields (TYPE_BINFO (TREE_TYPE (object)),
812                                      complete_dtor_identifier, 0);
813           cleanup = BASELINK_FUNCTIONS (cleanup);
814           mark_used (cleanup);
815           cxx_mark_addressable (cleanup);
816           /* Pretend it's a normal function.  */
817           cleanup = build1 (ADDR_EXPR, cleanup_type, cleanup);
818         }
819       else
820         cleanup = build_int_cst (cleanup_type, 0);
821
822       tmp = tree_cons (NULL_TREE, cleanup, NULL_TREE);
823       tmp = tree_cons (NULL_TREE, throw_type, tmp);
824       tmp = tree_cons (NULL_TREE, ptr, tmp);
825       /* ??? Indicate that this function call throws throw_type.  */
826       tmp = cp_build_function_call (fn, tmp, tf_warning_or_error);
827
828       /* Tack on the initialization stuff.  */
829       exp = build2 (COMPOUND_EXPR, TREE_TYPE (tmp), exp, tmp);
830     }
831   else
832     {
833       /* Rethrow current exception.  */
834
835       tree fn = get_identifier ("__cxa_rethrow");
836       if (!get_global_value_if_present (fn, &fn))
837         {
838           /* Declare void __cxa_rethrow (void).  */
839           fn = push_throw_library_fn
840             (fn, build_function_type (void_type_node, void_list_node));
841         }
842
843       /* ??? Indicate that this function call allows exceptions of the type
844          of the enclosing catch block (if known).  */
845       exp = cp_build_function_call (fn, NULL_TREE, tf_warning_or_error);
846     }
847
848   exp = build1 (THROW_EXPR, void_type_node, exp);
849
850   return exp;
851 }
852
853 /* Make sure TYPE is complete, pointer to complete, reference to
854    complete, or pointer to cv void. Issue diagnostic on failure.
855    Return the zero on failure and nonzero on success. FROM can be
856    the expr or decl from whence TYPE came, if available.  */
857
858 static int
859 complete_ptr_ref_or_void_ptr_p (tree type, tree from)
860 {
861   int is_ptr;
862
863   /* Check complete.  */
864   type = complete_type_or_else (type, from);
865   if (!type)
866     return 0;
867
868   /* Or a pointer or ref to one, or cv void *.  */
869   is_ptr = TREE_CODE (type) == POINTER_TYPE;
870   if (is_ptr || TREE_CODE (type) == REFERENCE_TYPE)
871     {
872       tree core = TREE_TYPE (type);
873
874       if (is_ptr && VOID_TYPE_P (core))
875         /* OK */;
876       else if (!complete_type_or_else (core, from))
877         return 0;
878     }
879   return 1;
880 }
881
882 /* Return truth-value if EXPRESSION is admissible in throw-expression,
883    i.e. if it is not of incomplete type or a pointer/reference to such
884    a type or of an abstract class type.  */
885
886 static bool
887 is_admissible_throw_operand (tree expr)
888 {
889   tree type = TREE_TYPE (expr);
890
891   /* 15.1/4 [...] The type of the throw-expression shall not be an
892             incomplete type, or a pointer or a reference to an incomplete
893             type, other than void*, const void*, volatile void*, or
894             const volatile void*.  Except for these restriction and the
895             restrictions on type matching mentioned in 15.3, the operand
896             of throw is treated exactly as a function argument in a call
897             (5.2.2) or the operand of a return statement.  */
898   if (!complete_ptr_ref_or_void_ptr_p (type, expr))
899     return false;
900
901   /* 10.4/3 An abstract class shall not be used as a parameter type,
902             as a function return type or as type of an explicit
903             conversion.  */
904   else if (CLASS_TYPE_P (type) && CLASSTYPE_PURE_VIRTUALS (type))
905     {
906       error ("expression %qE of abstract class type %qT cannot "
907              "be used in throw-expression", expr, type);
908       return false;
909     }
910
911   return true;
912 }
913
914 /* Returns nonzero if FN is a declaration of a standard C library
915    function which is known not to throw.
916
917    [lib.res.on.exception.handling]: None of the functions from the
918    Standard C library shall report an error by throwing an
919    exception, unless it calls a program-supplied function that
920    throws an exception.  */
921
922 #include "cfns.h"
923
924 int
925 nothrow_libfn_p (const_tree fn)
926 {
927   tree id;
928
929   if (TREE_PUBLIC (fn)
930       && DECL_EXTERNAL (fn)
931       && DECL_NAMESPACE_SCOPE_P (fn)
932       && DECL_EXTERN_C_P (fn))
933     /* OK */;
934   else
935     /* Can't be a C library function.  */
936     return 0;
937
938   /* Being a C library function, DECL_ASSEMBLER_NAME == DECL_NAME
939      unless the system headers are playing rename tricks, and if
940      they are, we don't want to be confused by them.  */
941   id = DECL_NAME (fn);
942   return !!libc_name_p (IDENTIFIER_POINTER (id), IDENTIFIER_LENGTH (id));
943 }
944
945 /* Returns nonzero if an exception of type FROM will be caught by a
946    handler for type TO, as per [except.handle].  */
947
948 static int
949 can_convert_eh (tree to, tree from)
950 {
951   to = non_reference (to);
952   from = non_reference (from);
953
954   if (TREE_CODE (to) == POINTER_TYPE && TREE_CODE (from) == POINTER_TYPE)
955     {
956       to = TREE_TYPE (to);
957       from = TREE_TYPE (from);
958
959       if (! at_least_as_qualified_p (to, from))
960         return 0;
961
962       if (TREE_CODE (to) == VOID_TYPE)
963         return 1;
964
965       /* Else fall through.  */
966     }
967
968   if (CLASS_TYPE_P (to) && CLASS_TYPE_P (from)
969       && PUBLICLY_UNIQUELY_DERIVED_P (to, from))
970     return 1;
971
972   return 0;
973 }
974
975 /* Check whether any of the handlers in I are shadowed by another handler
976    accepting TYPE.  Note that the shadowing may not be complete; even if
977    an exception of type B would be caught by a handler for A, there could
978    be a derived class C for which A is an ambiguous base but B is not, so
979    the handler for B would catch an exception of type C.  */
980
981 static void
982 check_handlers_1 (tree master, tree_stmt_iterator i)
983 {
984   tree type = TREE_TYPE (master);
985
986   for (; !tsi_end_p (i); tsi_next (&i))
987     {
988       tree handler = tsi_stmt (i);
989       if (TREE_TYPE (handler) && can_convert_eh (type, TREE_TYPE (handler)))
990         {
991           warning_at (EXPR_LOCATION (handler), 0,
992                       "exception of type %qT will be caught",
993                       TREE_TYPE (handler));
994           warning_at (EXPR_LOCATION (master), 0,
995                       "   by earlier handler for %qT", type);
996           break;
997         }
998     }
999 }
1000
1001 /* Given a STATEMENT_LIST of HANDLERs, make sure that they're OK.  */
1002
1003 void
1004 check_handlers (tree handlers)
1005 {
1006   tree_stmt_iterator i;
1007
1008   /* If we don't have a STATEMENT_LIST, then we've just got one
1009      handler, and thus nothing to warn about.  */
1010   if (TREE_CODE (handlers) != STATEMENT_LIST)
1011     return;
1012
1013   i = tsi_start (handlers);
1014   if (!tsi_end_p (i))
1015     while (1)
1016       {
1017         tree handler = tsi_stmt (i);
1018         tsi_next (&i);
1019
1020         /* No more handlers; nothing to shadow.  */
1021         if (tsi_end_p (i))
1022           break;
1023         if (TREE_TYPE (handler) == NULL_TREE)
1024           permerror (EXPR_LOCATION (handler), "%<...%>"
1025                      " handler must be the last handler for its try block");
1026         else
1027           check_handlers_1 (handler, i);
1028       }
1029 }