1 /* Handle exceptional things in C++.
2 Copyright (C) 1989-2018 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"
28 #include "stringpool.h"
29 #include "trans-mem.h"
31 #include "tree-iterator.h"
33 static void push_eh_cleanup (tree
);
34 static tree
prepare_eh_type (tree
);
35 static tree
do_begin_catch (void);
36 static int dtor_nothrow (tree
);
37 static tree
do_end_catch (tree
);
38 static void initialize_handler_parm (tree
, tree
);
39 static tree
do_allocate_exception (tree
);
40 static tree
wrap_cleanups_r (tree
*, int *, void *);
41 static int complete_ptr_ref_or_void_ptr_p (tree
, tree
);
42 static bool is_admissible_throw_operand_or_catch_parameter (tree
, bool);
43 static int can_convert_eh (tree
, tree
);
45 /* Sets up all the global eh stuff that needs to be initialized at the
46 start of compilation. */
49 init_exception_processing (void)
53 /* void std::terminate (); */
54 push_namespace (std_identifier
);
55 tmp
= build_function_type_list (void_type_node
, NULL_TREE
);
56 terminate_fn
= build_cp_library_fn_ptr ("terminate", tmp
,
57 ECF_NOTHROW
| ECF_NORETURN
59 gcc_checking_assert (TREE_THIS_VOLATILE (terminate_fn
)
60 && TREE_NOTHROW (terminate_fn
));
63 /* void __cxa_call_unexpected(void *); */
64 tmp
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
66 = push_throw_library_fn (get_identifier ("__cxa_call_unexpected"), tmp
);
69 /* Returns an expression to be executed if an unhandled exception is
70 propagated out of a cleanup region. */
73 cp_protect_cleanup_actions (void)
77 When the destruction of an object during stack unwinding exits
78 using an exception ... void terminate(); is called. */
83 prepare_eh_type (tree type
)
85 if (type
== NULL_TREE
)
87 if (type
== error_mark_node
)
88 return error_mark_node
;
90 /* peel back references, so they match. */
91 type
= non_reference (type
);
93 /* Peel off cv qualifiers. */
94 type
= TYPE_MAIN_VARIANT (type
);
96 /* Functions and arrays decay to pointers. */
97 type
= type_decays_to (type
);
102 /* Return the type info for TYPE as used by EH machinery. */
104 eh_type_info (tree type
)
106 if (type
== NULL_TREE
|| type
== error_mark_node
)
109 return get_tinfo_decl (type
);
112 /* Build the address of a typeinfo decl for use in the runtime
113 matching field of the exception model. */
116 build_eh_type_type (tree type
)
118 tree exp
= eh_type_info (type
);
125 return convert (ptr_type_node
, build_address (exp
));
131 return build_call_n (builtin_decl_explicit (BUILT_IN_EH_POINTER
),
132 1, integer_zero_node
);
135 /* Find or declare a function NAME, returning RTYPE, taking a single
136 parameter PTYPE, with an empty exception specification. ECF are the
137 library fn flags. If TM_ECF is non-zero, also find or create a
138 transaction variant and record it as a replacement, when flag_tm is
141 Note that the C++ ABI document does not have a throw-specifier on
142 the routines declared below via this function. The declarations
143 are consistent with the actual implementations in libsupc++. */
146 declare_library_fn (const char *name
, tree rtype
, tree ptype
,
149 tree ident
= get_identifier (name
);
150 tree res
= get_global_binding (ident
);
153 tree type
= build_function_type_list (rtype
, ptype
, NULL_TREE
);
154 tree except
= ecf
& ECF_NOTHROW
? empty_except_spec
: NULL_TREE
;
155 res
= push_library_fn (ident
, type
, except
, ecf
);
156 if (tm_ecf
&& flag_tm
)
158 char *tm_name
= concat ("_ITM_", name
+ 2, NULL_TREE
);
159 tree tm_ident
= get_identifier (tm_name
);
161 tree tm_fn
= get_global_binding (tm_ident
);
163 tm_fn
= push_library_fn (tm_ident
, type
, except
, ecf
| tm_ecf
);
164 record_tm_replacement (res
, tm_fn
);
170 /* Build up a call to __cxa_get_exception_ptr so that we can build a
171 copy constructor for the thrown object. */
174 do_get_exception_ptr (void)
176 if (!get_exception_ptr_fn
)
177 /* Declare void* __cxa_get_exception_ptr (void *) throw(). */
179 = declare_library_fn ("__cxa_get_exception_ptr",
180 ptr_type_node
, ptr_type_node
,
181 ECF_NOTHROW
| ECF_PURE
| ECF_LEAF
| ECF_TM_PURE
,
184 return cp_build_function_call_nary (get_exception_ptr_fn
,
186 build_exc_ptr (), NULL_TREE
);
189 /* Build up a call to __cxa_begin_catch, to tell the runtime that the
190 exception has been handled. */
193 do_begin_catch (void)
196 /* Declare void* __cxa_begin_catch (void *) throw(). */
198 = declare_library_fn ("__cxa_begin_catch",
199 ptr_type_node
, ptr_type_node
, ECF_NOTHROW
,
202 return cp_build_function_call_nary (begin_catch_fn
, tf_warning_or_error
,
203 build_exc_ptr (), NULL_TREE
);
206 /* Returns nonzero if cleaning up an exception of type TYPE (which can be
207 NULL_TREE for a ... handler) will not throw an exception. */
210 dtor_nothrow (tree type
)
212 if (type
== NULL_TREE
|| type
== error_mark_node
)
215 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type
))
218 if (CLASSTYPE_LAZY_DESTRUCTOR (type
))
219 lazily_declare_fn (sfk_destructor
, type
);
221 return TREE_NOTHROW (CLASSTYPE_DESTRUCTOR (type
));
224 /* Build up a call to __cxa_end_catch, to destroy the exception object
225 for the current catch block if no others are currently using it. */
228 do_end_catch (tree type
)
231 /* Declare void __cxa_end_catch ().
232 This can throw if the destructor for the exception throws. */
234 = declare_library_fn ("__cxa_end_catch", void_type_node
,
235 NULL_TREE
, 0, ECF_TM_PURE
);
237 tree cleanup
= cp_build_function_call_vec (end_catch_fn
,
238 NULL
, tf_warning_or_error
);
239 TREE_NOTHROW (cleanup
) = dtor_nothrow (type
);
244 /* This routine creates the cleanup for the current exception. */
247 push_eh_cleanup (tree type
)
249 finish_decl_cleanup (NULL_TREE
, do_end_catch (type
));
252 /* Wrap EXPR in a MUST_NOT_THROW_EXPR expressing that EXPR must
253 not throw any exceptions if COND is true. A condition of
254 NULL_TREE is treated as 'true'. */
257 build_must_not_throw_expr (tree body
, tree cond
)
259 tree type
= body
? TREE_TYPE (body
) : void_type_node
;
261 if (!flag_exceptions
)
265 /* OK, unconditional. */;
268 tree conv
= NULL_TREE
;
269 if (!type_dependent_expression_p (cond
))
270 conv
= perform_implicit_conversion_flags (boolean_type_node
, cond
,
273 if (tree inst
= instantiate_non_dependent_or_null (conv
))
274 cond
= cxx_constant_value (inst
);
276 require_constant_expression (cond
);
277 if (integer_zerop (cond
))
279 else if (integer_onep (cond
))
283 return build2 (MUST_NOT_THROW_EXPR
, type
, body
, cond
);
287 /* Initialize the catch parameter DECL. */
290 initialize_handler_parm (tree decl
, tree exp
)
295 /* Make sure we mark the catch param as used, otherwise we'll get a
296 warning about an unused ((anonymous)). */
297 TREE_USED (decl
) = 1;
298 DECL_READ_P (decl
) = 1;
300 /* Figure out the type that the initializer is. Pointers are returned
301 adjusted by value from __cxa_begin_catch. Others are returned by
303 init_type
= TREE_TYPE (decl
);
304 if (!INDIRECT_TYPE_P (init_type
))
305 init_type
= build_reference_type (init_type
);
307 /* Since pointers are passed by value, initialize a reference to
308 pointer catch parm with the address of the temporary. */
309 if (TYPE_REF_P (init_type
)
310 && TYPE_PTR_P (TREE_TYPE (init_type
)))
311 exp
= cp_build_addr_expr (exp
, tf_warning_or_error
);
313 exp
= ocp_convert (init_type
, exp
, CONV_IMPLICIT
|CONV_FORCE_TEMP
, 0,
314 tf_warning_or_error
);
316 init
= convert_from_reference (exp
);
318 /* If the constructor for the catch parm exits via an exception, we
319 must call terminate. See eh23.C. */
320 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl
)))
322 /* Generate the copy constructor call directly so we can wrap it.
323 See also expand_default_init. */
324 init
= ocp_convert (TREE_TYPE (decl
), init
,
325 CONV_IMPLICIT
|CONV_FORCE_TEMP
, 0,
326 tf_warning_or_error
);
327 /* Force cleanups now to avoid nesting problems with the
328 MUST_NOT_THROW_EXPR. */
329 init
= fold_build_cleanup_point_expr (TREE_TYPE (init
), init
);
330 init
= build_must_not_throw_expr (init
, NULL_TREE
);
333 decl
= pushdecl (decl
);
335 start_decl_1 (decl
, true);
336 cp_finish_decl (decl
, init
, /*init_const_expr_p=*/false, NULL_TREE
,
337 LOOKUP_ONLYCONVERTING
|DIRECT_BIND
);
341 /* Routine to see if exception handling is turned on.
342 DO_WARN is nonzero if we want to inform the user that exception
343 handling is turned off.
345 This is used to ensure that -fexceptions has been specified if the
346 compiler tries to use any exception-specific functions. */
351 if (! flag_exceptions
)
353 static int warned
= 0;
356 error ("exception handling disabled, use -fexceptions to enable");
364 /* Call this to start a catch block. DECL is the catch parameter. */
367 expand_start_catch_block (tree decl
)
377 if (!is_admissible_throw_operand_or_catch_parameter (decl
, false))
378 decl
= error_mark_node
;
380 type
= prepare_eh_type (TREE_TYPE (decl
));
381 mark_used (eh_type_info (type
));
386 /* Call __cxa_end_catch at the end of processing the exception. */
387 push_eh_cleanup (type
);
389 init
= do_begin_catch ();
391 /* If there's no decl at all, then all we need to do is make sure
392 to tell the runtime that we've begun handling the exception. */
393 if (decl
== NULL
|| decl
== error_mark_node
|| init
== error_mark_node
)
394 finish_expr_stmt (init
);
396 /* If the C++ object needs constructing, we need to do that before
397 calling __cxa_begin_catch, so that std::uncaught_exception gets
398 the right value during the copy constructor. */
399 else if (flag_use_cxa_get_exception_ptr
400 && TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl
)))
402 exp
= do_get_exception_ptr ();
403 initialize_handler_parm (decl
, exp
);
404 finish_expr_stmt (init
);
407 /* Otherwise the type uses a bitwise copy, and we don't have to worry
408 about the value of std::uncaught_exception and therefore can do the
409 copy with the return value of __cxa_end_catch instead. */
412 tree init_type
= type
;
414 /* Pointers are passed by values, everything else by reference. */
415 if (!TYPE_PTR_P (type
))
416 init_type
= build_pointer_type (type
);
417 if (init_type
!= TREE_TYPE (init
))
418 init
= build1 (NOP_EXPR
, init_type
, init
);
419 exp
= create_temporary_var (init_type
);
420 cp_finish_decl (exp
, init
, /*init_const_expr=*/false,
421 NULL_TREE
, LOOKUP_ONLYCONVERTING
);
422 DECL_REGISTER (exp
) = 1;
423 initialize_handler_parm (decl
, exp
);
430 /* Call this to end a catch block. Its responsible for emitting the
431 code to handle jumping back to the correct place, and for emitting
432 the label to jump to if this catch block didn't match. */
435 expand_end_catch_block (void)
440 /* The exception being handled is rethrown if control reaches the end of
441 a handler of the function-try-block of a constructor or destructor. */
442 if (in_function_try_handler
443 && (DECL_CONSTRUCTOR_P (current_function_decl
)
444 || DECL_DESTRUCTOR_P (current_function_decl
)))
446 tree rethrow
= build_throw (NULL_TREE
);
447 TREE_NO_WARNING (rethrow
) = true;
448 finish_expr_stmt (rethrow
);
453 begin_eh_spec_block (void)
456 location_t spec_location
= DECL_SOURCE_LOCATION (current_function_decl
);
458 /* A noexcept specification (or throw() with -fnothrow-opt) is a
459 MUST_NOT_THROW_EXPR. */
460 if (TYPE_NOEXCEPT_P (TREE_TYPE (current_function_decl
)))
462 r
= build_stmt (spec_location
, MUST_NOT_THROW_EXPR
,
463 NULL_TREE
, NULL_TREE
);
464 TREE_SIDE_EFFECTS (r
) = 1;
467 r
= build_stmt (spec_location
, EH_SPEC_BLOCK
, NULL_TREE
, NULL_TREE
);
469 TREE_OPERAND (r
, 0) = push_stmt_list ();
474 finish_eh_spec_block (tree raw_raises
, tree eh_spec_block
)
478 TREE_OPERAND (eh_spec_block
, 0)
479 = pop_stmt_list (TREE_OPERAND (eh_spec_block
, 0));
481 if (TREE_CODE (eh_spec_block
) == MUST_NOT_THROW_EXPR
)
484 /* Strip cv quals, etc, from the specification types. */
485 for (raises
= NULL_TREE
;
486 raw_raises
&& TREE_VALUE (raw_raises
);
487 raw_raises
= TREE_CHAIN (raw_raises
))
489 tree type
= prepare_eh_type (TREE_VALUE (raw_raises
));
490 tree tinfo
= eh_type_info (type
);
493 raises
= tree_cons (NULL_TREE
, type
, raises
);
496 EH_SPEC_RAISES (eh_spec_block
) = raises
;
499 /* Return a pointer to a buffer for an exception object of type TYPE. */
502 do_allocate_exception (tree type
)
504 if (!allocate_exception_fn
)
505 /* Declare void *__cxa_allocate_exception(size_t) throw(). */
506 allocate_exception_fn
507 = declare_library_fn ("__cxa_allocate_exception",
508 ptr_type_node
, size_type_node
,
509 ECF_NOTHROW
| ECF_MALLOC
, ECF_TM_PURE
);
511 return cp_build_function_call_nary (allocate_exception_fn
,
513 size_in_bytes (type
), NULL_TREE
);
516 /* Call __cxa_free_exception from a cleanup. This is never invoked
517 directly, but see the comment for stabilize_throw_expr. */
520 do_free_exception (tree ptr
)
522 if (!free_exception_fn
)
523 /* Declare void __cxa_free_exception (void *) throw(). */
525 = declare_library_fn ("__cxa_free_exception",
526 void_type_node
, ptr_type_node
,
527 ECF_NOTHROW
| ECF_LEAF
, ECF_TM_PURE
);
529 return cp_build_function_call_nary (free_exception_fn
,
530 tf_warning_or_error
, ptr
, NULL_TREE
);
533 /* Wrap all cleanups for TARGET_EXPRs in MUST_NOT_THROW_EXPR.
534 Called from build_throw via walk_tree_without_duplicates. */
537 wrap_cleanups_r (tree
*tp
, int *walk_subtrees
, void * /*data*/)
542 /* Don't walk into types. */
548 if (TREE_CODE (exp
) != TARGET_EXPR
)
551 cleanup
= TARGET_EXPR_CLEANUP (exp
);
554 cleanup
= build2 (MUST_NOT_THROW_EXPR
, void_type_node
, cleanup
,
556 TARGET_EXPR_CLEANUP (exp
) = cleanup
;
559 /* Keep iterating. */
563 /* Build a throw expression. */
566 build_throw (tree exp
)
568 if (exp
== error_mark_node
)
571 if (processing_template_decl
)
574 current_function_returns_abnormally
= 1;
575 exp
= build_min (THROW_EXPR
, void_type_node
, exp
);
576 SET_EXPR_LOCATION (exp
, input_location
);
580 if (exp
&& null_node_p (exp
))
581 warning (0, "throwing NULL, which has integral, not pointer type");
583 if (exp
!= NULL_TREE
)
585 if (!is_admissible_throw_operand_or_catch_parameter (exp
, true))
586 return error_mark_node
;
590 return error_mark_node
;
601 /* The CLEANUP_TYPE is the internal type of a destructor. */
604 tmp
= build_function_type_list (void_type_node
,
605 ptr_type_node
, NULL_TREE
);
606 cleanup_type
= build_pointer_type (tmp
);
611 tree name
= get_identifier ("__cxa_throw");
612 throw_fn
= get_global_binding (name
);
615 /* Declare void __cxa_throw (void*, void*, void (*)(void*)). */
616 /* ??? Second argument is supposed to be "std::type_info*". */
617 tmp
= build_function_type_list (void_type_node
,
618 ptr_type_node
, ptr_type_node
,
619 cleanup_type
, NULL_TREE
);
620 throw_fn
= push_throw_library_fn (name
, tmp
);
624 tree itm_name
= get_identifier ("_ITM_cxa_throw");
625 tree itm_fn
= get_global_binding (itm_name
);
627 itm_fn
= push_throw_library_fn (itm_name
, tmp
);
628 apply_tm_attr (itm_fn
, get_identifier ("transaction_pure"));
629 record_tm_replacement (throw_fn
, itm_fn
);
636 A throw-expression initializes a temporary object, the type
637 of which is determined by removing any top-level
638 cv-qualifiers from the static type of the operand of throw
639 and adjusting the type from "array of T" or "function return
640 T" to "pointer to T" or "pointer to function returning T"
642 temp_type
= is_bitfield_expr_with_lowered_type (exp
);
644 temp_type
= cv_unqualified (type_decays_to (TREE_TYPE (exp
)));
646 /* OK, this is kind of wacky. The standard says that we call
647 terminate when the exception handling mechanism, after
648 completing evaluation of the expression to be thrown but
649 before the exception is caught (_except.throw_), calls a
650 user function that exits via an uncaught exception.
652 So we have to protect the actual initialization of the
653 exception object with terminate(), but evaluate the
654 expression first. Since there could be temps in the
655 expression, we need to handle that, too. We also expand
656 the call to __cxa_allocate_exception first (which doesn't
657 matter, since it can't throw). */
659 /* Allocate the space for the exception. */
660 allocate_expr
= do_allocate_exception (temp_type
);
661 allocate_expr
= get_target_expr (allocate_expr
);
662 ptr
= TARGET_EXPR_SLOT (allocate_expr
);
663 TARGET_EXPR_CLEANUP (allocate_expr
) = do_free_exception (ptr
);
664 CLEANUP_EH_ONLY (allocate_expr
) = 1;
666 object
= build_nop (build_pointer_type (temp_type
), ptr
);
667 object
= cp_build_fold_indirect_ref (object
);
669 /* And initialize the exception object. */
670 if (CLASS_TYPE_P (temp_type
))
672 int flags
= LOOKUP_NORMAL
| LOOKUP_ONLYCONVERTING
;
673 vec
<tree
, va_gc
> *exp_vec
;
674 bool converted
= false;
676 /* Under C++0x [12.8/16 class.copy], a thrown lvalue is sometimes
677 treated as an rvalue for the purposes of overload resolution
678 to favor move constructors over copy constructors. */
679 if (treat_lvalue_as_rvalue_p (exp
, /*parm_ok*/false)
680 /* The variable must not have the `volatile' qualifier. */
681 && !CP_TYPE_VOLATILE_P (TREE_TYPE (exp
)))
683 tree moved
= move (exp
);
684 exp_vec
= make_tree_vector_single (moved
);
685 moved
= (build_special_member_call
686 (object
, complete_ctor_identifier
, &exp_vec
,
687 TREE_TYPE (object
), flags
|LOOKUP_PREFER_RVALUE
,
689 release_tree_vector (exp_vec
);
690 if (moved
!= error_mark_node
)
697 /* Call the copy constructor. */
700 exp_vec
= make_tree_vector_single (exp
);
701 exp
= (build_special_member_call
702 (object
, complete_ctor_identifier
, &exp_vec
,
703 TREE_TYPE (object
), flags
, tf_warning_or_error
));
704 release_tree_vector (exp_vec
);
707 if (exp
== error_mark_node
)
709 error (" in thrown expression");
710 return error_mark_node
;
715 tmp
= decay_conversion (exp
, tf_warning_or_error
);
716 if (tmp
== error_mark_node
)
717 return error_mark_node
;
718 exp
= build2 (INIT_EXPR
, temp_type
, object
, tmp
);
721 /* Mark any cleanups from the initialization as MUST_NOT_THROW, since
722 they are run after the exception object is initialized. */
723 cp_walk_tree_without_duplicates (&exp
, wrap_cleanups_r
, 0);
725 /* Prepend the allocation. */
726 exp
= build2 (COMPOUND_EXPR
, TREE_TYPE (exp
), allocate_expr
, exp
);
728 /* Force all the cleanups to be evaluated here so that we don't have
729 to do them during unwinding. */
730 exp
= build1 (CLEANUP_POINT_EXPR
, void_type_node
, exp
);
732 throw_type
= build_eh_type_type (prepare_eh_type (TREE_TYPE (object
)));
735 if (type_build_dtor_call (TREE_TYPE (object
)))
737 tree dtor_fn
= lookup_fnfields (TYPE_BINFO (TREE_TYPE (object
)),
738 complete_dtor_identifier
, 0);
739 dtor_fn
= BASELINK_FUNCTIONS (dtor_fn
);
741 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (object
)))
743 cxx_mark_addressable (dtor_fn
);
744 /* Pretend it's a normal function. */
745 cleanup
= build1 (ADDR_EXPR
, cleanup_type
, dtor_fn
);
748 if (cleanup
== NULL_TREE
)
749 cleanup
= build_int_cst (cleanup_type
, 0);
751 /* ??? Indicate that this function call throws throw_type. */
752 tmp
= cp_build_function_call_nary (throw_fn
, tf_warning_or_error
,
753 ptr
, throw_type
, cleanup
, NULL_TREE
);
755 /* Tack on the initialization stuff. */
756 exp
= build2 (COMPOUND_EXPR
, TREE_TYPE (tmp
), exp
, tmp
);
760 /* Rethrow current exception. */
763 tree name
= get_identifier ("__cxa_rethrow");
764 rethrow_fn
= get_global_binding (name
);
766 /* Declare void __cxa_rethrow (void). */
767 rethrow_fn
= push_throw_library_fn
768 (name
, build_function_type_list (void_type_node
, NULL_TREE
));
771 apply_tm_attr (rethrow_fn
, get_identifier ("transaction_pure"));
774 /* ??? Indicate that this function call allows exceptions of the type
775 of the enclosing catch block (if known). */
776 exp
= cp_build_function_call_vec (rethrow_fn
, NULL
, tf_warning_or_error
);
779 exp
= build1 (THROW_EXPR
, void_type_node
, exp
);
780 SET_EXPR_LOCATION (exp
, input_location
);
785 /* Make sure TYPE is complete, pointer to complete, reference to
786 complete, or pointer to cv void. Issue diagnostic on failure.
787 Return the zero on failure and nonzero on success. FROM can be
788 the expr or decl from whence TYPE came, if available. */
791 complete_ptr_ref_or_void_ptr_p (tree type
, tree from
)
795 /* Check complete. */
796 type
= complete_type_or_else (type
, from
);
800 /* Or a pointer or ref to one, or cv void *. */
801 is_ptr
= TYPE_PTR_P (type
);
802 if (is_ptr
|| TYPE_REF_P (type
))
804 tree core
= TREE_TYPE (type
);
806 if (is_ptr
&& VOID_TYPE_P (core
))
808 else if (!complete_type_or_else (core
, from
))
814 /* If IS_THROW is true return truth-value if T is an expression admissible
815 in throw-expression, i.e. if it is not of incomplete type or a pointer/
816 reference to such a type or of an abstract class type.
817 If IS_THROW is false, likewise for a catch parameter, same requirements
818 for its type plus rvalue reference type is also not admissible. */
821 is_admissible_throw_operand_or_catch_parameter (tree t
, bool is_throw
)
823 tree expr
= is_throw
? t
: NULL_TREE
;
824 tree type
= TREE_TYPE (t
);
826 /* C++11 [except.handle] The exception-declaration shall not denote
827 an incomplete type, an abstract class type, or an rvalue reference
830 /* 15.1/4 [...] The type of the throw-expression shall not be an
831 incomplete type, or a pointer or a reference to an incomplete
832 type, other than void*, const void*, volatile void*, or
833 const volatile void*. Except for these restriction and the
834 restrictions on type matching mentioned in 15.3, the operand
835 of throw is treated exactly as a function argument in a call
836 (5.2.2) or the operand of a return statement. */
837 if (!complete_ptr_ref_or_void_ptr_p (type
, expr
))
840 /* 10.4/3 An abstract class shall not be used as a parameter type,
841 as a function return type or as type of an explicit
843 else if (abstract_virtuals_error (is_throw
? ACU_THROW
: ACU_CATCH
, type
))
847 && TYPE_REF_IS_RVALUE (type
))
849 error ("cannot declare catch parameter to be of rvalue "
850 "reference type %qT", type
);
853 else if (variably_modified_type_p (type
, NULL_TREE
))
856 error ("cannot throw expression of type %qT because it involves "
857 "types of variable size", type
);
859 error ("cannot catch type %qT because it involves types of "
860 "variable size", type
);
867 /* Returns nonzero if FN is a declaration of a standard C library
868 function which is known not to throw.
870 [lib.res.on.exception.handling]: None of the functions from the
871 Standard C library shall report an error by throwing an
872 exception, unless it calls a program-supplied function that
873 throws an exception. */
878 nothrow_libfn_p (const_tree fn
)
883 && DECL_EXTERNAL (fn
)
884 && DECL_NAMESPACE_SCOPE_P (fn
)
885 && DECL_EXTERN_C_P (fn
))
888 /* Can't be a C library function. */
891 /* Being a C library function, DECL_ASSEMBLER_NAME == DECL_NAME
892 unless the system headers are playing rename tricks, and if
893 they are, we don't want to be confused by them. */
895 const struct libc_name_struct
*s
896 = libc_name::libc_name_p (IDENTIFIER_POINTER (id
), IDENTIFIER_LENGTH (id
));
902 case 99: return !flag_iso
|| flag_isoc99
;
903 case 11: return !flag_iso
|| flag_isoc11
;
904 default: gcc_unreachable ();
908 /* Returns nonzero if an exception of type FROM will be caught by a
909 handler for type TO, as per [except.handle]. */
912 can_convert_eh (tree to
, tree from
)
914 to
= non_reference (to
);
915 from
= non_reference (from
);
917 if (TYPE_PTR_P (to
) && TYPE_PTR_P (from
))
920 from
= TREE_TYPE (from
);
922 if (! at_least_as_qualified_p (to
, from
))
925 if (VOID_TYPE_P (to
))
928 /* Else fall through. */
931 if (CLASS_TYPE_P (to
) && CLASS_TYPE_P (from
)
932 && publicly_uniquely_derived_p (to
, from
))
938 /* Check whether any of the handlers in I are shadowed by another handler
939 accepting TYPE. Note that the shadowing may not be complete; even if
940 an exception of type B would be caught by a handler for A, there could
941 be a derived class C for which A is an ambiguous base but B is not, so
942 the handler for B would catch an exception of type C. */
945 check_handlers_1 (tree master
, tree_stmt_iterator i
)
947 tree type
= TREE_TYPE (master
);
949 for (; !tsi_end_p (i
); tsi_next (&i
))
951 tree handler
= tsi_stmt (i
);
952 if (TREE_TYPE (handler
) && can_convert_eh (type
, TREE_TYPE (handler
)))
954 warning_at (EXPR_LOCATION (handler
), 0,
955 "exception of type %qT will be caught",
956 TREE_TYPE (handler
));
957 warning_at (EXPR_LOCATION (master
), 0,
958 " by earlier handler for %qT", type
);
964 /* Given a STATEMENT_LIST of HANDLERs, make sure that they're OK. */
967 check_handlers (tree handlers
)
969 tree_stmt_iterator i
;
971 /* If we don't have a STATEMENT_LIST, then we've just got one
972 handler, and thus nothing to warn about. */
973 if (TREE_CODE (handlers
) != STATEMENT_LIST
)
976 i
= tsi_start (handlers
);
980 tree handler
= tsi_stmt (i
);
983 /* No more handlers; nothing to shadow. */
986 if (TREE_TYPE (handler
) == NULL_TREE
)
987 permerror (EXPR_LOCATION (handler
), "%<...%>"
988 " handler must be the last handler for its try block");
990 check_handlers_1 (handler
, i
);
994 /* walk_tree helper for finish_noexcept_expr. Returns non-null if the
995 expression *TP causes the noexcept operator to evaluate to false.
997 5.3.7 [expr.noexcept]: The result of the noexcept operator is false if
998 in a potentially-evaluated context the expression would contain
999 * a potentially evaluated call to a function, member function,
1000 function pointer, or member function pointer that does not have a
1001 non-throwing exception-specification (15.4),
1002 * a potentially evaluated throw-expression (15.1),
1003 * a potentially evaluated dynamic_cast expression dynamic_cast<T>(v),
1004 where T is a reference type, that requires a run-time check (5.2.7), or
1005 * a potentially evaluated typeid expression (5.2.8) applied to a glvalue
1006 expression whose type is a polymorphic class type (10.3). */
1009 check_noexcept_r (tree
*tp
, int * /*walk_subtrees*/, void * /*data*/)
1012 enum tree_code code
= TREE_CODE (t
);
1013 if ((code
== CALL_EXPR
&& CALL_EXPR_FN (t
))
1014 || code
== AGGR_INIT_EXPR
)
1016 /* We can only use the exception specification of the called function
1017 for determining the value of a noexcept expression; we can't use
1018 TREE_NOTHROW, as it might have a different value in another
1019 translation unit, creating ODR problems.
1021 We could use TREE_NOTHROW (t) for !TREE_PUBLIC fns, though... */
1022 tree fn
= cp_get_callee (t
);
1023 tree type
= TREE_TYPE (fn
);
1024 gcc_assert (INDIRECT_TYPE_P (type
));
1025 type
= TREE_TYPE (type
);
1028 if (TREE_CODE (fn
) == ADDR_EXPR
)
1029 fn
= TREE_OPERAND (fn
, 0);
1030 if (TREE_CODE (fn
) == FUNCTION_DECL
)
1032 /* We do use TREE_NOTHROW for ABI internals like __dynamic_cast,
1033 and for C library functions known not to throw. */
1034 if (DECL_EXTERN_C_P (fn
)
1035 && (DECL_ARTIFICIAL (fn
)
1036 || nothrow_libfn_p (fn
)))
1037 return TREE_NOTHROW (fn
) ? NULL_TREE
: fn
;
1038 /* A call to a constexpr function is noexcept if the call
1039 is a constant expression. */
1040 if (DECL_DECLARED_CONSTEXPR_P (fn
)
1041 && is_sub_constant_expr (t
))
1044 if (!TYPE_NOTHROW_P (type
))
1051 /* If a function that causes a noexcept-expression to be false isn't
1052 defined yet, remember it and check it for TREE_NOTHROW again at EOF. */
1054 struct GTY(()) pending_noexcept
{
1058 static GTY(()) vec
<pending_noexcept
, va_gc
> *pending_noexcept_checks
;
1060 /* FN is a FUNCTION_DECL that caused a noexcept-expr to be false. Warn if
1064 maybe_noexcept_warning (tree fn
)
1066 if (TREE_NOTHROW (fn
))
1068 warning (OPT_Wnoexcept
, "noexcept-expression evaluates to %<false%> "
1069 "because of a call to %qD", fn
);
1070 warning_at (DECL_SOURCE_LOCATION (fn
), OPT_Wnoexcept
,
1071 "but %qD does not throw; perhaps "
1072 "it should be declared %<noexcept%>", fn
);
1076 /* Check any functions that weren't defined earlier when they caused a
1077 noexcept expression to evaluate to false. */
1080 perform_deferred_noexcept_checks (void)
1083 pending_noexcept
*p
;
1084 location_t saved_loc
= input_location
;
1085 FOR_EACH_VEC_SAFE_ELT (pending_noexcept_checks
, i
, p
)
1087 input_location
= p
->loc
;
1088 maybe_noexcept_warning (p
->fn
);
1090 input_location
= saved_loc
;
1093 /* Evaluate noexcept ( EXPR ). */
1096 finish_noexcept_expr (tree expr
, tsubst_flags_t complain
)
1098 if (expr
== error_mark_node
)
1099 return error_mark_node
;
1101 if (processing_template_decl
)
1102 return build_min (NOEXCEPT_EXPR
, boolean_type_node
, expr
);
1104 return (expr_noexcept_p (expr
, complain
)
1105 ? boolean_true_node
: boolean_false_node
);
1108 /* Returns whether EXPR is noexcept, possibly warning if allowed by
1112 expr_noexcept_p (tree expr
, tsubst_flags_t complain
)
1116 if (expr
== error_mark_node
)
1119 fn
= cp_walk_tree_without_duplicates (&expr
, check_noexcept_r
, 0);
1122 if ((complain
& tf_warning
) && warn_noexcept
1123 && TREE_CODE (fn
) == FUNCTION_DECL
)
1125 if (!DECL_INITIAL (fn
))
1127 /* Not defined yet; check again at EOF. */
1128 pending_noexcept p
= {fn
, input_location
};
1129 vec_safe_push (pending_noexcept_checks
, p
);
1132 maybe_noexcept_warning (fn
);
1140 /* Return true iff SPEC is throw() or noexcept(true). */
1143 nothrow_spec_p (const_tree spec
)
1145 gcc_assert (!DEFERRED_NOEXCEPT_SPEC_P (spec
));
1147 if (spec
== empty_except_spec
1148 || spec
== noexcept_true_spec
)
1152 || TREE_VALUE (spec
)
1153 || spec
== noexcept_false_spec
1154 || TREE_PURPOSE (spec
) == error_mark_node
1155 || processing_template_decl
);
1160 /* For FUNCTION_TYPE or METHOD_TYPE, true if NODE is noexcept. This is the
1161 case for things declared noexcept(true) and, with -fnothrow-opt, for
1162 throw() functions. */
1165 type_noexcept_p (const_tree type
)
1167 tree spec
= TYPE_RAISES_EXCEPTIONS (type
);
1168 gcc_assert (!DEFERRED_NOEXCEPT_SPEC_P (spec
));
1169 if (flag_nothrow_opt
)
1170 return nothrow_spec_p (spec
);
1172 return spec
== noexcept_true_spec
;
1175 /* For FUNCTION_TYPE or METHOD_TYPE, true if NODE can throw any type,
1176 i.e. no exception-specification or noexcept(false). */
1179 type_throw_all_p (const_tree type
)
1181 tree spec
= TYPE_RAISES_EXCEPTIONS (type
);
1182 gcc_assert (!DEFERRED_NOEXCEPT_SPEC_P (spec
));
1183 return spec
== NULL_TREE
|| spec
== noexcept_false_spec
;
1186 /* Create a representation of the noexcept-specification with
1187 constant-expression of EXPR. COMPLAIN is as for tsubst. */
1190 build_noexcept_spec (tree expr
, tsubst_flags_t complain
)
1192 /* This isn't part of the signature, so don't bother trying to evaluate
1193 it until instantiation. */
1194 if (TREE_CODE (expr
) != DEFERRED_NOEXCEPT
1195 && (!processing_template_decl
1196 || (flag_noexcept_type
&& !value_dependent_expression_p (expr
))))
1198 expr
= perform_implicit_conversion_flags (boolean_type_node
, expr
,
1201 expr
= instantiate_non_dependent_expr (expr
);
1202 expr
= cxx_constant_value (expr
);
1204 if (TREE_CODE (expr
) == INTEGER_CST
)
1206 if (operand_equal_p (expr
, boolean_true_node
, 0))
1207 return noexcept_true_spec
;
1210 gcc_checking_assert (operand_equal_p (expr
, boolean_false_node
, 0));
1211 return noexcept_false_spec
;
1214 else if (expr
== error_mark_node
)
1215 return error_mark_node
;
1218 gcc_assert (processing_template_decl
1219 || TREE_CODE (expr
) == DEFERRED_NOEXCEPT
);
1220 if (TREE_CODE (expr
) != DEFERRED_NOEXCEPT
)
1221 /* Avoid problems with a function type built with a dependent typedef
1222 being reused in another scope (c++/84045). */
1223 expr
= strip_typedefs_expr (expr
);
1224 return build_tree_list (expr
, NULL_TREE
);
1228 /* Returns a TRY_CATCH_EXPR that will put TRY_LIST and CATCH_LIST in the
1229 TRY and CATCH locations. CATCH_LIST must be a STATEMENT_LIST */
1232 create_try_catch_expr (tree try_expr
, tree catch_list
)
1234 location_t loc
= EXPR_LOCATION (try_expr
);
1236 append_to_statement_list (do_begin_catch (), &catch_list
);
1237 append_to_statement_list (build_throw (NULL_TREE
), &catch_list
);
1238 tree catch_tf_expr
= build_stmt (loc
, TRY_FINALLY_EXPR
, catch_list
,
1239 do_end_catch (NULL_TREE
));
1240 catch_list
= build2 (CATCH_EXPR
, void_type_node
, NULL_TREE
,
1242 tree try_catch_expr
= build_stmt (loc
, TRY_CATCH_EXPR
, try_expr
, catch_list
);
1243 return try_catch_expr
;
1246 #include "gt-cp-except.h"