1 /* Handle exceptional things in C++.
2 Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4 Contributed by Michael Tiemann <tiemann@cygnus.com>
5 Rewritten by Mike Stump <mrs@cygnus.com>, based upon an
6 initial re-implementation courtesy Tad Hunt.
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
15 GCC is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING. If not, write to
22 the Free Software Foundation, 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
28 #include "coretypes.h"
39 #include "tree-inline.h"
41 static void push_eh_cleanup (tree
);
42 static tree
prepare_eh_type (tree
);
43 static tree
build_eh_type_type (tree
);
44 static tree
do_begin_catch (void);
45 static int dtor_nothrow (tree
);
46 static tree
do_end_catch (tree
);
47 static void push_eh_cleanup (tree
);
48 static bool decl_is_java_type (tree decl
, int err
);
49 static void initialize_handler_parm (tree
, tree
);
50 static tree
do_allocate_exception (tree
);
51 static tree
stabilize_throw_expr (tree
, 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 void check_handlers_1 (tree
, tree
);
57 static tree
cp_protect_cleanup_actions (void);
59 /* Sets up all the global eh stuff that needs to be initialized at the
60 start of compilation. */
63 init_exception_processing (void)
67 /* void std::terminate (); */
68 push_namespace (std_identifier
);
69 tmp
= build_function_type (void_type_node
, void_list_node
);
70 terminate_node
= build_cp_library_fn_ptr ("terminate", tmp
);
71 TREE_THIS_VOLATILE (terminate_node
) = 1;
72 TREE_NOTHROW (terminate_node
) = 1;
75 /* void __cxa_call_unexpected(void *); */
76 tmp
= tree_cons (NULL_TREE
, ptr_type_node
, void_list_node
);
77 tmp
= build_function_type (void_type_node
, tmp
);
79 = push_throw_library_fn (get_identifier ("__cxa_call_unexpected"), tmp
);
81 eh_personality_libfunc
= init_one_libfunc (USING_SJLJ_EXCEPTIONS
82 ? "__gxx_personality_sj0"
83 : "__gxx_personality_v0");
85 lang_eh_runtime_type
= build_eh_type_type
;
86 lang_protect_cleanup_actions
= &cp_protect_cleanup_actions
;
89 /* Returns an expression to be executed if an unhandled exception is
90 propagated out of a cleanup region. */
93 cp_protect_cleanup_actions (void)
97 When the destruction of an object during stack unwinding exits
98 using an exception ... void terminate(); is called. */
99 return build_call (terminate_node
, NULL_TREE
);
103 prepare_eh_type (tree type
)
105 if (type
== NULL_TREE
)
107 if (type
== error_mark_node
)
108 return error_mark_node
;
110 /* peel back references, so they match. */
111 if (TREE_CODE (type
) == REFERENCE_TYPE
)
112 type
= TREE_TYPE (type
);
114 /* Peel off cv qualifiers. */
115 type
= TYPE_MAIN_VARIANT (type
);
120 /* Build the address of a typeinfo decl for use in the runtime
121 matching field of the exception model. */
124 build_eh_type_type (tree type
)
128 if (type
== NULL_TREE
|| type
== error_mark_node
)
131 if (decl_is_java_type (type
, 0))
132 exp
= build_java_class_ref (TREE_TYPE (type
));
134 exp
= get_tinfo_decl (type
);
137 exp
= build1 (ADDR_EXPR
, ptr_type_node
, exp
);
145 return build (EXC_PTR_EXPR
, ptr_type_node
);
148 /* Build up a call to __cxa_begin_catch, to tell the runtime that the
149 exception has been handled. */
152 do_begin_catch (void)
156 fn
= get_identifier ("__cxa_begin_catch");
157 if (IDENTIFIER_GLOBAL_VALUE (fn
))
158 fn
= IDENTIFIER_GLOBAL_VALUE (fn
);
161 /* Declare void* __cxa_begin_catch (void *). */
162 tree tmp
= tree_cons (NULL_TREE
, ptr_type_node
, void_list_node
);
163 fn
= push_library_fn (fn
, build_function_type (ptr_type_node
, tmp
));
166 return build_function_call (fn
, tree_cons (NULL_TREE
, build_exc_ptr (),
170 /* Returns nonzero if cleaning up an exception of type TYPE (which can be
171 NULL_TREE for a ... handler) will not throw an exception. */
174 dtor_nothrow (tree type
)
176 if (type
== NULL_TREE
)
179 if (! TYPE_HAS_DESTRUCTOR (type
))
182 return TREE_NOTHROW (CLASSTYPE_DESTRUCTORS (type
));
185 /* Build up a call to __cxa_end_catch, to destroy the exception object
186 for the current catch block if no others are currently using it. */
189 do_end_catch (tree type
)
193 fn
= get_identifier ("__cxa_end_catch");
194 if (IDENTIFIER_GLOBAL_VALUE (fn
))
195 fn
= IDENTIFIER_GLOBAL_VALUE (fn
);
198 /* Declare void __cxa_end_catch (). */
199 fn
= push_void_library_fn (fn
, void_list_node
);
200 /* This can throw if the destructor for the exception throws. */
201 TREE_NOTHROW (fn
) = 0;
204 cleanup
= build_function_call (fn
, NULL_TREE
);
205 TREE_NOTHROW (cleanup
) = dtor_nothrow (type
);
210 /* This routine creates the cleanup for the current exception. */
213 push_eh_cleanup (tree type
)
215 finish_decl_cleanup (NULL_TREE
, do_end_catch (type
));
218 /* Return nonzero value if DECL is a Java type suitable for catch or
222 decl_is_java_type (tree decl
, int err
)
224 bool r
= (TREE_CODE (decl
) == POINTER_TYPE
225 && TREE_CODE (TREE_TYPE (decl
)) == RECORD_TYPE
226 && TYPE_FOR_JAVA (TREE_TYPE (decl
)));
230 if (TREE_CODE (decl
) == REFERENCE_TYPE
231 && TREE_CODE (TREE_TYPE (decl
)) == RECORD_TYPE
232 && TYPE_FOR_JAVA (TREE_TYPE (decl
)))
234 /* Can't throw a reference. */
235 error ("type `%T' is disallowed in Java `throw' or `catch'",
242 = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jthrowable"));
244 if (jthrow_node
== NULL_TREE
)
246 ("call to Java `catch' or `throw' with `jthrowable' undefined");
248 jthrow_node
= TREE_TYPE (TREE_TYPE (jthrow_node
));
250 if (! DERIVED_FROM_P (jthrow_node
, TREE_TYPE (decl
)))
252 /* Thrown object must be a Throwable. */
253 error ("type `%T' is not derived from `java::lang::Throwable'",
262 /* Select the personality routine to be used for exception handling,
263 or issue an error if we need two different ones in the same
265 ??? At present eh_personality_libfunc is set to
266 __gxx_personality_(sj|v)0 in init_exception_processing - should it
267 be done here instead? */
269 choose_personality_routine (enum languages lang
)
284 if (lang
!= lang_cplusplus
)
289 if (lang
!= lang_java
)
294 ; /* proceed to language selection */
305 eh_personality_libfunc
= init_one_libfunc (USING_SJLJ_EXCEPTIONS
306 ? "__gcj_personality_sj0"
307 : "__gcj_personality_v0");
316 error ("mixing C++ and Java catches in a single translation unit");
320 /* Initialize the catch parameter DECL. */
323 initialize_handler_parm (tree decl
, tree exp
)
328 /* Make sure we mark the catch param as used, otherwise we'll get a
329 warning about an unused ((anonymous)). */
330 TREE_USED (decl
) = 1;
332 /* Figure out the type that the initializer is. Pointers are returned
333 adjusted by value from __cxa_begin_catch. Others are returned by
335 init_type
= TREE_TYPE (decl
);
336 if (! TYPE_PTR_P (init_type
)
337 && TREE_CODE (init_type
) != REFERENCE_TYPE
)
338 init_type
= build_reference_type (init_type
);
340 choose_personality_routine (decl_is_java_type (init_type
, 0)
341 ? lang_java
: lang_cplusplus
);
343 /* Since pointers are passed by value, initialize a reference to
344 pointer catch parm with the address of the temporary. */
345 if (TREE_CODE (init_type
) == REFERENCE_TYPE
346 && TYPE_PTR_P (TREE_TYPE (init_type
)))
347 exp
= build_unary_op (ADDR_EXPR
, exp
, 1);
349 exp
= ocp_convert (init_type
, exp
, CONV_IMPLICIT
|CONV_FORCE_TEMP
, 0);
351 init
= convert_from_reference (exp
);
353 /* If the constructor for the catch parm exits via an exception, we
354 must call terminate. See eh23.C. */
355 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl
)))
357 /* Generate the copy constructor call directly so we can wrap it.
358 See also expand_default_init. */
359 init
= ocp_convert (TREE_TYPE (decl
), init
,
360 CONV_IMPLICIT
|CONV_FORCE_TEMP
, 0);
361 init
= build1 (MUST_NOT_THROW_EXPR
, TREE_TYPE (init
), init
);
364 /* Let `cp_finish_decl' know that this initializer is ok. */
365 DECL_INITIAL (decl
) = error_mark_node
;
366 decl
= pushdecl (decl
);
369 cp_finish_decl (decl
, init
, NULL_TREE
,
370 LOOKUP_ONLYCONVERTING
|DIRECT_BIND
);
373 /* Call this to start a catch block. DECL is the catch parameter. */
376 expand_start_catch_block (tree decl
)
378 tree exp
= NULL_TREE
;
385 /* Make sure this declaration is reasonable. */
386 if (decl
&& !complete_ptr_ref_or_void_ptr_p (TREE_TYPE (decl
), NULL_TREE
))
390 type
= prepare_eh_type (TREE_TYPE (decl
));
399 if (decl_is_java_type (type
, 1))
401 /* Java only passes object via pointer and doesn't require
402 adjusting. The java object is immediately before the
403 generic exception header. */
404 init
= build_exc_ptr ();
405 init
= build1 (NOP_EXPR
, build_pointer_type (type
), init
);
406 init
= build (MINUS_EXPR
, TREE_TYPE (init
), init
,
407 TYPE_SIZE_UNIT (TREE_TYPE (init
)));
408 init
= build_indirect_ref (init
, NULL
);
413 /* C++ requires that we call __cxa_begin_catch to get the
414 pointer to the actual object. */
415 init
= do_begin_catch ();
418 exp
= create_temporary_var (ptr_type_node
);
419 DECL_REGISTER (exp
) = 1;
420 cp_finish_decl (exp
, init
, NULL_TREE
, LOOKUP_ONLYCONVERTING
);
421 finish_expr_stmt (build_modify_expr (exp
, INIT_EXPR
, init
));
424 finish_expr_stmt (do_begin_catch ());
426 /* C++ requires that we call __cxa_end_catch at the end of
427 processing the exception. */
429 push_eh_cleanup (type
);
432 initialize_handler_parm (decl
, exp
);
438 /* Call this to end a catch block. Its responsible for emitting the
439 code to handle jumping back to the correct place, and for emitting
440 the label to jump to if this catch block didn't match. */
443 expand_end_catch_block (void)
448 /* The exception being handled is rethrown if control reaches the end of
449 a handler of the function-try-block of a constructor or destructor. */
450 if (in_function_try_handler
451 && (DECL_CONSTRUCTOR_P (current_function_decl
)
452 || DECL_DESTRUCTOR_P (current_function_decl
)))
453 finish_expr_stmt (build_throw (NULL_TREE
));
457 begin_eh_spec_block (void)
459 tree r
= build_stmt (EH_SPEC_BLOCK
, NULL_TREE
, NULL_TREE
);
465 finish_eh_spec_block (tree raw_raises
, tree eh_spec_block
)
469 RECHAIN_STMTS (eh_spec_block
, EH_SPEC_STMTS (eh_spec_block
));
471 /* Strip cv quals, etc, from the specification types. */
472 for (raises
= NULL_TREE
;
473 raw_raises
&& TREE_VALUE (raw_raises
);
474 raw_raises
= TREE_CHAIN (raw_raises
))
475 raises
= tree_cons (NULL_TREE
, prepare_eh_type (TREE_VALUE (raw_raises
)),
478 EH_SPEC_RAISES (eh_spec_block
) = raises
;
481 /* Return a pointer to a buffer for an exception object of type TYPE. */
484 do_allocate_exception (tree type
)
488 fn
= get_identifier ("__cxa_allocate_exception");
489 if (IDENTIFIER_GLOBAL_VALUE (fn
))
490 fn
= IDENTIFIER_GLOBAL_VALUE (fn
);
493 /* Declare void *__cxa_allocate_exception(size_t). */
494 tree tmp
= tree_cons (NULL_TREE
, size_type_node
, void_list_node
);
495 fn
= push_library_fn (fn
, build_function_type (ptr_type_node
, tmp
));
498 return build_function_call (fn
, tree_cons (NULL_TREE
, size_in_bytes (type
),
503 /* Call __cxa_free_exception from a cleanup. This is never invoked
504 directly, but see the comment for stabilize_throw_expr. */
507 do_free_exception (tree ptr
)
511 fn
= get_identifier ("__cxa_free_exception");
512 if (IDENTIFIER_GLOBAL_VALUE (fn
))
513 fn
= IDENTIFIER_GLOBAL_VALUE (fn
);
516 /* Declare void __cxa_free_exception (void *). */
517 fn
= push_void_library_fn (fn
, tree_cons (NULL_TREE
, ptr_type_node
,
521 return build_function_call (fn
, tree_cons (NULL_TREE
, ptr
, NULL_TREE
));
525 /* Wrap all cleanups for TARGET_EXPRs in MUST_NOT_THROW_EXPR.
526 Called from build_throw via walk_tree_without_duplicates. */
529 wrap_cleanups_r (tree
*tp
, int *walk_subtrees ATTRIBUTE_UNUSED
,
530 void *data ATTRIBUTE_UNUSED
)
535 /* Don't walk into types. */
541 if (TREE_CODE (exp
) != TARGET_EXPR
)
544 cleanup
= TARGET_EXPR_CLEANUP (exp
);
547 cleanup
= build1 (MUST_NOT_THROW_EXPR
, void_type_node
, cleanup
);
548 TARGET_EXPR_CLEANUP (exp
) = cleanup
;
551 /* Keep iterating. */
555 /* Like stabilize_expr, but specifically for a thrown expression. When
556 throwing a temporary class object, we want to construct it directly into
557 the thrown exception, so we look past the TARGET_EXPR and stabilize the
558 arguments of the call instead.
560 The case where EXP is a call to a function returning a class is a bit of
561 a grey area in the standard; it's unclear whether or not it should be
562 allowed to throw. I'm going to say no, as that allows us to optimize
563 this case without worrying about deallocating the exception object if it
564 does. The alternatives would be either not optimizing this case, or
565 wrapping the initialization in a TRY_CATCH_EXPR to call do_free_exception
566 rather than in a MUST_NOT_THROW_EXPR, for this case only. */
569 stabilize_throw_expr (tree exp
, tree
*initp
)
573 if (TREE_CODE (exp
) == TARGET_EXPR
574 && TREE_CODE (TARGET_EXPR_INITIAL (exp
)) == AGGR_INIT_EXPR
575 && flag_elide_constructors
)
577 tree aggr_init
= AGGR_INIT_EXPR_CHECK (TARGET_EXPR_INITIAL (exp
));
578 tree args
= TREE_OPERAND (aggr_init
, 1);
579 tree newargs
= NULL_TREE
;
582 init_expr
= void_zero_node
;
583 for (; args
; args
= TREE_CHAIN (args
))
585 tree arg
= TREE_VALUE (args
);
588 arg
= stabilize_expr (arg
, &arg_init_expr
);
590 if (TREE_SIDE_EFFECTS (arg_init_expr
))
591 init_expr
= build (COMPOUND_EXPR
, void_type_node
, init_expr
,
593 *p
= tree_cons (NULL_TREE
, arg
, NULL_TREE
);
594 p
= &TREE_CHAIN (*p
);
596 TREE_OPERAND (aggr_init
, 1) = newargs
;
600 exp
= stabilize_expr (exp
, &init_expr
);
607 /* Build a throw expression. */
610 build_throw (tree exp
)
614 if (exp
== error_mark_node
)
617 if (processing_template_decl
)
618 return build_min (THROW_EXPR
, void_type_node
, exp
);
620 if (exp
== null_node
)
621 warning ("throwing NULL, which has integral, not pointer type");
623 if (exp
!= NULL_TREE
)
625 if (!is_admissible_throw_operand (exp
))
626 return error_mark_node
;
630 return error_mark_node
;
632 if (exp
&& decl_is_java_type (TREE_TYPE (exp
), 1))
634 tree fn
= get_identifier ("_Jv_Throw");
635 if (IDENTIFIER_GLOBAL_VALUE (fn
))
636 fn
= IDENTIFIER_GLOBAL_VALUE (fn
);
639 /* Declare void _Jv_Throw (void *). */
640 tree tmp
= tree_cons (NULL_TREE
, ptr_type_node
, void_list_node
);
641 tmp
= build_function_type (ptr_type_node
, tmp
);
642 fn
= push_throw_library_fn (fn
, tmp
);
645 exp
= build_function_call (fn
, tree_cons (NULL_TREE
, exp
, NULL_TREE
));
653 tree temp_expr
, allocate_expr
;
655 fn
= get_identifier ("__cxa_throw");
656 if (IDENTIFIER_GLOBAL_VALUE (fn
))
657 fn
= IDENTIFIER_GLOBAL_VALUE (fn
);
660 /* The CLEANUP_TYPE is the internal type of a destructor. */
661 if (cleanup_type
== NULL_TREE
)
663 tmp
= void_list_node
;
664 tmp
= tree_cons (NULL_TREE
, ptr_type_node
, tmp
);
665 tmp
= build_function_type (void_type_node
, tmp
);
666 cleanup_type
= build_pointer_type (tmp
);
669 /* Declare void __cxa_throw (void*, void*, void (*)(void*)). */
670 /* ??? Second argument is supposed to be "std::type_info*". */
671 tmp
= void_list_node
;
672 tmp
= tree_cons (NULL_TREE
, cleanup_type
, tmp
);
673 tmp
= tree_cons (NULL_TREE
, ptr_type_node
, tmp
);
674 tmp
= tree_cons (NULL_TREE
, ptr_type_node
, tmp
);
675 tmp
= build_function_type (void_type_node
, tmp
);
676 fn
= push_throw_library_fn (fn
, tmp
);
679 /* throw expression */
680 /* First, decay it. */
681 exp
= decay_conversion (exp
);
683 /* OK, this is kind of wacky. The standard says that we call
684 terminate when the exception handling mechanism, after
685 completing evaluation of the expression to be thrown but
686 before the exception is caught (_except.throw_), calls a
687 user function that exits via an uncaught exception.
689 So we have to protect the actual initialization of the
690 exception object with terminate(), but evaluate the
691 expression first. Since there could be temps in the
692 expression, we need to handle that, too. We also expand
693 the call to __cxa_allocate_exception first (which doesn't
694 matter, since it can't throw). */
696 /* Pre-evaluate the thrown expression first, since if we allocated
697 the space first we would have to deal with cleaning it up if
698 evaluating this expression throws. */
699 exp
= stabilize_throw_expr (exp
, &temp_expr
);
701 /* Allocate the space for the exception. */
702 allocate_expr
= do_allocate_exception (TREE_TYPE (exp
));
703 allocate_expr
= get_target_expr (allocate_expr
);
704 ptr
= TARGET_EXPR_SLOT (allocate_expr
);
705 object
= build1 (NOP_EXPR
, build_pointer_type (TREE_TYPE (exp
)), ptr
);
706 object
= build_indirect_ref (object
, NULL
);
708 /* And initialize the exception object. */
709 exp
= build_init (object
, exp
, LOOKUP_ONLYCONVERTING
);
710 if (exp
== error_mark_node
)
712 error (" in thrown expression");
713 return error_mark_node
;
716 exp
= build1 (MUST_NOT_THROW_EXPR
, void_type_node
, exp
);
717 /* Prepend the allocation. */
718 exp
= build (COMPOUND_EXPR
, TREE_TYPE (exp
), allocate_expr
, exp
);
719 if (temp_expr
!= void_zero_node
)
721 /* Prepend the calculation of the throw expression. Also, force
722 any cleanups from the expression to be evaluated here so that
723 we don't have to do them during unwinding. But first wrap
724 them in MUST_NOT_THROW_EXPR, since they are run after the
725 exception object is initialized. */
726 walk_tree_without_duplicates (&temp_expr
, wrap_cleanups_r
, 0);
727 exp
= build (COMPOUND_EXPR
, TREE_TYPE (exp
), temp_expr
, exp
);
728 exp
= build1 (CLEANUP_POINT_EXPR
, TREE_TYPE (exp
), exp
);
731 throw_type
= build_eh_type_type (prepare_eh_type (TREE_TYPE (object
)));
733 if (TYPE_HAS_DESTRUCTOR (TREE_TYPE (object
)))
735 cleanup
= lookup_fnfields (TYPE_BINFO (TREE_TYPE (object
)),
736 complete_dtor_identifier
, 0);
737 cleanup
= BASELINK_FUNCTIONS (cleanup
);
739 cxx_mark_addressable (cleanup
);
740 /* Pretend it's a normal function. */
741 cleanup
= build1 (ADDR_EXPR
, cleanup_type
, cleanup
);
745 cleanup
= build_int_2 (0, 0);
746 TREE_TYPE (cleanup
) = cleanup_type
;
749 tmp
= tree_cons (NULL_TREE
, cleanup
, NULL_TREE
);
750 tmp
= tree_cons (NULL_TREE
, throw_type
, tmp
);
751 tmp
= tree_cons (NULL_TREE
, ptr
, tmp
);
752 /* ??? Indicate that this function call throws throw_type. */
753 tmp
= build_function_call (fn
, tmp
);
755 /* Tack on the initialization stuff. */
756 exp
= build (COMPOUND_EXPR
, TREE_TYPE (tmp
), exp
, tmp
);
760 /* Rethrow current exception. */
762 tree fn
= get_identifier ("__cxa_rethrow");
763 if (IDENTIFIER_GLOBAL_VALUE (fn
))
764 fn
= IDENTIFIER_GLOBAL_VALUE (fn
);
767 /* Declare void __cxa_rethrow (void). */
768 fn
= push_throw_library_fn
769 (fn
, build_function_type (void_type_node
, void_list_node
));
772 /* ??? Indicate that this function call allows exceptions of the type
773 of the enclosing catch block (if known). */
774 exp
= build_function_call (fn
, NULL_TREE
);
777 exp
= build1 (THROW_EXPR
, void_type_node
, exp
);
782 /* Make sure TYPE is complete, pointer to complete, reference to
783 complete, or pointer to cv void. Issue diagnostic on failure.
784 Return the zero on failure and nonzero on success. FROM can be
785 the expr or decl from whence TYPE came, if available. */
788 complete_ptr_ref_or_void_ptr_p (tree type
, tree from
)
792 /* Check complete. */
793 type
= complete_type_or_else (type
, from
);
797 /* Or a pointer or ref to one, or cv void *. */
798 is_ptr
= TREE_CODE (type
) == POINTER_TYPE
;
799 if (is_ptr
|| TREE_CODE (type
) == REFERENCE_TYPE
)
801 tree core
= TREE_TYPE (type
);
803 if (is_ptr
&& VOID_TYPE_P (core
))
805 else if (!complete_type_or_else (core
, from
))
811 /* Return truth-value if EXPRESSION is admissible in throw-expression,
812 i.e. if it is not of incomplete type or a pointer/reference to such
813 a type or of an abstract class type. */
816 is_admissible_throw_operand (tree expr
)
818 tree type
= TREE_TYPE (expr
);
820 /* 15.1/4 [...] The type of the throw-expression shall not be an
821 incomplete type, or a pointer or a reference to an incomplete
822 type, other than void*, const void*, volatile void*, or
823 const volatile void*. Except for these restriction and the
824 restrictions on type matching mentioned in 15.3, the operand
825 of throw is treated exactly as a function argument in a call
826 (5.2.2) or the operand of a return statement. */
827 if (!complete_ptr_ref_or_void_ptr_p (type
, expr
))
830 /* 10.4/3 An abstract class shall not be used as a parameter type,
831 as a function return type or as type of an explicit
833 else if (CLASS_TYPE_P (type
) && CLASSTYPE_PURE_VIRTUALS (type
))
835 error ("expression '%E' of abstract class type '%T' cannot be used in throw-expression", expr
, type
);
842 /* Returns nonzero if FN is a declaration of a standard C library
843 function which is known not to throw.
845 [lib.res.on.exception.handling]: None of the functions from the
846 Standard C library shall report an error by throwing an
847 exception, unless it calls a program-supplied function that
848 throws an exception. */
853 nothrow_libfn_p (tree fn
)
858 && DECL_EXTERNAL (fn
)
859 && DECL_NAMESPACE_SCOPE_P (fn
)
860 && DECL_EXTERN_C_P (fn
))
863 /* Can't be a C library function. */
866 id
= DECL_ASSEMBLER_NAME (fn
);
867 return !!libc_name_p (IDENTIFIER_POINTER (id
), IDENTIFIER_LENGTH (id
));
870 /* Returns nonzero if an exception of type FROM will be caught by a
871 handler for type TO, as per [except.handle]. */
874 can_convert_eh (tree to
, tree from
)
876 if (TREE_CODE (to
) == REFERENCE_TYPE
)
878 if (TREE_CODE (from
) == REFERENCE_TYPE
)
879 from
= TREE_TYPE (from
);
881 if (TREE_CODE (to
) == POINTER_TYPE
&& TREE_CODE (from
) == POINTER_TYPE
)
884 from
= TREE_TYPE (from
);
886 if (! at_least_as_qualified_p (to
, from
))
889 if (TREE_CODE (to
) == VOID_TYPE
)
892 /* else fall through */
895 if (CLASS_TYPE_P (to
) && CLASS_TYPE_P (from
)
896 && PUBLICLY_UNIQUELY_DERIVED_P (to
, from
))
902 /* Check whether any of HANDLERS are shadowed by another handler accepting
903 TYPE. Note that the shadowing may not be complete; even if an exception
904 of type B would be caught by a handler for A, there could be a derived
905 class C for which A is an ambiguous base but B is not, so the handler
906 for B would catch an exception of type C. */
909 check_handlers_1 (tree master
, tree handlers
)
911 tree type
= TREE_TYPE (master
);
914 for (handler
= handlers
; handler
; handler
= TREE_CHAIN (handler
))
915 if (TREE_TYPE (handler
)
916 && can_convert_eh (type
, TREE_TYPE (handler
)))
918 lineno
= STMT_LINENO (handler
);
919 warning ("exception of type `%T' will be caught",
920 TREE_TYPE (handler
));
921 lineno
= STMT_LINENO (master
);
922 warning (" by earlier handler for `%T'", type
);
927 /* Given a chain of HANDLERs, make sure that they're OK. */
930 check_handlers (tree handlers
)
933 int save_line
= lineno
;
934 for (handler
= handlers
; handler
; handler
= TREE_CHAIN (handler
))
936 if (TREE_CHAIN (handler
) == NULL_TREE
)
937 /* No more handlers; nothing to shadow. */;
938 else if (TREE_TYPE (handler
) == NULL_TREE
)
940 lineno
= STMT_LINENO (handler
);
942 ("`...' handler must be the last handler for its try block");
945 check_handlers_1 (handler
, TREE_CHAIN (handler
));