1 /* Handle exceptional things in C++.
2 Copyright (C) 1989-2015 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann <tiemann@cygnus.com>
4 Rewritten by Mike Stump <mrs@cygnus.com>, based upon an
5 initial re-implementation courtesy Tad Hunt.
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
26 #include "coretypes.h"
30 #include "stringpool.h"
32 #include "trans-mem.h"
35 #include "tree-inline.h"
36 #include "tree-iterator.h"
38 static void push_eh_cleanup (tree
);
39 static tree
prepare_eh_type (tree
);
40 static tree
do_begin_catch (void);
41 static int dtor_nothrow (tree
);
42 static tree
do_end_catch (tree
);
43 static bool decl_is_java_type (tree decl
, int err
);
44 static void initialize_handler_parm (tree
, tree
);
45 static tree
do_allocate_exception (tree
);
46 static tree
wrap_cleanups_r (tree
*, int *, void *);
47 static int complete_ptr_ref_or_void_ptr_p (tree
, tree
);
48 static bool is_admissible_throw_operand_or_catch_parameter (tree
, bool);
49 static int can_convert_eh (tree
, tree
);
51 /* Sets up all the global eh stuff that needs to be initialized at the
52 start of compilation. */
55 init_exception_processing (void)
59 /* void std::terminate (); */
60 push_namespace (std_identifier
);
61 tmp
= build_function_type_list (void_type_node
, NULL_TREE
);
62 terminate_node
= build_cp_library_fn_ptr ("terminate", tmp
,
63 ECF_NOTHROW
| ECF_NORETURN
);
64 TREE_THIS_VOLATILE (terminate_node
) = 1;
65 TREE_NOTHROW (terminate_node
) = 1;
68 /* void __cxa_call_unexpected(void *); */
69 tmp
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
71 = push_throw_library_fn (get_identifier ("__cxa_call_unexpected"), tmp
);
74 /* Returns an expression to be executed if an unhandled exception is
75 propagated out of a cleanup region. */
78 cp_protect_cleanup_actions (void)
82 When the destruction of an object during stack unwinding exits
83 using an exception ... void terminate(); is called. */
84 return terminate_node
;
88 prepare_eh_type (tree type
)
90 if (type
== NULL_TREE
)
92 if (type
== error_mark_node
)
93 return error_mark_node
;
95 /* peel back references, so they match. */
96 type
= non_reference (type
);
98 /* Peel off cv qualifiers. */
99 type
= TYPE_MAIN_VARIANT (type
);
101 /* Functions and arrays decay to pointers. */
102 type
= type_decays_to (type
);
107 /* Return the type info for TYPE as used by EH machinery. */
109 eh_type_info (tree type
)
113 if (type
== NULL_TREE
|| type
== error_mark_node
)
116 if (decl_is_java_type (type
, 0))
117 exp
= build_java_class_ref (TREE_TYPE (type
));
119 exp
= get_tinfo_decl (type
);
124 /* Build the address of a typeinfo decl for use in the runtime
125 matching field of the exception model. */
128 build_eh_type_type (tree type
)
130 tree exp
= eh_type_info (type
);
137 return convert (ptr_type_node
, build_address (exp
));
143 return build_call_n (builtin_decl_explicit (BUILT_IN_EH_POINTER
),
144 1, integer_zero_node
);
147 /* Declare a function NAME, returning RETURN_TYPE, taking a single
148 parameter PARM_TYPE, with an empty exception specification.
150 Note that the C++ ABI document does not have a throw-specifier on
151 the routines declared below via this function. The declarations
152 are consistent with the actual implementations in libsupc++. */
155 declare_library_fn (tree name
, tree return_type
, tree parm_type
, int ecf_flags
)
157 return push_library_fn (name
, build_function_type_list (return_type
,
164 /* Build up a call to __cxa_get_exception_ptr so that we can build a
165 copy constructor for the thrown object. */
168 do_get_exception_ptr (void)
172 fn
= get_identifier ("__cxa_get_exception_ptr");
173 if (!get_global_value_if_present (fn
, &fn
))
175 /* Declare void* __cxa_get_exception_ptr (void *) throw(). */
176 fn
= declare_library_fn (fn
, ptr_type_node
, ptr_type_node
,
177 ECF_NOTHROW
| ECF_PURE
| ECF_LEAF
| ECF_TM_PURE
);
180 return cp_build_function_call_nary (fn
, tf_warning_or_error
,
181 build_exc_ptr (), NULL_TREE
);
184 /* Build up a call to __cxa_begin_catch, to tell the runtime that the
185 exception has been handled. */
188 do_begin_catch (void)
192 fn
= get_identifier ("__cxa_begin_catch");
193 if (!get_global_value_if_present (fn
, &fn
))
195 /* Declare void* __cxa_begin_catch (void *) throw(). */
196 fn
= declare_library_fn (fn
, ptr_type_node
, ptr_type_node
, ECF_NOTHROW
);
198 /* Create its transactional-memory equivalent. */
201 tree fn2
= get_identifier ("_ITM_cxa_begin_catch");
202 if (!get_global_value_if_present (fn2
, &fn2
))
203 fn2
= declare_library_fn (fn2
, ptr_type_node
,
204 ptr_type_node
, ECF_NOTHROW
| ECF_TM_PURE
);
205 record_tm_replacement (fn
, fn2
);
209 return cp_build_function_call_nary (fn
, tf_warning_or_error
,
210 build_exc_ptr (), NULL_TREE
);
213 /* Returns nonzero if cleaning up an exception of type TYPE (which can be
214 NULL_TREE for a ... handler) will not throw an exception. */
217 dtor_nothrow (tree type
)
219 if (type
== NULL_TREE
|| type
== error_mark_node
)
222 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type
))
225 if (CLASSTYPE_LAZY_DESTRUCTOR (type
))
226 lazily_declare_fn (sfk_destructor
, type
);
228 return TREE_NOTHROW (CLASSTYPE_DESTRUCTORS (type
));
231 /* Build up a call to __cxa_end_catch, to destroy the exception object
232 for the current catch block if no others are currently using it. */
235 do_end_catch (tree type
)
239 fn
= get_identifier ("__cxa_end_catch");
240 if (!get_global_value_if_present (fn
, &fn
))
242 /* Declare void __cxa_end_catch ().
243 This can throw if the destructor for the exception throws. */
244 fn
= push_void_library_fn (fn
, void_list_node
, 0);
246 /* Create its transactional-memory equivalent. */
249 tree fn2
= get_identifier ("_ITM_cxa_end_catch");
250 if (!get_global_value_if_present (fn2
, &fn2
))
251 fn2
= push_void_library_fn (fn2
, void_list_node
, ECF_TM_PURE
);
252 record_tm_replacement (fn
, fn2
);
256 cleanup
= cp_build_function_call_vec (fn
, NULL
, tf_warning_or_error
);
257 TREE_NOTHROW (cleanup
) = dtor_nothrow (type
);
262 /* This routine creates the cleanup for the current exception. */
265 push_eh_cleanup (tree type
)
267 finish_decl_cleanup (NULL_TREE
, do_end_catch (type
));
270 /* Return nonzero value if DECL is a Java type suitable for catch or
274 decl_is_java_type (tree decl
, int err
)
276 bool r
= (TYPE_PTR_P (decl
)
277 && TREE_CODE (TREE_TYPE (decl
)) == RECORD_TYPE
278 && TYPE_FOR_JAVA (TREE_TYPE (decl
)));
282 if (TREE_CODE (decl
) == REFERENCE_TYPE
283 && TREE_CODE (TREE_TYPE (decl
)) == RECORD_TYPE
284 && TYPE_FOR_JAVA (TREE_TYPE (decl
)))
286 /* Can't throw a reference. */
287 error ("type %qT is disallowed in Java %<throw%> or %<catch%>",
294 = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jthrowable"));
296 if (jthrow_node
== NULL_TREE
)
299 "call to Java %<catch%> or %<throw%> with %<jthrowable%> undefined");
301 jthrow_node
= TREE_TYPE (TREE_TYPE (jthrow_node
));
303 if (! DERIVED_FROM_P (jthrow_node
, TREE_TYPE (decl
)))
305 /* Thrown object must be a Throwable. */
306 error ("type %qT is not derived from %<java::lang::Throwable%>",
315 /* Select the personality routine to be used for exception handling,
316 or issue an error if we need two different ones in the same
318 ??? At present DECL_FUNCTION_PERSONALITY is set via
319 LANG_HOOKS_EH_PERSONALITY. Should it be done here instead? */
321 choose_personality_routine (enum languages lang
)
336 if (lang
!= lang_cplusplus
)
341 if (lang
!= lang_java
)
346 ; /* Proceed to language selection. */
357 terminate_node
= builtin_decl_explicit (BUILT_IN_ABORT
);
358 pragma_java_exceptions
= true;
367 error ("mixing C++ and Java catches in a single translation unit");
371 /* Wrap EXPR in a MUST_NOT_THROW_EXPR expressing that EXPR must
372 not throw any exceptions if COND is true. A condition of
373 NULL_TREE is treated as 'true'. */
376 build_must_not_throw_expr (tree body
, tree cond
)
378 tree type
= body
? TREE_TYPE (body
) : void_type_node
;
380 if (!flag_exceptions
)
383 if (cond
&& !value_dependent_expression_p (cond
))
385 cond
= cxx_constant_value (cond
);
386 if (integer_zerop (cond
))
388 else if (integer_onep (cond
))
392 return build2 (MUST_NOT_THROW_EXPR
, type
, body
, cond
);
396 /* Initialize the catch parameter DECL. */
399 initialize_handler_parm (tree decl
, tree exp
)
404 /* Make sure we mark the catch param as used, otherwise we'll get a
405 warning about an unused ((anonymous)). */
406 TREE_USED (decl
) = 1;
407 DECL_READ_P (decl
) = 1;
409 /* Figure out the type that the initializer is. Pointers are returned
410 adjusted by value from __cxa_begin_catch. Others are returned by
412 init_type
= TREE_TYPE (decl
);
413 if (!POINTER_TYPE_P (init_type
))
414 init_type
= build_reference_type (init_type
);
416 choose_personality_routine (decl_is_java_type (init_type
, 0)
417 ? lang_java
: lang_cplusplus
);
419 /* Since pointers are passed by value, initialize a reference to
420 pointer catch parm with the address of the temporary. */
421 if (TREE_CODE (init_type
) == REFERENCE_TYPE
422 && TYPE_PTR_P (TREE_TYPE (init_type
)))
423 exp
= cp_build_addr_expr (exp
, tf_warning_or_error
);
425 exp
= ocp_convert (init_type
, exp
, CONV_IMPLICIT
|CONV_FORCE_TEMP
, 0,
426 tf_warning_or_error
);
428 init
= convert_from_reference (exp
);
430 /* If the constructor for the catch parm exits via an exception, we
431 must call terminate. See eh23.C. */
432 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl
)))
434 /* Generate the copy constructor call directly so we can wrap it.
435 See also expand_default_init. */
436 init
= ocp_convert (TREE_TYPE (decl
), init
,
437 CONV_IMPLICIT
|CONV_FORCE_TEMP
, 0,
438 tf_warning_or_error
);
439 /* Force cleanups now to avoid nesting problems with the
440 MUST_NOT_THROW_EXPR. */
441 init
= fold_build_cleanup_point_expr (TREE_TYPE (init
), init
);
442 init
= build_must_not_throw_expr (init
, NULL_TREE
);
445 decl
= pushdecl (decl
);
447 start_decl_1 (decl
, true);
448 cp_finish_decl (decl
, init
, /*init_const_expr_p=*/false, NULL_TREE
,
449 LOOKUP_ONLYCONVERTING
|DIRECT_BIND
);
453 /* Routine to see if exception handling is turned on.
454 DO_WARN is nonzero if we want to inform the user that exception
455 handling is turned off.
457 This is used to ensure that -fexceptions has been specified if the
458 compiler tries to use any exception-specific functions. */
463 if (! flag_exceptions
)
465 static int warned
= 0;
468 error ("exception handling disabled, use -fexceptions to enable");
476 /* Call this to start a catch block. DECL is the catch parameter. */
479 expand_start_catch_block (tree decl
)
489 if (!is_admissible_throw_operand_or_catch_parameter (decl
, false))
490 decl
= error_mark_node
;
492 type
= prepare_eh_type (TREE_TYPE (decl
));
493 mark_used (eh_type_info (type
));
498 if (decl
&& decl_is_java_type (type
, 1))
500 /* Java only passes object via pointer and doesn't require
501 adjusting. The java object is immediately before the
502 generic exception header. */
503 exp
= build_exc_ptr ();
504 exp
= build1 (NOP_EXPR
, build_pointer_type (type
), exp
);
505 exp
= fold_build_pointer_plus (exp
,
506 fold_build1_loc (input_location
,
507 NEGATE_EXPR
, sizetype
,
508 TYPE_SIZE_UNIT (TREE_TYPE (exp
))));
509 exp
= cp_build_indirect_ref (exp
, RO_NULL
, tf_warning_or_error
);
510 initialize_handler_parm (decl
, exp
);
514 /* Call __cxa_end_catch at the end of processing the exception. */
515 push_eh_cleanup (type
);
517 init
= do_begin_catch ();
519 /* If there's no decl at all, then all we need to do is make sure
520 to tell the runtime that we've begun handling the exception. */
521 if (decl
== NULL
|| decl
== error_mark_node
|| init
== error_mark_node
)
522 finish_expr_stmt (init
);
524 /* If the C++ object needs constructing, we need to do that before
525 calling __cxa_begin_catch, so that std::uncaught_exception gets
526 the right value during the copy constructor. */
527 else if (flag_use_cxa_get_exception_ptr
528 && TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl
)))
530 exp
= do_get_exception_ptr ();
531 initialize_handler_parm (decl
, exp
);
532 finish_expr_stmt (init
);
535 /* Otherwise the type uses a bitwise copy, and we don't have to worry
536 about the value of std::uncaught_exception and therefore can do the
537 copy with the return value of __cxa_end_catch instead. */
540 tree init_type
= type
;
542 /* Pointers are passed by values, everything else by reference. */
543 if (!TYPE_PTR_P (type
))
544 init_type
= build_pointer_type (type
);
545 if (init_type
!= TREE_TYPE (init
))
546 init
= build1 (NOP_EXPR
, init_type
, init
);
547 exp
= create_temporary_var (init_type
);
548 DECL_REGISTER (exp
) = 1;
549 cp_finish_decl (exp
, init
, /*init_const_expr=*/false,
550 NULL_TREE
, LOOKUP_ONLYCONVERTING
);
551 initialize_handler_parm (decl
, exp
);
558 /* Call this to end a catch block. Its responsible for emitting the
559 code to handle jumping back to the correct place, and for emitting
560 the label to jump to if this catch block didn't match. */
563 expand_end_catch_block (void)
568 /* The exception being handled is rethrown if control reaches the end of
569 a handler of the function-try-block of a constructor or destructor. */
570 if (in_function_try_handler
571 && (DECL_CONSTRUCTOR_P (current_function_decl
)
572 || DECL_DESTRUCTOR_P (current_function_decl
)))
574 tree rethrow
= build_throw (NULL_TREE
);
575 TREE_NO_WARNING (rethrow
) = true;
576 finish_expr_stmt (rethrow
);
581 begin_eh_spec_block (void)
584 location_t spec_location
= DECL_SOURCE_LOCATION (current_function_decl
);
586 /* A noexcept specification (or throw() with -fnothrow-opt) is a
587 MUST_NOT_THROW_EXPR. */
588 if (TYPE_NOEXCEPT_P (TREE_TYPE (current_function_decl
)))
590 r
= build_stmt (spec_location
, MUST_NOT_THROW_EXPR
,
591 NULL_TREE
, NULL_TREE
);
592 TREE_SIDE_EFFECTS (r
) = 1;
595 r
= build_stmt (spec_location
, EH_SPEC_BLOCK
, NULL_TREE
, NULL_TREE
);
597 TREE_OPERAND (r
, 0) = push_stmt_list ();
602 finish_eh_spec_block (tree raw_raises
, tree eh_spec_block
)
606 TREE_OPERAND (eh_spec_block
, 0)
607 = pop_stmt_list (TREE_OPERAND (eh_spec_block
, 0));
609 if (TREE_CODE (eh_spec_block
) == MUST_NOT_THROW_EXPR
)
612 /* Strip cv quals, etc, from the specification types. */
613 for (raises
= NULL_TREE
;
614 raw_raises
&& TREE_VALUE (raw_raises
);
615 raw_raises
= TREE_CHAIN (raw_raises
))
617 tree type
= prepare_eh_type (TREE_VALUE (raw_raises
));
618 tree tinfo
= eh_type_info (type
);
621 raises
= tree_cons (NULL_TREE
, type
, raises
);
624 EH_SPEC_RAISES (eh_spec_block
) = raises
;
627 /* Return a pointer to a buffer for an exception object of type TYPE. */
630 do_allocate_exception (tree type
)
634 fn
= get_identifier ("__cxa_allocate_exception");
635 if (!get_global_value_if_present (fn
, &fn
))
637 /* Declare void *__cxa_allocate_exception(size_t) throw(). */
638 fn
= declare_library_fn (fn
, ptr_type_node
, size_type_node
,
639 ECF_NOTHROW
| ECF_MALLOC
);
643 tree fn2
= get_identifier ("_ITM_cxa_allocate_exception");
644 if (!get_global_value_if_present (fn2
, &fn2
))
645 fn2
= declare_library_fn (fn2
, ptr_type_node
,
647 ECF_NOTHROW
| ECF_MALLOC
| ECF_TM_PURE
);
648 record_tm_replacement (fn
, fn2
);
652 return cp_build_function_call_nary (fn
, tf_warning_or_error
,
653 size_in_bytes (type
), NULL_TREE
);
656 /* Call __cxa_free_exception from a cleanup. This is never invoked
657 directly, but see the comment for stabilize_throw_expr. */
660 do_free_exception (tree ptr
)
664 fn
= get_identifier ("__cxa_free_exception");
665 if (!get_global_value_if_present (fn
, &fn
))
667 /* Declare void __cxa_free_exception (void *) throw(). */
668 fn
= declare_library_fn (fn
, void_type_node
, ptr_type_node
,
669 ECF_NOTHROW
| ECF_LEAF
);
672 return cp_build_function_call_nary (fn
, tf_warning_or_error
, ptr
, NULL_TREE
);
675 /* Wrap all cleanups for TARGET_EXPRs in MUST_NOT_THROW_EXPR.
676 Called from build_throw via walk_tree_without_duplicates. */
679 wrap_cleanups_r (tree
*tp
, int *walk_subtrees
, void * /*data*/)
684 /* Don't walk into types. */
690 if (TREE_CODE (exp
) != TARGET_EXPR
)
693 cleanup
= TARGET_EXPR_CLEANUP (exp
);
696 cleanup
= build2 (MUST_NOT_THROW_EXPR
, void_type_node
, cleanup
,
698 TARGET_EXPR_CLEANUP (exp
) = cleanup
;
701 /* Keep iterating. */
705 /* Build a throw expression. */
708 build_throw (tree exp
)
712 if (exp
== error_mark_node
)
715 if (processing_template_decl
)
718 current_function_returns_abnormally
= 1;
719 exp
= build_min (THROW_EXPR
, void_type_node
, exp
);
720 SET_EXPR_LOCATION (exp
, input_location
);
724 if (exp
== null_node
)
725 warning (0, "throwing NULL, which has integral, not pointer type");
727 if (exp
!= NULL_TREE
)
729 if (!is_admissible_throw_operand_or_catch_parameter (exp
, true))
730 return error_mark_node
;
734 return error_mark_node
;
736 if (exp
&& decl_is_java_type (TREE_TYPE (exp
), 1))
738 tree fn
= get_identifier ("_Jv_Throw");
739 if (!get_global_value_if_present (fn
, &fn
))
741 /* Declare void _Jv_Throw (void *). */
743 tmp
= build_function_type_list (ptr_type_node
,
744 ptr_type_node
, NULL_TREE
);
745 fn
= push_throw_library_fn (fn
, tmp
);
747 else if (really_overloaded_fn (fn
))
749 error ("%qD should never be overloaded", fn
);
750 return error_mark_node
;
752 fn
= OVL_CURRENT (fn
);
753 exp
= cp_build_function_call_nary (fn
, tf_warning_or_error
,
765 /* The CLEANUP_TYPE is the internal type of a destructor. */
768 tmp
= build_function_type_list (void_type_node
,
769 ptr_type_node
, NULL_TREE
);
770 cleanup_type
= build_pointer_type (tmp
);
773 fn
= get_identifier ("__cxa_throw");
774 if (!get_global_value_if_present (fn
, &fn
))
776 /* Declare void __cxa_throw (void*, void*, void (*)(void*)). */
777 /* ??? Second argument is supposed to be "std::type_info*". */
778 tmp
= build_function_type_list (void_type_node
,
779 ptr_type_node
, ptr_type_node
,
780 cleanup_type
, NULL_TREE
);
781 fn
= push_throw_library_fn (fn
, tmp
);
785 tree fn2
= get_identifier ("_ITM_cxa_throw");
786 if (!get_global_value_if_present (fn2
, &fn2
))
787 fn2
= push_throw_library_fn (fn2
, tmp
);
788 apply_tm_attr (fn2
, get_identifier ("transaction_pure"));
789 record_tm_replacement (fn
, fn2
);
795 A throw-expression initializes a temporary object, the type
796 of which is determined by removing any top-level
797 cv-qualifiers from the static type of the operand of throw
798 and adjusting the type from "array of T" or "function return
799 T" to "pointer to T" or "pointer to function returning T"
801 temp_type
= is_bitfield_expr_with_lowered_type (exp
);
803 temp_type
= cv_unqualified (type_decays_to (TREE_TYPE (exp
)));
805 /* OK, this is kind of wacky. The standard says that we call
806 terminate when the exception handling mechanism, after
807 completing evaluation of the expression to be thrown but
808 before the exception is caught (_except.throw_), calls a
809 user function that exits via an uncaught exception.
811 So we have to protect the actual initialization of the
812 exception object with terminate(), but evaluate the
813 expression first. Since there could be temps in the
814 expression, we need to handle that, too. We also expand
815 the call to __cxa_allocate_exception first (which doesn't
816 matter, since it can't throw). */
818 /* Allocate the space for the exception. */
819 allocate_expr
= do_allocate_exception (temp_type
);
820 allocate_expr
= get_target_expr (allocate_expr
);
821 ptr
= TARGET_EXPR_SLOT (allocate_expr
);
822 TARGET_EXPR_CLEANUP (allocate_expr
) = do_free_exception (ptr
);
823 CLEANUP_EH_ONLY (allocate_expr
) = 1;
825 object
= build_nop (build_pointer_type (temp_type
), ptr
);
826 object
= cp_build_indirect_ref (object
, RO_NULL
, tf_warning_or_error
);
828 /* And initialize the exception object. */
829 if (CLASS_TYPE_P (temp_type
))
831 int flags
= LOOKUP_NORMAL
| LOOKUP_ONLYCONVERTING
;
832 vec
<tree
, va_gc
> *exp_vec
;
834 /* Under C++0x [12.8/16 class.copy], a thrown lvalue is sometimes
835 treated as an rvalue for the purposes of overload resolution
836 to favor move constructors over copy constructors. */
837 if (/* Must be a local, automatic variable. */
839 && DECL_CONTEXT (exp
) == current_function_decl
840 && ! TREE_STATIC (exp
)
841 /* The variable must not have the `volatile' qualifier. */
842 && !(cp_type_quals (TREE_TYPE (exp
)) & TYPE_QUAL_VOLATILE
))
843 flags
= flags
| LOOKUP_PREFER_RVALUE
;
845 /* Call the copy constructor. */
846 exp_vec
= make_tree_vector_single (exp
);
847 exp
= (build_special_member_call
848 (object
, complete_ctor_identifier
, &exp_vec
,
849 TREE_TYPE (object
), flags
, tf_warning_or_error
));
850 release_tree_vector (exp_vec
);
851 if (exp
== error_mark_node
)
853 error (" in thrown expression");
854 return error_mark_node
;
859 tmp
= decay_conversion (exp
, tf_warning_or_error
);
860 if (tmp
== error_mark_node
)
861 return error_mark_node
;
862 exp
= build2 (INIT_EXPR
, temp_type
, object
, tmp
);
865 /* Mark any cleanups from the initialization as MUST_NOT_THROW, since
866 they are run after the exception object is initialized. */
867 cp_walk_tree_without_duplicates (&exp
, wrap_cleanups_r
, 0);
869 /* Prepend the allocation. */
870 exp
= build2 (COMPOUND_EXPR
, TREE_TYPE (exp
), allocate_expr
, exp
);
872 /* Force all the cleanups to be evaluated here so that we don't have
873 to do them during unwinding. */
874 exp
= build1 (CLEANUP_POINT_EXPR
, void_type_node
, exp
);
876 throw_type
= build_eh_type_type (prepare_eh_type (TREE_TYPE (object
)));
879 if (type_build_dtor_call (TREE_TYPE (object
)))
881 tree fn
= lookup_fnfields (TYPE_BINFO (TREE_TYPE (object
)),
882 complete_dtor_identifier
, 0);
883 fn
= BASELINK_FUNCTIONS (fn
);
885 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (object
)))
887 cxx_mark_addressable (fn
);
888 /* Pretend it's a normal function. */
889 cleanup
= build1 (ADDR_EXPR
, cleanup_type
, fn
);
892 if (cleanup
== NULL_TREE
)
893 cleanup
= build_int_cst (cleanup_type
, 0);
895 /* ??? Indicate that this function call throws throw_type. */
896 tmp
= cp_build_function_call_nary (fn
, tf_warning_or_error
,
897 ptr
, throw_type
, cleanup
, NULL_TREE
);
899 /* Tack on the initialization stuff. */
900 exp
= build2 (COMPOUND_EXPR
, TREE_TYPE (tmp
), exp
, tmp
);
904 /* Rethrow current exception. */
906 tree fn
= get_identifier ("__cxa_rethrow");
907 if (!get_global_value_if_present (fn
, &fn
))
909 /* Declare void __cxa_rethrow (void). */
910 fn
= push_throw_library_fn
911 (fn
, build_function_type_list (void_type_node
, NULL_TREE
));
915 apply_tm_attr (fn
, get_identifier ("transaction_pure"));
917 /* ??? Indicate that this function call allows exceptions of the type
918 of the enclosing catch block (if known). */
919 exp
= cp_build_function_call_vec (fn
, NULL
, tf_warning_or_error
);
922 exp
= build1 (THROW_EXPR
, void_type_node
, exp
);
923 SET_EXPR_LOCATION (exp
, input_location
);
928 /* Make sure TYPE is complete, pointer to complete, reference to
929 complete, or pointer to cv void. Issue diagnostic on failure.
930 Return the zero on failure and nonzero on success. FROM can be
931 the expr or decl from whence TYPE came, if available. */
934 complete_ptr_ref_or_void_ptr_p (tree type
, tree from
)
938 /* Check complete. */
939 type
= complete_type_or_else (type
, from
);
943 /* Or a pointer or ref to one, or cv void *. */
944 is_ptr
= TYPE_PTR_P (type
);
945 if (is_ptr
|| TREE_CODE (type
) == REFERENCE_TYPE
)
947 tree core
= TREE_TYPE (type
);
949 if (is_ptr
&& VOID_TYPE_P (core
))
951 else if (!complete_type_or_else (core
, from
))
957 /* If IS_THROW is true return truth-value if T is an expression admissible
958 in throw-expression, i.e. if it is not of incomplete type or a pointer/
959 reference to such a type or of an abstract class type.
960 If IS_THROW is false, likewise for a catch parameter, same requirements
961 for its type plus rvalue reference type is also not admissible. */
964 is_admissible_throw_operand_or_catch_parameter (tree t
, bool is_throw
)
966 tree expr
= is_throw
? t
: NULL_TREE
;
967 tree type
= TREE_TYPE (t
);
969 /* C++11 [except.handle] The exception-declaration shall not denote
970 an incomplete type, an abstract class type, or an rvalue reference
973 /* 15.1/4 [...] The type of the throw-expression shall not be an
974 incomplete type, or a pointer or a reference to an incomplete
975 type, other than void*, const void*, volatile void*, or
976 const volatile void*. Except for these restriction and the
977 restrictions on type matching mentioned in 15.3, the operand
978 of throw is treated exactly as a function argument in a call
979 (5.2.2) or the operand of a return statement. */
980 if (!complete_ptr_ref_or_void_ptr_p (type
, expr
))
983 /* 10.4/3 An abstract class shall not be used as a parameter type,
984 as a function return type or as type of an explicit
986 else if (abstract_virtuals_error (is_throw
? ACU_THROW
: ACU_CATCH
, type
))
989 && TREE_CODE (type
) == REFERENCE_TYPE
990 && TYPE_REF_IS_RVALUE (type
))
992 error ("cannot declare catch parameter to be of rvalue "
993 "reference type %qT", type
);
996 else if (variably_modified_type_p (type
, NULL_TREE
))
999 error ("cannot throw expression of type %qT because it involves "
1000 "types of variable size", type
);
1002 error ("cannot catch type %qT because it involves types of "
1003 "variable size", type
);
1010 /* Returns nonzero if FN is a declaration of a standard C library
1011 function which is known not to throw.
1013 [lib.res.on.exception.handling]: None of the functions from the
1014 Standard C library shall report an error by throwing an
1015 exception, unless it calls a program-supplied function that
1016 throws an exception. */
1021 nothrow_libfn_p (const_tree fn
)
1025 if (TREE_PUBLIC (fn
)
1026 && DECL_EXTERNAL (fn
)
1027 && DECL_NAMESPACE_SCOPE_P (fn
)
1028 && DECL_EXTERN_C_P (fn
))
1031 /* Can't be a C library function. */
1034 /* Being a C library function, DECL_ASSEMBLER_NAME == DECL_NAME
1035 unless the system headers are playing rename tricks, and if
1036 they are, we don't want to be confused by them. */
1037 id
= DECL_NAME (fn
);
1038 return !!libc_name_p (IDENTIFIER_POINTER (id
), IDENTIFIER_LENGTH (id
));
1041 /* Returns nonzero if an exception of type FROM will be caught by a
1042 handler for type TO, as per [except.handle]. */
1045 can_convert_eh (tree to
, tree from
)
1047 to
= non_reference (to
);
1048 from
= non_reference (from
);
1050 if (TYPE_PTR_P (to
) && TYPE_PTR_P (from
))
1052 to
= TREE_TYPE (to
);
1053 from
= TREE_TYPE (from
);
1055 if (! at_least_as_qualified_p (to
, from
))
1058 if (VOID_TYPE_P (to
))
1061 /* Else fall through. */
1064 if (CLASS_TYPE_P (to
) && CLASS_TYPE_P (from
)
1065 && publicly_uniquely_derived_p (to
, from
))
1071 /* Check whether any of the handlers in I are shadowed by another handler
1072 accepting TYPE. Note that the shadowing may not be complete; even if
1073 an exception of type B would be caught by a handler for A, there could
1074 be a derived class C for which A is an ambiguous base but B is not, so
1075 the handler for B would catch an exception of type C. */
1078 check_handlers_1 (tree master
, tree_stmt_iterator i
)
1080 tree type
= TREE_TYPE (master
);
1082 for (; !tsi_end_p (i
); tsi_next (&i
))
1084 tree handler
= tsi_stmt (i
);
1085 if (TREE_TYPE (handler
) && can_convert_eh (type
, TREE_TYPE (handler
)))
1087 warning_at (EXPR_LOCATION (handler
), 0,
1088 "exception of type %qT will be caught",
1089 TREE_TYPE (handler
));
1090 warning_at (EXPR_LOCATION (master
), 0,
1091 " by earlier handler for %qT", type
);
1097 /* Given a STATEMENT_LIST of HANDLERs, make sure that they're OK. */
1100 check_handlers (tree handlers
)
1102 tree_stmt_iterator i
;
1104 /* If we don't have a STATEMENT_LIST, then we've just got one
1105 handler, and thus nothing to warn about. */
1106 if (TREE_CODE (handlers
) != STATEMENT_LIST
)
1109 i
= tsi_start (handlers
);
1113 tree handler
= tsi_stmt (i
);
1116 /* No more handlers; nothing to shadow. */
1119 if (TREE_TYPE (handler
) == NULL_TREE
)
1120 permerror (EXPR_LOCATION (handler
), "%<...%>"
1121 " handler must be the last handler for its try block");
1123 check_handlers_1 (handler
, i
);
1127 /* walk_tree helper for finish_noexcept_expr. Returns non-null if the
1128 expression *TP causes the noexcept operator to evaluate to false.
1130 5.3.7 [expr.noexcept]: The result of the noexcept operator is false if
1131 in a potentially-evaluated context the expression would contain
1132 * a potentially evaluated call to a function, member function,
1133 function pointer, or member function pointer that does not have a
1134 non-throwing exception-specification (15.4),
1135 * a potentially evaluated throw-expression (15.1),
1136 * a potentially evaluated dynamic_cast expression dynamic_cast<T>(v),
1137 where T is a reference type, that requires a run-time check (5.2.7), or
1138 * a potentially evaluated typeid expression (5.2.8) applied to a glvalue
1139 expression whose type is a polymorphic class type (10.3). */
1142 check_noexcept_r (tree
*tp
, int * /*walk_subtrees*/, void * /*data*/)
1145 enum tree_code code
= TREE_CODE (t
);
1146 if ((code
== CALL_EXPR
&& CALL_EXPR_FN (t
))
1147 || code
== AGGR_INIT_EXPR
)
1149 /* We can only use the exception specification of the called function
1150 for determining the value of a noexcept expression; we can't use
1151 TREE_NOTHROW, as it might have a different value in another
1152 translation unit, creating ODR problems.
1154 We could use TREE_NOTHROW (t) for !TREE_PUBLIC fns, though... */
1155 tree fn
= (code
== AGGR_INIT_EXPR
1156 ? AGGR_INIT_EXPR_FN (t
) : CALL_EXPR_FN (t
));
1157 tree type
= TREE_TYPE (fn
);
1158 gcc_assert (POINTER_TYPE_P (type
));
1159 type
= TREE_TYPE (type
);
1162 if (TREE_CODE (fn
) == ADDR_EXPR
)
1163 fn
= TREE_OPERAND (fn
, 0);
1164 if (TREE_CODE (fn
) == FUNCTION_DECL
)
1166 /* We do use TREE_NOTHROW for ABI internals like __dynamic_cast,
1167 and for C library functions known not to throw. */
1168 if (DECL_EXTERN_C_P (fn
)
1169 && (DECL_ARTIFICIAL (fn
)
1170 || nothrow_libfn_p (fn
)))
1171 return TREE_NOTHROW (fn
) ? NULL_TREE
: fn
;
1172 /* A call to a constexpr function is noexcept if the call
1173 is a constant expression. */
1174 if (DECL_DECLARED_CONSTEXPR_P (fn
)
1175 && is_sub_constant_expr (t
))
1178 if (!TYPE_NOTHROW_P (type
))
1185 /* If a function that causes a noexcept-expression to be false isn't
1186 defined yet, remember it and check it for TREE_NOTHROW again at EOF. */
1188 struct GTY(()) pending_noexcept
{
1192 static GTY(()) vec
<pending_noexcept
, va_gc
> *pending_noexcept_checks
;
1194 /* FN is a FUNCTION_DECL that caused a noexcept-expr to be false. Warn if
1198 maybe_noexcept_warning (tree fn
)
1200 if (TREE_NOTHROW (fn
))
1202 warning (OPT_Wnoexcept
, "noexcept-expression evaluates to %<false%> "
1203 "because of a call to %qD", fn
);
1204 warning_at (DECL_SOURCE_LOCATION (fn
), OPT_Wnoexcept
,
1205 "but %qD does not throw; perhaps "
1206 "it should be declared %<noexcept%>", fn
);
1210 /* Check any functions that weren't defined earlier when they caused a
1211 noexcept expression to evaluate to false. */
1214 perform_deferred_noexcept_checks (void)
1217 pending_noexcept
*p
;
1218 location_t saved_loc
= input_location
;
1219 FOR_EACH_VEC_SAFE_ELT (pending_noexcept_checks
, i
, p
)
1221 input_location
= p
->loc
;
1222 maybe_noexcept_warning (p
->fn
);
1224 input_location
= saved_loc
;
1227 /* Evaluate noexcept ( EXPR ). */
1230 finish_noexcept_expr (tree expr
, tsubst_flags_t complain
)
1232 if (expr
== error_mark_node
)
1233 return error_mark_node
;
1235 if (processing_template_decl
)
1236 return build_min (NOEXCEPT_EXPR
, boolean_type_node
, expr
);
1238 return (expr_noexcept_p (expr
, complain
)
1239 ? boolean_true_node
: boolean_false_node
);
1242 /* Returns whether EXPR is noexcept, possibly warning if allowed by
1246 expr_noexcept_p (tree expr
, tsubst_flags_t complain
)
1250 if (expr
== error_mark_node
)
1253 fn
= cp_walk_tree_without_duplicates (&expr
, check_noexcept_r
, 0);
1256 if ((complain
& tf_warning
) && warn_noexcept
1257 && TREE_CODE (fn
) == FUNCTION_DECL
)
1259 if (!DECL_INITIAL (fn
))
1261 /* Not defined yet; check again at EOF. */
1262 pending_noexcept p
= {fn
, input_location
};
1263 vec_safe_push (pending_noexcept_checks
, p
);
1266 maybe_noexcept_warning (fn
);
1274 /* Return true iff SPEC is throw() or noexcept(true). */
1277 nothrow_spec_p (const_tree spec
)
1279 gcc_assert (!DEFERRED_NOEXCEPT_SPEC_P (spec
));
1280 if (spec
== NULL_TREE
1281 || TREE_VALUE (spec
) != NULL_TREE
1282 || spec
== noexcept_false_spec
)
1284 if (TREE_PURPOSE (spec
) == NULL_TREE
1285 || spec
== noexcept_true_spec
)
1287 gcc_assert (processing_template_decl
1288 || TREE_PURPOSE (spec
) == error_mark_node
);
1292 /* For FUNCTION_TYPE or METHOD_TYPE, true if NODE is noexcept. This is the
1293 case for things declared noexcept(true) and, with -fnothrow-opt, for
1294 throw() functions. */
1297 type_noexcept_p (const_tree type
)
1299 tree spec
= TYPE_RAISES_EXCEPTIONS (type
);
1300 gcc_assert (!DEFERRED_NOEXCEPT_SPEC_P (spec
));
1301 if (flag_nothrow_opt
)
1302 return nothrow_spec_p (spec
);
1304 return spec
== noexcept_true_spec
;
1307 /* For FUNCTION_TYPE or METHOD_TYPE, true if NODE can throw any type,
1308 i.e. no exception-specification or noexcept(false). */
1311 type_throw_all_p (const_tree type
)
1313 tree spec
= TYPE_RAISES_EXCEPTIONS (type
);
1314 gcc_assert (!DEFERRED_NOEXCEPT_SPEC_P (spec
));
1315 return spec
== NULL_TREE
|| spec
== noexcept_false_spec
;
1318 /* Create a representation of the noexcept-specification with
1319 constant-expression of EXPR. COMPLAIN is as for tsubst. */
1322 build_noexcept_spec (tree expr
, int complain
)
1324 /* This isn't part of the signature, so don't bother trying to evaluate
1325 it until instantiation. */
1326 if (!processing_template_decl
&& TREE_CODE (expr
) != DEFERRED_NOEXCEPT
)
1328 expr
= perform_implicit_conversion_flags (boolean_type_node
, expr
,
1331 expr
= cxx_constant_value (expr
);
1333 if (TREE_CODE (expr
) == INTEGER_CST
)
1335 if (operand_equal_p (expr
, boolean_true_node
, 0))
1336 return noexcept_true_spec
;
1339 gcc_checking_assert (operand_equal_p (expr
, boolean_false_node
, 0));
1340 return noexcept_false_spec
;
1343 else if (expr
== error_mark_node
)
1344 return error_mark_node
;
1347 gcc_assert (processing_template_decl
1348 || TREE_CODE (expr
) == DEFERRED_NOEXCEPT
);
1349 return build_tree_list (expr
, NULL_TREE
);
1353 /* Returns a noexcept-specifier to be evaluated later, for an
1354 implicitly-declared or explicitly defaulted special member function. */
1357 unevaluated_noexcept_spec (void)
1360 if (spec
== NULL_TREE
)
1361 spec
= build_noexcept_spec (make_node (DEFERRED_NOEXCEPT
), tf_none
);
1365 /* Returns a TRY_CATCH_EXPR that will put TRY_LIST and CATCH_LIST in the
1366 TRY and CATCH locations. CATCH_LIST must be a STATEMENT_LIST */
1369 create_try_catch_expr (tree try_expr
, tree catch_list
)
1371 location_t loc
= EXPR_LOCATION (try_expr
);
1373 append_to_statement_list (do_begin_catch (), &catch_list
);
1374 append_to_statement_list (build_throw (NULL_TREE
), &catch_list
);
1375 tree catch_tf_expr
= build_stmt (loc
, TRY_FINALLY_EXPR
, catch_list
,
1376 do_end_catch (NULL_TREE
));
1377 catch_list
= build2 (CATCH_EXPR
, void_type_node
, NULL_TREE
,
1379 tree try_catch_expr
= build_stmt (loc
, TRY_CATCH_EXPR
, try_expr
, catch_list
);
1380 return try_catch_expr
;
1383 #include "gt-cp-except.h"