Move array-type va_list handling to build_va_arg
[official-gcc.git] / gcc / cp / except.c
blob614f2e914b7befec0400be4bde04d14a94667c64
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)
12 any later version.
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/>. */
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "hash-set.h"
29 #include "machmode.h"
30 #include "vec.h"
31 #include "double-int.h"
32 #include "input.h"
33 #include "alias.h"
34 #include "symtab.h"
35 #include "wide-int.h"
36 #include "inchash.h"
37 #include "tree.h"
38 #include "stringpool.h"
39 #include "trans-mem.h"
40 #include "attribs.h"
41 #include "cp-tree.h"
42 #include "flags.h"
43 #include "tree-inline.h"
44 #include "tree-iterator.h"
45 #include "target.h"
47 static void push_eh_cleanup (tree);
48 static tree prepare_eh_type (tree);
49 static tree do_begin_catch (void);
50 static int dtor_nothrow (tree);
51 static tree do_end_catch (tree);
52 static bool decl_is_java_type (tree decl, int err);
53 static void initialize_handler_parm (tree, tree);
54 static tree do_allocate_exception (tree);
55 static tree wrap_cleanups_r (tree *, int *, void *);
56 static int complete_ptr_ref_or_void_ptr_p (tree, tree);
57 static bool is_admissible_throw_operand_or_catch_parameter (tree, bool);
58 static int can_convert_eh (tree, tree);
60 /* Sets up all the global eh stuff that needs to be initialized at the
61 start of compilation. */
63 void
64 init_exception_processing (void)
66 tree tmp;
68 /* void std::terminate (); */
69 push_namespace (std_identifier);
70 tmp = build_function_type_list (void_type_node, NULL_TREE);
71 terminate_node = build_cp_library_fn_ptr ("terminate", tmp,
72 ECF_NOTHROW | ECF_NORETURN);
73 TREE_THIS_VOLATILE (terminate_node) = 1;
74 TREE_NOTHROW (terminate_node) = 1;
75 pop_namespace ();
77 /* void __cxa_call_unexpected(void *); */
78 tmp = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
79 call_unexpected_node
80 = push_throw_library_fn (get_identifier ("__cxa_call_unexpected"), tmp);
83 /* Returns an expression to be executed if an unhandled exception is
84 propagated out of a cleanup region. */
86 tree
87 cp_protect_cleanup_actions (void)
89 /* [except.terminate]
91 When the destruction of an object during stack unwinding exits
92 using an exception ... void terminate(); is called. */
93 return terminate_node;
96 static tree
97 prepare_eh_type (tree type)
99 if (type == NULL_TREE)
100 return type;
101 if (type == error_mark_node)
102 return error_mark_node;
104 /* peel back references, so they match. */
105 type = non_reference (type);
107 /* Peel off cv qualifiers. */
108 type = TYPE_MAIN_VARIANT (type);
110 /* Functions and arrays decay to pointers. */
111 type = type_decays_to (type);
113 return type;
116 /* Return the type info for TYPE as used by EH machinery. */
117 tree
118 eh_type_info (tree type)
120 tree exp;
122 if (type == NULL_TREE || type == error_mark_node)
123 return type;
125 if (decl_is_java_type (type, 0))
126 exp = build_java_class_ref (TREE_TYPE (type));
127 else
128 exp = get_tinfo_decl (type);
130 return exp;
133 /* Build the address of a typeinfo decl for use in the runtime
134 matching field of the exception model. */
136 tree
137 build_eh_type_type (tree type)
139 tree exp = eh_type_info (type);
141 if (!exp)
142 return NULL;
144 mark_used (exp);
146 return convert (ptr_type_node, build_address (exp));
149 tree
150 build_exc_ptr (void)
152 return build_call_n (builtin_decl_explicit (BUILT_IN_EH_POINTER),
153 1, integer_zero_node);
156 /* Declare a function NAME, returning RETURN_TYPE, taking a single
157 parameter PARM_TYPE, with an empty exception specification.
159 Note that the C++ ABI document does not have a throw-specifier on
160 the routines declared below via this function. The declarations
161 are consistent with the actual implementations in libsupc++. */
163 static tree
164 declare_library_fn (tree name, tree return_type, tree parm_type, int ecf_flags)
166 return push_library_fn (name, build_function_type_list (return_type,
167 parm_type,
168 NULL_TREE),
169 empty_except_spec,
170 ecf_flags);
173 /* Build up a call to __cxa_get_exception_ptr so that we can build a
174 copy constructor for the thrown object. */
176 static tree
177 do_get_exception_ptr (void)
179 tree fn;
181 fn = get_identifier ("__cxa_get_exception_ptr");
182 if (!get_global_value_if_present (fn, &fn))
184 /* Declare void* __cxa_get_exception_ptr (void *) throw(). */
185 fn = declare_library_fn (fn, ptr_type_node, ptr_type_node,
186 ECF_NOTHROW | ECF_PURE | ECF_LEAF | ECF_TM_PURE);
189 return cp_build_function_call_nary (fn, tf_warning_or_error,
190 build_exc_ptr (), NULL_TREE);
193 /* Build up a call to __cxa_begin_catch, to tell the runtime that the
194 exception has been handled. */
196 static tree
197 do_begin_catch (void)
199 tree fn;
201 fn = get_identifier ("__cxa_begin_catch");
202 if (!get_global_value_if_present (fn, &fn))
204 /* Declare void* __cxa_begin_catch (void *) throw(). */
205 fn = declare_library_fn (fn, ptr_type_node, ptr_type_node, ECF_NOTHROW);
207 /* Create its transactional-memory equivalent. */
208 if (flag_tm)
210 tree fn2 = get_identifier ("_ITM_cxa_begin_catch");
211 if (!get_global_value_if_present (fn2, &fn2))
212 fn2 = declare_library_fn (fn2, ptr_type_node,
213 ptr_type_node, ECF_NOTHROW | ECF_TM_PURE);
214 record_tm_replacement (fn, fn2);
218 return cp_build_function_call_nary (fn, tf_warning_or_error,
219 build_exc_ptr (), NULL_TREE);
222 /* Returns nonzero if cleaning up an exception of type TYPE (which can be
223 NULL_TREE for a ... handler) will not throw an exception. */
225 static int
226 dtor_nothrow (tree type)
228 if (type == NULL_TREE || type == error_mark_node)
229 return 0;
231 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
232 return 1;
234 if (CLASSTYPE_LAZY_DESTRUCTOR (type))
235 lazily_declare_fn (sfk_destructor, type);
237 return TREE_NOTHROW (CLASSTYPE_DESTRUCTORS (type));
240 /* Build up a call to __cxa_end_catch, to destroy the exception object
241 for the current catch block if no others are currently using it. */
243 static tree
244 do_end_catch (tree type)
246 tree fn, cleanup;
248 fn = get_identifier ("__cxa_end_catch");
249 if (!get_global_value_if_present (fn, &fn))
251 /* Declare void __cxa_end_catch ().
252 This can throw if the destructor for the exception throws. */
253 fn = push_void_library_fn (fn, void_list_node, 0);
255 /* Create its transactional-memory equivalent. */
256 if (flag_tm)
258 tree fn2 = get_identifier ("_ITM_cxa_end_catch");
259 if (!get_global_value_if_present (fn2, &fn2))
260 fn2 = push_void_library_fn (fn2, void_list_node, ECF_TM_PURE);
261 record_tm_replacement (fn, fn2);
265 cleanup = cp_build_function_call_vec (fn, NULL, tf_warning_or_error);
266 TREE_NOTHROW (cleanup) = dtor_nothrow (type);
268 return cleanup;
271 /* This routine creates the cleanup for the current exception. */
273 static void
274 push_eh_cleanup (tree type)
276 finish_decl_cleanup (NULL_TREE, do_end_catch (type));
279 /* Return nonzero value if DECL is a Java type suitable for catch or
280 throw. */
282 static bool
283 decl_is_java_type (tree decl, int err)
285 bool r = (TYPE_PTR_P (decl)
286 && TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
287 && TYPE_FOR_JAVA (TREE_TYPE (decl)));
289 if (err)
291 if (TREE_CODE (decl) == REFERENCE_TYPE
292 && TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
293 && TYPE_FOR_JAVA (TREE_TYPE (decl)))
295 /* Can't throw a reference. */
296 error ("type %qT is disallowed in Java %<throw%> or %<catch%>",
297 decl);
300 if (r)
302 tree jthrow_node
303 = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jthrowable"));
305 if (jthrow_node == NULL_TREE)
306 fatal_error
307 (input_location,
308 "call to Java %<catch%> or %<throw%> with %<jthrowable%> undefined");
310 jthrow_node = TREE_TYPE (TREE_TYPE (jthrow_node));
312 if (! DERIVED_FROM_P (jthrow_node, TREE_TYPE (decl)))
314 /* Thrown object must be a Throwable. */
315 error ("type %qT is not derived from %<java::lang::Throwable%>",
316 TREE_TYPE (decl));
321 return r;
324 /* Select the personality routine to be used for exception handling,
325 or issue an error if we need two different ones in the same
326 translation unit.
327 ??? At present DECL_FUNCTION_PERSONALITY is set via
328 LANG_HOOKS_EH_PERSONALITY. Should it be done here instead? */
329 void
330 choose_personality_routine (enum languages lang)
332 static enum {
333 chose_none,
334 chose_cpp,
335 chose_java,
336 gave_error
337 } state;
339 switch (state)
341 case gave_error:
342 return;
344 case chose_cpp:
345 if (lang != lang_cplusplus)
346 goto give_error;
347 return;
349 case chose_java:
350 if (lang != lang_java)
351 goto give_error;
352 return;
354 case chose_none:
355 ; /* Proceed to language selection. */
358 switch (lang)
360 case lang_cplusplus:
361 state = chose_cpp;
362 break;
364 case lang_java:
365 state = chose_java;
366 terminate_node = builtin_decl_explicit (BUILT_IN_ABORT);
367 pragma_java_exceptions = true;
368 break;
370 default:
371 gcc_unreachable ();
373 return;
375 give_error:
376 error ("mixing C++ and Java catches in a single translation unit");
377 state = gave_error;
380 /* Wrap EXPR in a MUST_NOT_THROW_EXPR expressing that EXPR must
381 not throw any exceptions if COND is true. A condition of
382 NULL_TREE is treated as 'true'. */
384 tree
385 build_must_not_throw_expr (tree body, tree cond)
387 tree type = body ? TREE_TYPE (body) : void_type_node;
389 if (!flag_exceptions)
390 return body;
392 if (cond && !value_dependent_expression_p (cond))
394 cond = cxx_constant_value (cond);
395 if (integer_zerop (cond))
396 return body;
397 else if (integer_onep (cond))
398 cond = NULL_TREE;
401 return build2 (MUST_NOT_THROW_EXPR, type, body, cond);
405 /* Initialize the catch parameter DECL. */
407 static void
408 initialize_handler_parm (tree decl, tree exp)
410 tree init;
411 tree init_type;
413 /* Make sure we mark the catch param as used, otherwise we'll get a
414 warning about an unused ((anonymous)). */
415 TREE_USED (decl) = 1;
416 DECL_READ_P (decl) = 1;
418 /* Figure out the type that the initializer is. Pointers are returned
419 adjusted by value from __cxa_begin_catch. Others are returned by
420 reference. */
421 init_type = TREE_TYPE (decl);
422 if (!POINTER_TYPE_P (init_type))
423 init_type = build_reference_type (init_type);
425 choose_personality_routine (decl_is_java_type (init_type, 0)
426 ? lang_java : lang_cplusplus);
428 /* Since pointers are passed by value, initialize a reference to
429 pointer catch parm with the address of the temporary. */
430 if (TREE_CODE (init_type) == REFERENCE_TYPE
431 && TYPE_PTR_P (TREE_TYPE (init_type)))
432 exp = cp_build_addr_expr (exp, tf_warning_or_error);
434 exp = ocp_convert (init_type, exp, CONV_IMPLICIT|CONV_FORCE_TEMP, 0,
435 tf_warning_or_error);
437 init = convert_from_reference (exp);
439 /* If the constructor for the catch parm exits via an exception, we
440 must call terminate. See eh23.C. */
441 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
443 /* Generate the copy constructor call directly so we can wrap it.
444 See also expand_default_init. */
445 init = ocp_convert (TREE_TYPE (decl), init,
446 CONV_IMPLICIT|CONV_FORCE_TEMP, 0,
447 tf_warning_or_error);
448 /* Force cleanups now to avoid nesting problems with the
449 MUST_NOT_THROW_EXPR. */
450 init = fold_build_cleanup_point_expr (TREE_TYPE (init), init);
451 init = build_must_not_throw_expr (init, NULL_TREE);
454 decl = pushdecl (decl);
456 start_decl_1 (decl, true);
457 cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE,
458 LOOKUP_ONLYCONVERTING|DIRECT_BIND);
462 /* Routine to see if exception handling is turned on.
463 DO_WARN is nonzero if we want to inform the user that exception
464 handling is turned off.
466 This is used to ensure that -fexceptions has been specified if the
467 compiler tries to use any exception-specific functions. */
469 static inline int
470 doing_eh (void)
472 if (! flag_exceptions)
474 static int warned = 0;
475 if (! warned)
477 error ("exception handling disabled, use -fexceptions to enable");
478 warned = 1;
480 return 0;
482 return 1;
485 /* Call this to start a catch block. DECL is the catch parameter. */
487 tree
488 expand_start_catch_block (tree decl)
490 tree exp;
491 tree type, init;
493 if (! doing_eh ())
494 return NULL_TREE;
496 if (decl)
498 if (!is_admissible_throw_operand_or_catch_parameter (decl, false))
499 decl = error_mark_node;
501 type = prepare_eh_type (TREE_TYPE (decl));
502 mark_used (eh_type_info (type));
504 else
505 type = NULL_TREE;
507 if (decl && decl_is_java_type (type, 1))
509 /* Java only passes object via pointer and doesn't require
510 adjusting. The java object is immediately before the
511 generic exception header. */
512 exp = build_exc_ptr ();
513 exp = build1 (NOP_EXPR, build_pointer_type (type), exp);
514 exp = fold_build_pointer_plus (exp,
515 fold_build1_loc (input_location,
516 NEGATE_EXPR, sizetype,
517 TYPE_SIZE_UNIT (TREE_TYPE (exp))));
518 exp = cp_build_indirect_ref (exp, RO_NULL, tf_warning_or_error);
519 initialize_handler_parm (decl, exp);
520 return type;
523 /* Call __cxa_end_catch at the end of processing the exception. */
524 push_eh_cleanup (type);
526 init = do_begin_catch ();
528 /* If there's no decl at all, then all we need to do is make sure
529 to tell the runtime that we've begun handling the exception. */
530 if (decl == NULL || decl == error_mark_node || init == error_mark_node)
531 finish_expr_stmt (init);
533 /* If the C++ object needs constructing, we need to do that before
534 calling __cxa_begin_catch, so that std::uncaught_exception gets
535 the right value during the copy constructor. */
536 else if (flag_use_cxa_get_exception_ptr
537 && TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
539 exp = do_get_exception_ptr ();
540 initialize_handler_parm (decl, exp);
541 finish_expr_stmt (init);
544 /* Otherwise the type uses a bitwise copy, and we don't have to worry
545 about the value of std::uncaught_exception and therefore can do the
546 copy with the return value of __cxa_end_catch instead. */
547 else
549 tree init_type = type;
551 /* Pointers are passed by values, everything else by reference. */
552 if (!TYPE_PTR_P (type))
553 init_type = build_pointer_type (type);
554 if (init_type != TREE_TYPE (init))
555 init = build1 (NOP_EXPR, init_type, init);
556 exp = create_temporary_var (init_type);
557 DECL_REGISTER (exp) = 1;
558 cp_finish_decl (exp, init, /*init_const_expr=*/false,
559 NULL_TREE, LOOKUP_ONLYCONVERTING);
560 initialize_handler_parm (decl, exp);
563 return type;
567 /* Call this to end a catch block. Its responsible for emitting the
568 code to handle jumping back to the correct place, and for emitting
569 the label to jump to if this catch block didn't match. */
571 void
572 expand_end_catch_block (void)
574 if (! doing_eh ())
575 return;
577 /* The exception being handled is rethrown if control reaches the end of
578 a handler of the function-try-block of a constructor or destructor. */
579 if (in_function_try_handler
580 && (DECL_CONSTRUCTOR_P (current_function_decl)
581 || DECL_DESTRUCTOR_P (current_function_decl)))
583 tree rethrow = build_throw (NULL_TREE);
584 TREE_NO_WARNING (rethrow) = true;
585 finish_expr_stmt (rethrow);
589 tree
590 begin_eh_spec_block (void)
592 tree r;
593 location_t spec_location = DECL_SOURCE_LOCATION (current_function_decl);
595 /* A noexcept specification (or throw() with -fnothrow-opt) is a
596 MUST_NOT_THROW_EXPR. */
597 if (TYPE_NOEXCEPT_P (TREE_TYPE (current_function_decl)))
599 r = build_stmt (spec_location, MUST_NOT_THROW_EXPR,
600 NULL_TREE, NULL_TREE);
601 TREE_SIDE_EFFECTS (r) = 1;
603 else
604 r = build_stmt (spec_location, EH_SPEC_BLOCK, NULL_TREE, NULL_TREE);
605 add_stmt (r);
606 TREE_OPERAND (r, 0) = push_stmt_list ();
607 return r;
610 void
611 finish_eh_spec_block (tree raw_raises, tree eh_spec_block)
613 tree raises;
615 TREE_OPERAND (eh_spec_block, 0)
616 = pop_stmt_list (TREE_OPERAND (eh_spec_block, 0));
618 if (TREE_CODE (eh_spec_block) == MUST_NOT_THROW_EXPR)
619 return;
621 /* Strip cv quals, etc, from the specification types. */
622 for (raises = NULL_TREE;
623 raw_raises && TREE_VALUE (raw_raises);
624 raw_raises = TREE_CHAIN (raw_raises))
626 tree type = prepare_eh_type (TREE_VALUE (raw_raises));
627 tree tinfo = eh_type_info (type);
629 mark_used (tinfo);
630 raises = tree_cons (NULL_TREE, type, raises);
633 EH_SPEC_RAISES (eh_spec_block) = raises;
636 /* Return a pointer to a buffer for an exception object of type TYPE. */
638 static tree
639 do_allocate_exception (tree type)
641 tree fn;
643 fn = get_identifier ("__cxa_allocate_exception");
644 if (!get_global_value_if_present (fn, &fn))
646 /* Declare void *__cxa_allocate_exception(size_t) throw(). */
647 fn = declare_library_fn (fn, ptr_type_node, size_type_node,
648 ECF_NOTHROW | ECF_MALLOC);
650 if (flag_tm)
652 tree fn2 = get_identifier ("_ITM_cxa_allocate_exception");
653 if (!get_global_value_if_present (fn2, &fn2))
654 fn2 = declare_library_fn (fn2, ptr_type_node,
655 size_type_node,
656 ECF_NOTHROW | ECF_MALLOC | ECF_TM_PURE);
657 record_tm_replacement (fn, fn2);
661 return cp_build_function_call_nary (fn, tf_warning_or_error,
662 size_in_bytes (type), NULL_TREE);
665 /* Call __cxa_free_exception from a cleanup. This is never invoked
666 directly, but see the comment for stabilize_throw_expr. */
668 static tree
669 do_free_exception (tree ptr)
671 tree fn;
673 fn = get_identifier ("__cxa_free_exception");
674 if (!get_global_value_if_present (fn, &fn))
676 /* Declare void __cxa_free_exception (void *) throw(). */
677 fn = declare_library_fn (fn, void_type_node, ptr_type_node,
678 ECF_NOTHROW | ECF_LEAF);
681 return cp_build_function_call_nary (fn, tf_warning_or_error, ptr, NULL_TREE);
684 /* Wrap all cleanups for TARGET_EXPRs in MUST_NOT_THROW_EXPR.
685 Called from build_throw via walk_tree_without_duplicates. */
687 static tree
688 wrap_cleanups_r (tree *tp, int *walk_subtrees, void * /*data*/)
690 tree exp = *tp;
691 tree cleanup;
693 /* Don't walk into types. */
694 if (TYPE_P (exp))
696 *walk_subtrees = 0;
697 return NULL_TREE;
699 if (TREE_CODE (exp) != TARGET_EXPR)
700 return NULL_TREE;
702 cleanup = TARGET_EXPR_CLEANUP (exp);
703 if (cleanup)
705 cleanup = build2 (MUST_NOT_THROW_EXPR, void_type_node, cleanup,
706 NULL_TREE);
707 TARGET_EXPR_CLEANUP (exp) = cleanup;
710 /* Keep iterating. */
711 return NULL_TREE;
714 /* Build a throw expression. */
716 tree
717 build_throw (tree exp)
719 tree fn;
721 if (exp == error_mark_node)
722 return exp;
724 if (processing_template_decl)
726 if (cfun)
727 current_function_returns_abnormally = 1;
728 exp = build_min (THROW_EXPR, void_type_node, exp);
729 SET_EXPR_LOCATION (exp, input_location);
730 return exp;
733 if (exp == null_node)
734 warning (0, "throwing NULL, which has integral, not pointer type");
736 if (exp != NULL_TREE)
738 if (!is_admissible_throw_operand_or_catch_parameter (exp, true))
739 return error_mark_node;
742 if (! doing_eh ())
743 return error_mark_node;
745 if (exp && decl_is_java_type (TREE_TYPE (exp), 1))
747 tree fn = get_identifier ("_Jv_Throw");
748 if (!get_global_value_if_present (fn, &fn))
750 /* Declare void _Jv_Throw (void *). */
751 tree tmp;
752 tmp = build_function_type_list (ptr_type_node,
753 ptr_type_node, NULL_TREE);
754 fn = push_throw_library_fn (fn, tmp);
756 else if (really_overloaded_fn (fn))
758 error ("%qD should never be overloaded", fn);
759 return error_mark_node;
761 fn = OVL_CURRENT (fn);
762 exp = cp_build_function_call_nary (fn, tf_warning_or_error,
763 exp, NULL_TREE);
765 else if (exp)
767 tree throw_type;
768 tree temp_type;
769 tree cleanup;
770 tree object, ptr;
771 tree tmp;
772 tree allocate_expr;
774 /* The CLEANUP_TYPE is the internal type of a destructor. */
775 if (!cleanup_type)
777 tmp = build_function_type_list (void_type_node,
778 ptr_type_node, NULL_TREE);
779 cleanup_type = build_pointer_type (tmp);
782 fn = get_identifier ("__cxa_throw");
783 if (!get_global_value_if_present (fn, &fn))
785 /* Declare void __cxa_throw (void*, void*, void (*)(void*)). */
786 /* ??? Second argument is supposed to be "std::type_info*". */
787 tmp = build_function_type_list (void_type_node,
788 ptr_type_node, ptr_type_node,
789 cleanup_type, NULL_TREE);
790 fn = push_throw_library_fn (fn, tmp);
792 if (flag_tm)
794 tree fn2 = get_identifier ("_ITM_cxa_throw");
795 if (!get_global_value_if_present (fn2, &fn2))
796 fn2 = push_throw_library_fn (fn2, tmp);
797 apply_tm_attr (fn2, get_identifier ("transaction_pure"));
798 record_tm_replacement (fn, fn2);
802 /* [except.throw]
804 A throw-expression initializes a temporary object, the type
805 of which is determined by removing any top-level
806 cv-qualifiers from the static type of the operand of throw
807 and adjusting the type from "array of T" or "function return
808 T" to "pointer to T" or "pointer to function returning T"
809 respectively. */
810 temp_type = is_bitfield_expr_with_lowered_type (exp);
811 if (!temp_type)
812 temp_type = cv_unqualified (type_decays_to (TREE_TYPE (exp)));
814 /* OK, this is kind of wacky. The standard says that we call
815 terminate when the exception handling mechanism, after
816 completing evaluation of the expression to be thrown but
817 before the exception is caught (_except.throw_), calls a
818 user function that exits via an uncaught exception.
820 So we have to protect the actual initialization of the
821 exception object with terminate(), but evaluate the
822 expression first. Since there could be temps in the
823 expression, we need to handle that, too. We also expand
824 the call to __cxa_allocate_exception first (which doesn't
825 matter, since it can't throw). */
827 /* Allocate the space for the exception. */
828 allocate_expr = do_allocate_exception (temp_type);
829 allocate_expr = get_target_expr (allocate_expr);
830 ptr = TARGET_EXPR_SLOT (allocate_expr);
831 TARGET_EXPR_CLEANUP (allocate_expr) = do_free_exception (ptr);
832 CLEANUP_EH_ONLY (allocate_expr) = 1;
834 object = build_nop (build_pointer_type (temp_type), ptr);
835 object = cp_build_indirect_ref (object, RO_NULL, tf_warning_or_error);
837 /* And initialize the exception object. */
838 if (CLASS_TYPE_P (temp_type))
840 int flags = LOOKUP_NORMAL | LOOKUP_ONLYCONVERTING;
841 vec<tree, va_gc> *exp_vec;
843 /* Under C++0x [12.8/16 class.copy], a thrown lvalue is sometimes
844 treated as an rvalue for the purposes of overload resolution
845 to favor move constructors over copy constructors. */
846 if (/* Must be a local, automatic variable. */
847 VAR_P (exp)
848 && DECL_CONTEXT (exp) == current_function_decl
849 && ! TREE_STATIC (exp)
850 /* The variable must not have the `volatile' qualifier. */
851 && !(cp_type_quals (TREE_TYPE (exp)) & TYPE_QUAL_VOLATILE))
852 flags = flags | LOOKUP_PREFER_RVALUE;
854 /* Call the copy constructor. */
855 exp_vec = make_tree_vector_single (exp);
856 exp = (build_special_member_call
857 (object, complete_ctor_identifier, &exp_vec,
858 TREE_TYPE (object), flags, tf_warning_or_error));
859 release_tree_vector (exp_vec);
860 if (exp == error_mark_node)
862 error (" in thrown expression");
863 return error_mark_node;
866 else
868 tmp = decay_conversion (exp, tf_warning_or_error);
869 if (tmp == error_mark_node)
870 return error_mark_node;
871 exp = build2 (INIT_EXPR, temp_type, object, tmp);
874 /* Mark any cleanups from the initialization as MUST_NOT_THROW, since
875 they are run after the exception object is initialized. */
876 cp_walk_tree_without_duplicates (&exp, wrap_cleanups_r, 0);
878 /* Prepend the allocation. */
879 exp = build2 (COMPOUND_EXPR, TREE_TYPE (exp), allocate_expr, exp);
881 /* Force all the cleanups to be evaluated here so that we don't have
882 to do them during unwinding. */
883 exp = build1 (CLEANUP_POINT_EXPR, void_type_node, exp);
885 throw_type = build_eh_type_type (prepare_eh_type (TREE_TYPE (object)));
887 cleanup = NULL_TREE;
888 if (type_build_dtor_call (TREE_TYPE (object)))
890 tree fn = lookup_fnfields (TYPE_BINFO (TREE_TYPE (object)),
891 complete_dtor_identifier, 0);
892 fn = BASELINK_FUNCTIONS (fn);
893 mark_used (fn);
894 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (object)))
896 cxx_mark_addressable (fn);
897 /* Pretend it's a normal function. */
898 cleanup = build1 (ADDR_EXPR, cleanup_type, fn);
901 if (cleanup == NULL_TREE)
902 cleanup = build_int_cst (cleanup_type, 0);
904 /* ??? Indicate that this function call throws throw_type. */
905 tmp = cp_build_function_call_nary (fn, tf_warning_or_error,
906 ptr, throw_type, cleanup, NULL_TREE);
908 /* Tack on the initialization stuff. */
909 exp = build2 (COMPOUND_EXPR, TREE_TYPE (tmp), exp, tmp);
911 else
913 /* Rethrow current exception. */
915 tree fn = get_identifier ("__cxa_rethrow");
916 if (!get_global_value_if_present (fn, &fn))
918 /* Declare void __cxa_rethrow (void). */
919 fn = push_throw_library_fn
920 (fn, build_function_type_list (void_type_node, NULL_TREE));
923 if (flag_tm)
924 apply_tm_attr (fn, get_identifier ("transaction_pure"));
926 /* ??? Indicate that this function call allows exceptions of the type
927 of the enclosing catch block (if known). */
928 exp = cp_build_function_call_vec (fn, NULL, tf_warning_or_error);
931 exp = build1 (THROW_EXPR, void_type_node, exp);
932 SET_EXPR_LOCATION (exp, input_location);
934 return exp;
937 /* Make sure TYPE is complete, pointer to complete, reference to
938 complete, or pointer to cv void. Issue diagnostic on failure.
939 Return the zero on failure and nonzero on success. FROM can be
940 the expr or decl from whence TYPE came, if available. */
942 static int
943 complete_ptr_ref_or_void_ptr_p (tree type, tree from)
945 int is_ptr;
947 /* Check complete. */
948 type = complete_type_or_else (type, from);
949 if (!type)
950 return 0;
952 /* Or a pointer or ref to one, or cv void *. */
953 is_ptr = TYPE_PTR_P (type);
954 if (is_ptr || TREE_CODE (type) == REFERENCE_TYPE)
956 tree core = TREE_TYPE (type);
958 if (is_ptr && VOID_TYPE_P (core))
959 /* OK */;
960 else if (!complete_type_or_else (core, from))
961 return 0;
963 return 1;
966 /* If IS_THROW is true return truth-value if T is an expression admissible
967 in throw-expression, i.e. if it is not of incomplete type or a pointer/
968 reference to such a type or of an abstract class type.
969 If IS_THROW is false, likewise for a catch parameter, same requirements
970 for its type plus rvalue reference type is also not admissible. */
972 static bool
973 is_admissible_throw_operand_or_catch_parameter (tree t, bool is_throw)
975 tree expr = is_throw ? t : NULL_TREE;
976 tree type = TREE_TYPE (t);
978 /* C++11 [except.handle] The exception-declaration shall not denote
979 an incomplete type, an abstract class type, or an rvalue reference
980 type. */
982 /* 15.1/4 [...] The type of the throw-expression shall not be an
983 incomplete type, or a pointer or a reference to an incomplete
984 type, other than void*, const void*, volatile void*, or
985 const volatile void*. Except for these restriction and the
986 restrictions on type matching mentioned in 15.3, the operand
987 of throw is treated exactly as a function argument in a call
988 (5.2.2) or the operand of a return statement. */
989 if (!complete_ptr_ref_or_void_ptr_p (type, expr))
990 return false;
992 /* 10.4/3 An abstract class shall not be used as a parameter type,
993 as a function return type or as type of an explicit
994 conversion. */
995 else if (abstract_virtuals_error (is_throw ? ACU_THROW : ACU_CATCH, type))
996 return false;
997 else if (!is_throw
998 && TREE_CODE (type) == REFERENCE_TYPE
999 && TYPE_REF_IS_RVALUE (type))
1001 error ("cannot declare catch parameter to be of rvalue "
1002 "reference type %qT", type);
1003 return false;
1005 else if (variably_modified_type_p (type, NULL_TREE))
1007 if (is_throw)
1008 error ("cannot throw expression of type %qT because it involves "
1009 "types of variable size", type);
1010 else
1011 error ("cannot catch type %qT because it involves types of "
1012 "variable size", type);
1013 return false;
1016 return true;
1019 /* Returns nonzero if FN is a declaration of a standard C library
1020 function which is known not to throw.
1022 [lib.res.on.exception.handling]: None of the functions from the
1023 Standard C library shall report an error by throwing an
1024 exception, unless it calls a program-supplied function that
1025 throws an exception. */
1027 #include "cfns.h"
1030 nothrow_libfn_p (const_tree fn)
1032 tree id;
1034 if (TREE_PUBLIC (fn)
1035 && DECL_EXTERNAL (fn)
1036 && DECL_NAMESPACE_SCOPE_P (fn)
1037 && DECL_EXTERN_C_P (fn))
1038 /* OK */;
1039 else
1040 /* Can't be a C library function. */
1041 return 0;
1043 /* Being a C library function, DECL_ASSEMBLER_NAME == DECL_NAME
1044 unless the system headers are playing rename tricks, and if
1045 they are, we don't want to be confused by them. */
1046 id = DECL_NAME (fn);
1047 return !!libc_name_p (IDENTIFIER_POINTER (id), IDENTIFIER_LENGTH (id));
1050 /* Returns nonzero if an exception of type FROM will be caught by a
1051 handler for type TO, as per [except.handle]. */
1053 static int
1054 can_convert_eh (tree to, tree from)
1056 to = non_reference (to);
1057 from = non_reference (from);
1059 if (TYPE_PTR_P (to) && TYPE_PTR_P (from))
1061 to = TREE_TYPE (to);
1062 from = TREE_TYPE (from);
1064 if (! at_least_as_qualified_p (to, from))
1065 return 0;
1067 if (VOID_TYPE_P (to))
1068 return 1;
1070 /* Else fall through. */
1073 if (CLASS_TYPE_P (to) && CLASS_TYPE_P (from)
1074 && publicly_uniquely_derived_p (to, from))
1075 return 1;
1077 return 0;
1080 /* Check whether any of the handlers in I are shadowed by another handler
1081 accepting TYPE. Note that the shadowing may not be complete; even if
1082 an exception of type B would be caught by a handler for A, there could
1083 be a derived class C for which A is an ambiguous base but B is not, so
1084 the handler for B would catch an exception of type C. */
1086 static void
1087 check_handlers_1 (tree master, tree_stmt_iterator i)
1089 tree type = TREE_TYPE (master);
1091 for (; !tsi_end_p (i); tsi_next (&i))
1093 tree handler = tsi_stmt (i);
1094 if (TREE_TYPE (handler) && can_convert_eh (type, TREE_TYPE (handler)))
1096 warning_at (EXPR_LOCATION (handler), 0,
1097 "exception of type %qT will be caught",
1098 TREE_TYPE (handler));
1099 warning_at (EXPR_LOCATION (master), 0,
1100 " by earlier handler for %qT", type);
1101 break;
1106 /* Given a STATEMENT_LIST of HANDLERs, make sure that they're OK. */
1108 void
1109 check_handlers (tree handlers)
1111 tree_stmt_iterator i;
1113 /* If we don't have a STATEMENT_LIST, then we've just got one
1114 handler, and thus nothing to warn about. */
1115 if (TREE_CODE (handlers) != STATEMENT_LIST)
1116 return;
1118 i = tsi_start (handlers);
1119 if (!tsi_end_p (i))
1120 while (1)
1122 tree handler = tsi_stmt (i);
1123 tsi_next (&i);
1125 /* No more handlers; nothing to shadow. */
1126 if (tsi_end_p (i))
1127 break;
1128 if (TREE_TYPE (handler) == NULL_TREE)
1129 permerror (EXPR_LOCATION (handler), "%<...%>"
1130 " handler must be the last handler for its try block");
1131 else
1132 check_handlers_1 (handler, i);
1136 /* walk_tree helper for finish_noexcept_expr. Returns non-null if the
1137 expression *TP causes the noexcept operator to evaluate to false.
1139 5.3.7 [expr.noexcept]: The result of the noexcept operator is false if
1140 in a potentially-evaluated context the expression would contain
1141 * a potentially evaluated call to a function, member function,
1142 function pointer, or member function pointer that does not have a
1143 non-throwing exception-specification (15.4),
1144 * a potentially evaluated throw-expression (15.1),
1145 * a potentially evaluated dynamic_cast expression dynamic_cast<T>(v),
1146 where T is a reference type, that requires a run-time check (5.2.7), or
1147 * a potentially evaluated typeid expression (5.2.8) applied to a glvalue
1148 expression whose type is a polymorphic class type (10.3). */
1150 static tree
1151 check_noexcept_r (tree *tp, int * /*walk_subtrees*/, void * /*data*/)
1153 tree t = *tp;
1154 enum tree_code code = TREE_CODE (t);
1155 if ((code == CALL_EXPR && CALL_EXPR_FN (t))
1156 || code == AGGR_INIT_EXPR)
1158 /* We can only use the exception specification of the called function
1159 for determining the value of a noexcept expression; we can't use
1160 TREE_NOTHROW, as it might have a different value in another
1161 translation unit, creating ODR problems.
1163 We could use TREE_NOTHROW (t) for !TREE_PUBLIC fns, though... */
1164 tree fn = (code == AGGR_INIT_EXPR
1165 ? AGGR_INIT_EXPR_FN (t) : CALL_EXPR_FN (t));
1166 tree type = TREE_TYPE (TREE_TYPE (fn));
1168 STRIP_NOPS (fn);
1169 if (TREE_CODE (fn) == ADDR_EXPR)
1170 fn = TREE_OPERAND (fn, 0);
1171 if (TREE_CODE (fn) == FUNCTION_DECL)
1173 /* We do use TREE_NOTHROW for ABI internals like __dynamic_cast,
1174 and for C library functions known not to throw. */
1175 if (DECL_EXTERN_C_P (fn)
1176 && (DECL_ARTIFICIAL (fn)
1177 || nothrow_libfn_p (fn)))
1178 return TREE_NOTHROW (fn) ? NULL_TREE : fn;
1179 /* A call to a constexpr function is noexcept if the call
1180 is a constant expression. */
1181 if (DECL_DECLARED_CONSTEXPR_P (fn)
1182 && is_sub_constant_expr (t))
1183 return NULL_TREE;
1185 if (!TYPE_NOTHROW_P (type))
1186 return fn;
1189 return NULL_TREE;
1192 /* If a function that causes a noexcept-expression to be false isn't
1193 defined yet, remember it and check it for TREE_NOTHROW again at EOF. */
1195 typedef struct GTY(()) pending_noexcept {
1196 tree fn;
1197 location_t loc;
1198 } pending_noexcept;
1199 static GTY(()) vec<pending_noexcept, va_gc> *pending_noexcept_checks;
1201 /* FN is a FUNCTION_DECL that caused a noexcept-expr to be false. Warn if
1202 it can't throw. */
1204 static void
1205 maybe_noexcept_warning (tree fn)
1207 if (TREE_NOTHROW (fn))
1209 warning (OPT_Wnoexcept, "noexcept-expression evaluates to %<false%> "
1210 "because of a call to %qD", fn);
1211 warning (OPT_Wnoexcept, "but %q+D does not throw; perhaps "
1212 "it should be declared %<noexcept%>", fn);
1216 /* Check any functions that weren't defined earlier when they caused a
1217 noexcept expression to evaluate to false. */
1219 void
1220 perform_deferred_noexcept_checks (void)
1222 int i;
1223 pending_noexcept *p;
1224 location_t saved_loc = input_location;
1225 FOR_EACH_VEC_SAFE_ELT (pending_noexcept_checks, i, p)
1227 input_location = p->loc;
1228 maybe_noexcept_warning (p->fn);
1230 input_location = saved_loc;
1233 /* Evaluate noexcept ( EXPR ). */
1235 tree
1236 finish_noexcept_expr (tree expr, tsubst_flags_t complain)
1238 if (expr == error_mark_node)
1239 return error_mark_node;
1241 if (processing_template_decl)
1242 return build_min (NOEXCEPT_EXPR, boolean_type_node, expr);
1244 return (expr_noexcept_p (expr, complain)
1245 ? boolean_true_node : boolean_false_node);
1248 /* Returns whether EXPR is noexcept, possibly warning if allowed by
1249 COMPLAIN. */
1251 bool
1252 expr_noexcept_p (tree expr, tsubst_flags_t complain)
1254 tree fn;
1256 if (expr == error_mark_node)
1257 return false;
1259 fn = cp_walk_tree_without_duplicates (&expr, check_noexcept_r, 0);
1260 if (fn)
1262 if ((complain & tf_warning) && warn_noexcept
1263 && TREE_CODE (fn) == FUNCTION_DECL)
1265 if (!DECL_INITIAL (fn))
1267 /* Not defined yet; check again at EOF. */
1268 pending_noexcept p = {fn, input_location};
1269 vec_safe_push (pending_noexcept_checks, p);
1271 else
1272 maybe_noexcept_warning (fn);
1274 return false;
1276 else
1277 return true;
1280 /* Return true iff SPEC is throw() or noexcept(true). */
1282 bool
1283 nothrow_spec_p (const_tree spec)
1285 gcc_assert (!DEFERRED_NOEXCEPT_SPEC_P (spec));
1286 if (spec == NULL_TREE
1287 || TREE_VALUE (spec) != NULL_TREE
1288 || spec == noexcept_false_spec)
1289 return false;
1290 if (TREE_PURPOSE (spec) == NULL_TREE
1291 || spec == noexcept_true_spec)
1292 return true;
1293 gcc_assert (processing_template_decl
1294 || TREE_PURPOSE (spec) == error_mark_node);
1295 return false;
1298 /* For FUNCTION_TYPE or METHOD_TYPE, true if NODE is noexcept. This is the
1299 case for things declared noexcept(true) and, with -fnothrow-opt, for
1300 throw() functions. */
1302 bool
1303 type_noexcept_p (const_tree type)
1305 tree spec = TYPE_RAISES_EXCEPTIONS (type);
1306 gcc_assert (!DEFERRED_NOEXCEPT_SPEC_P (spec));
1307 if (flag_nothrow_opt)
1308 return nothrow_spec_p (spec);
1309 else
1310 return spec == noexcept_true_spec;
1313 /* For FUNCTION_TYPE or METHOD_TYPE, true if NODE can throw any type,
1314 i.e. no exception-specification or noexcept(false). */
1316 bool
1317 type_throw_all_p (const_tree type)
1319 tree spec = TYPE_RAISES_EXCEPTIONS (type);
1320 gcc_assert (!DEFERRED_NOEXCEPT_SPEC_P (spec));
1321 return spec == NULL_TREE || spec == noexcept_false_spec;
1324 /* Create a representation of the noexcept-specification with
1325 constant-expression of EXPR. COMPLAIN is as for tsubst. */
1327 tree
1328 build_noexcept_spec (tree expr, int complain)
1330 /* This isn't part of the signature, so don't bother trying to evaluate
1331 it until instantiation. */
1332 if (!processing_template_decl && TREE_CODE (expr) != DEFERRED_NOEXCEPT)
1334 expr = perform_implicit_conversion_flags (boolean_type_node, expr,
1335 complain,
1336 LOOKUP_NORMAL);
1337 expr = cxx_constant_value (expr);
1339 if (TREE_CODE (expr) == INTEGER_CST)
1341 if (operand_equal_p (expr, boolean_true_node, 0))
1342 return noexcept_true_spec;
1343 else
1345 gcc_checking_assert (operand_equal_p (expr, boolean_false_node, 0));
1346 return noexcept_false_spec;
1349 else if (expr == error_mark_node)
1350 return error_mark_node;
1351 else
1353 gcc_assert (processing_template_decl
1354 || TREE_CODE (expr) == DEFERRED_NOEXCEPT);
1355 return build_tree_list (expr, NULL_TREE);
1359 /* Returns a noexcept-specifier to be evaluated later, for an
1360 implicitly-declared or explicitly defaulted special member function. */
1362 tree
1363 unevaluated_noexcept_spec (void)
1365 static tree spec;
1366 if (spec == NULL_TREE)
1367 spec = build_noexcept_spec (make_node (DEFERRED_NOEXCEPT), tf_none);
1368 return spec;
1371 /* Returns a TRY_CATCH_EXPR that will put TRY_LIST and CATCH_LIST in the
1372 TRY and CATCH locations. CATCH_LIST must be a STATEMENT_LIST */
1374 tree
1375 create_try_catch_expr (tree try_expr, tree catch_list)
1377 location_t loc = EXPR_LOCATION (try_expr);
1379 append_to_statement_list (do_begin_catch (), &catch_list);
1380 append_to_statement_list (build_throw (NULL_TREE), &catch_list);
1381 tree catch_tf_expr = build_stmt (loc, TRY_FINALLY_EXPR, catch_list,
1382 do_end_catch (NULL_TREE));
1383 catch_list = build2 (CATCH_EXPR, void_type_node, NULL_TREE,
1384 catch_tf_expr);
1385 tree try_catch_expr = build_stmt (loc, TRY_CATCH_EXPR, try_expr, catch_list);
1386 return try_catch_expr;
1389 #include "gt-cp-except.h"