]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/cp/except.c
This patch rewrites the old VEC macro-based interface into a new one
[thirdparty/gcc.git] / gcc / cp / except.c
1 /* Handle exceptional things in C++.
2 Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2012
4 Free Software Foundation, Inc.
5 Contributed by Michael Tiemann <tiemann@cygnus.com>
6 Rewritten by Mike Stump <mrs@cygnus.com>, based upon an
7 initial re-implementation courtesy Tad Hunt.
8
9 This file is part of GCC.
10
11 GCC is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3, or (at your option)
14 any later version.
15
16 GCC is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with GCC; see the file COPYING3. If not see
23 <http://www.gnu.org/licenses/>. */
24
25
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "tm.h"
30 #include "tree.h"
31 #include "cp-tree.h"
32 #include "flags.h"
33 #include "tree-inline.h"
34 #include "tree-iterator.h"
35 #include "target.h"
36 #include "gimple.h"
37
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);
50
51 /* Sets up all the global eh stuff that needs to be initialized at the
52 start of compilation. */
53
54 void
55 init_exception_processing (void)
56 {
57 tree tmp;
58
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 TREE_THIS_VOLATILE (terminate_node) = 1;
64 TREE_NOTHROW (terminate_node) = 1;
65 pop_namespace ();
66
67 /* void __cxa_call_unexpected(void *); */
68 tmp = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
69 call_unexpected_node
70 = push_throw_library_fn (get_identifier ("__cxa_call_unexpected"), tmp);
71 }
72
73 /* Returns an expression to be executed if an unhandled exception is
74 propagated out of a cleanup region. */
75
76 tree
77 cp_protect_cleanup_actions (void)
78 {
79 /* [except.terminate]
80
81 When the destruction of an object during stack unwinding exits
82 using an exception ... void terminate(); is called. */
83 return terminate_node;
84 }
85
86 static tree
87 prepare_eh_type (tree type)
88 {
89 if (type == NULL_TREE)
90 return type;
91 if (type == error_mark_node)
92 return error_mark_node;
93
94 /* peel back references, so they match. */
95 type = non_reference (type);
96
97 /* Peel off cv qualifiers. */
98 type = TYPE_MAIN_VARIANT (type);
99
100 /* Functions and arrays decay to pointers. */
101 type = type_decays_to (type);
102
103 return type;
104 }
105
106 /* Return the type info for TYPE as used by EH machinery. */
107 tree
108 eh_type_info (tree type)
109 {
110 tree exp;
111
112 if (type == NULL_TREE || type == error_mark_node)
113 return type;
114
115 if (decl_is_java_type (type, 0))
116 exp = build_java_class_ref (TREE_TYPE (type));
117 else
118 exp = get_tinfo_decl (type);
119
120 return exp;
121 }
122
123 /* Build the address of a typeinfo decl for use in the runtime
124 matching field of the exception model. */
125
126 tree
127 build_eh_type_type (tree type)
128 {
129 tree exp = eh_type_info (type);
130
131 if (!exp)
132 return NULL;
133
134 mark_used (exp);
135
136 return convert (ptr_type_node, build_address (exp));
137 }
138
139 tree
140 build_exc_ptr (void)
141 {
142 return build_call_n (builtin_decl_explicit (BUILT_IN_EH_POINTER),
143 1, integer_zero_node);
144 }
145
146 /* Declare a function NAME, returning RETURN_TYPE, taking a single
147 parameter PARM_TYPE, with an empty exception specification.
148
149 Note that the C++ ABI document does not have a throw-specifier on
150 the routines declared below via this function. The declarations
151 are consistent with the actual implementations in libsupc++. */
152
153 static tree
154 declare_nothrow_library_fn (tree name, tree return_type, tree parm_type)
155 {
156 return push_library_fn (name, build_function_type_list (return_type,
157 parm_type,
158 NULL_TREE),
159 empty_except_spec);
160 }
161
162 /* Build up a call to __cxa_get_exception_ptr so that we can build a
163 copy constructor for the thrown object. */
164
165 static tree
166 do_get_exception_ptr (void)
167 {
168 tree fn;
169
170 fn = get_identifier ("__cxa_get_exception_ptr");
171 if (!get_global_value_if_present (fn, &fn))
172 {
173 /* Declare void* __cxa_get_exception_ptr (void *) throw(). */
174 fn = declare_nothrow_library_fn (fn, ptr_type_node, ptr_type_node);
175
176 if (flag_tm)
177 apply_tm_attr (fn, get_identifier ("transaction_pure"));
178 }
179
180 return cp_build_function_call_nary (fn, tf_warning_or_error,
181 build_exc_ptr (), NULL_TREE);
182 }
183
184 /* Build up a call to __cxa_begin_catch, to tell the runtime that the
185 exception has been handled. */
186
187 static tree
188 do_begin_catch (void)
189 {
190 tree fn;
191
192 fn = get_identifier ("__cxa_begin_catch");
193 if (!get_global_value_if_present (fn, &fn))
194 {
195 /* Declare void* __cxa_begin_catch (void *) throw(). */
196 fn = declare_nothrow_library_fn (fn, ptr_type_node, ptr_type_node);
197
198 /* Create its transactional-memory equivalent. */
199 if (flag_tm)
200 {
201 tree fn2 = get_identifier ("_ITM_cxa_begin_catch");
202 if (!get_global_value_if_present (fn2, &fn2))
203 fn2 = declare_nothrow_library_fn (fn2, ptr_type_node,
204 ptr_type_node);
205 apply_tm_attr (fn2, get_identifier ("transaction_pure"));
206 record_tm_replacement (fn, fn2);
207 }
208 }
209
210 return cp_build_function_call_nary (fn, tf_warning_or_error,
211 build_exc_ptr (), NULL_TREE);
212 }
213
214 /* Returns nonzero if cleaning up an exception of type TYPE (which can be
215 NULL_TREE for a ... handler) will not throw an exception. */
216
217 static int
218 dtor_nothrow (tree type)
219 {
220 if (type == NULL_TREE || type == error_mark_node)
221 return 0;
222
223 if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
224 return 1;
225
226 if (CLASSTYPE_LAZY_DESTRUCTOR (type))
227 lazily_declare_fn (sfk_destructor, type);
228
229 return TREE_NOTHROW (CLASSTYPE_DESTRUCTORS (type));
230 }
231
232 /* Build up a call to __cxa_end_catch, to destroy the exception object
233 for the current catch block if no others are currently using it. */
234
235 static tree
236 do_end_catch (tree type)
237 {
238 tree fn, cleanup;
239
240 fn = get_identifier ("__cxa_end_catch");
241 if (!get_global_value_if_present (fn, &fn))
242 {
243 /* Declare void __cxa_end_catch (). */
244 fn = push_void_library_fn (fn, void_list_node);
245 /* This can throw if the destructor for the exception throws. */
246 TREE_NOTHROW (fn) = 0;
247
248 /* Create its transactional-memory equivalent. */
249 if (flag_tm)
250 {
251 tree fn2 = get_identifier ("_ITM_cxa_end_catch");
252 if (!get_global_value_if_present (fn2, &fn2))
253 {
254 fn2 = push_void_library_fn (fn2, void_list_node);
255 TREE_NOTHROW (fn2) = 0;
256 }
257 apply_tm_attr (fn2, get_identifier ("transaction_pure"));
258 record_tm_replacement (fn, fn2);
259 }
260 }
261
262 cleanup = cp_build_function_call_vec (fn, NULL, tf_warning_or_error);
263 TREE_NOTHROW (cleanup) = dtor_nothrow (type);
264
265 return cleanup;
266 }
267
268 /* This routine creates the cleanup for the current exception. */
269
270 static void
271 push_eh_cleanup (tree type)
272 {
273 finish_decl_cleanup (NULL_TREE, do_end_catch (type));
274 }
275
276 /* Return nonzero value if DECL is a Java type suitable for catch or
277 throw. */
278
279 static bool
280 decl_is_java_type (tree decl, int err)
281 {
282 bool r = (TREE_CODE (decl) == POINTER_TYPE
283 && TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
284 && TYPE_FOR_JAVA (TREE_TYPE (decl)));
285
286 if (err)
287 {
288 if (TREE_CODE (decl) == REFERENCE_TYPE
289 && TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
290 && TYPE_FOR_JAVA (TREE_TYPE (decl)))
291 {
292 /* Can't throw a reference. */
293 error ("type %qT is disallowed in Java %<throw%> or %<catch%>",
294 decl);
295 }
296
297 if (r)
298 {
299 tree jthrow_node
300 = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jthrowable"));
301
302 if (jthrow_node == NULL_TREE)
303 fatal_error
304 ("call to Java %<catch%> or %<throw%> with %<jthrowable%> undefined");
305
306 jthrow_node = TREE_TYPE (TREE_TYPE (jthrow_node));
307
308 if (! DERIVED_FROM_P (jthrow_node, TREE_TYPE (decl)))
309 {
310 /* Thrown object must be a Throwable. */
311 error ("type %qT is not derived from %<java::lang::Throwable%>",
312 TREE_TYPE (decl));
313 }
314 }
315 }
316
317 return r;
318 }
319
320 /* Select the personality routine to be used for exception handling,
321 or issue an error if we need two different ones in the same
322 translation unit.
323 ??? At present DECL_FUNCTION_PERSONALITY is set via
324 LANG_HOOKS_EH_PERSONALITY. Should it be done here instead? */
325 void
326 choose_personality_routine (enum languages lang)
327 {
328 static enum {
329 chose_none,
330 chose_cpp,
331 chose_java,
332 gave_error
333 } state;
334
335 switch (state)
336 {
337 case gave_error:
338 return;
339
340 case chose_cpp:
341 if (lang != lang_cplusplus)
342 goto give_error;
343 return;
344
345 case chose_java:
346 if (lang != lang_java)
347 goto give_error;
348 return;
349
350 case chose_none:
351 ; /* Proceed to language selection. */
352 }
353
354 switch (lang)
355 {
356 case lang_cplusplus:
357 state = chose_cpp;
358 break;
359
360 case lang_java:
361 state = chose_java;
362 terminate_node = builtin_decl_explicit (BUILT_IN_ABORT);
363 pragma_java_exceptions = true;
364 break;
365
366 default:
367 gcc_unreachable ();
368 }
369 return;
370
371 give_error:
372 error ("mixing C++ and Java catches in a single translation unit");
373 state = gave_error;
374 }
375
376 /* Wrap EXPR in a MUST_NOT_THROW_EXPR expressing that EXPR must
377 not throw any exceptions if COND is true. A condition of
378 NULL_TREE is treated as 'true'. */
379
380 tree
381 build_must_not_throw_expr (tree body, tree cond)
382 {
383 tree type = body ? TREE_TYPE (body) : void_type_node;
384
385 if (cond && !value_dependent_expression_p (cond))
386 {
387 cond = cxx_constant_value (cond);
388 if (integer_zerop (cond))
389 return body;
390 else if (integer_onep (cond))
391 cond = NULL_TREE;
392 }
393
394 return build2 (MUST_NOT_THROW_EXPR, type, body, cond);
395 }
396
397
398 /* Initialize the catch parameter DECL. */
399
400 static void
401 initialize_handler_parm (tree decl, tree exp)
402 {
403 tree init;
404 tree init_type;
405
406 /* Make sure we mark the catch param as used, otherwise we'll get a
407 warning about an unused ((anonymous)). */
408 TREE_USED (decl) = 1;
409 DECL_READ_P (decl) = 1;
410
411 /* Figure out the type that the initializer is. Pointers are returned
412 adjusted by value from __cxa_begin_catch. Others are returned by
413 reference. */
414 init_type = TREE_TYPE (decl);
415 if (!POINTER_TYPE_P (init_type))
416 init_type = build_reference_type (init_type);
417
418 choose_personality_routine (decl_is_java_type (init_type, 0)
419 ? lang_java : lang_cplusplus);
420
421 /* Since pointers are passed by value, initialize a reference to
422 pointer catch parm with the address of the temporary. */
423 if (TREE_CODE (init_type) == REFERENCE_TYPE
424 && TYPE_PTR_P (TREE_TYPE (init_type)))
425 exp = cp_build_addr_expr (exp, tf_warning_or_error);
426
427 exp = ocp_convert (init_type, exp, CONV_IMPLICIT|CONV_FORCE_TEMP, 0,
428 tf_warning_or_error);
429
430 init = convert_from_reference (exp);
431
432 /* If the constructor for the catch parm exits via an exception, we
433 must call terminate. See eh23.C. */
434 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
435 {
436 /* Generate the copy constructor call directly so we can wrap it.
437 See also expand_default_init. */
438 init = ocp_convert (TREE_TYPE (decl), init,
439 CONV_IMPLICIT|CONV_FORCE_TEMP, 0,
440 tf_warning_or_error);
441 /* Force cleanups now to avoid nesting problems with the
442 MUST_NOT_THROW_EXPR. */
443 init = fold_build_cleanup_point_expr (TREE_TYPE (init), init);
444 init = build_must_not_throw_expr (init, NULL_TREE);
445 }
446
447 decl = pushdecl (decl);
448
449 start_decl_1 (decl, true);
450 cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE,
451 LOOKUP_ONLYCONVERTING|DIRECT_BIND);
452 }
453
454 \f
455 /* Routine to see if exception handling is turned on.
456 DO_WARN is nonzero if we want to inform the user that exception
457 handling is turned off.
458
459 This is used to ensure that -fexceptions has been specified if the
460 compiler tries to use any exception-specific functions. */
461
462 static inline int
463 doing_eh (void)
464 {
465 if (! flag_exceptions)
466 {
467 static int warned = 0;
468 if (! warned)
469 {
470 error ("exception handling disabled, use -fexceptions to enable");
471 warned = 1;
472 }
473 return 0;
474 }
475 return 1;
476 }
477
478 /* Call this to start a catch block. DECL is the catch parameter. */
479
480 tree
481 expand_start_catch_block (tree decl)
482 {
483 tree exp;
484 tree type, init;
485
486 if (! doing_eh ())
487 return NULL_TREE;
488
489 if (decl)
490 {
491 if (!is_admissible_throw_operand_or_catch_parameter (decl, false))
492 decl = error_mark_node;
493
494 type = prepare_eh_type (TREE_TYPE (decl));
495 }
496 else
497 type = NULL_TREE;
498
499 if (decl && decl_is_java_type (type, 1))
500 {
501 /* Java only passes object via pointer and doesn't require
502 adjusting. The java object is immediately before the
503 generic exception header. */
504 exp = build_exc_ptr ();
505 exp = build1 (NOP_EXPR, build_pointer_type (type), exp);
506 exp = fold_build_pointer_plus (exp,
507 fold_build1_loc (input_location,
508 NEGATE_EXPR, sizetype,
509 TYPE_SIZE_UNIT (TREE_TYPE (exp))));
510 exp = cp_build_indirect_ref (exp, RO_NULL, tf_warning_or_error);
511 initialize_handler_parm (decl, exp);
512 return type;
513 }
514
515 /* Call __cxa_end_catch at the end of processing the exception. */
516 push_eh_cleanup (type);
517
518 init = do_begin_catch ();
519
520 /* If there's no decl at all, then all we need to do is make sure
521 to tell the runtime that we've begun handling the exception. */
522 if (decl == NULL || decl == error_mark_node || init == error_mark_node)
523 finish_expr_stmt (init);
524
525 /* If the C++ object needs constructing, we need to do that before
526 calling __cxa_begin_catch, so that std::uncaught_exception gets
527 the right value during the copy constructor. */
528 else if (flag_use_cxa_get_exception_ptr
529 && TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
530 {
531 exp = do_get_exception_ptr ();
532 initialize_handler_parm (decl, exp);
533 finish_expr_stmt (init);
534 }
535
536 /* Otherwise the type uses a bitwise copy, and we don't have to worry
537 about the value of std::uncaught_exception and therefore can do the
538 copy with the return value of __cxa_end_catch instead. */
539 else
540 {
541 tree init_type = type;
542
543 /* Pointers are passed by values, everything else by reference. */
544 if (!TYPE_PTR_P (type))
545 init_type = build_pointer_type (type);
546 if (init_type != TREE_TYPE (init))
547 init = build1 (NOP_EXPR, init_type, init);
548 exp = create_temporary_var (init_type);
549 DECL_REGISTER (exp) = 1;
550 cp_finish_decl (exp, init, /*init_const_expr=*/false,
551 NULL_TREE, LOOKUP_ONLYCONVERTING);
552 initialize_handler_parm (decl, exp);
553 }
554
555 return type;
556 }
557
558
559 /* Call this to end a catch block. Its responsible for emitting the
560 code to handle jumping back to the correct place, and for emitting
561 the label to jump to if this catch block didn't match. */
562
563 void
564 expand_end_catch_block (void)
565 {
566 if (! doing_eh ())
567 return;
568
569 /* The exception being handled is rethrown if control reaches the end of
570 a handler of the function-try-block of a constructor or destructor. */
571 if (in_function_try_handler
572 && (DECL_CONSTRUCTOR_P (current_function_decl)
573 || DECL_DESTRUCTOR_P (current_function_decl)))
574 finish_expr_stmt (build_throw (NULL_TREE));
575 }
576
577 tree
578 begin_eh_spec_block (void)
579 {
580 tree r;
581 location_t spec_location = DECL_SOURCE_LOCATION (current_function_decl);
582
583 /* A noexcept specification (or throw() with -fnothrow-opt) is a
584 MUST_NOT_THROW_EXPR. */
585 if (TYPE_NOEXCEPT_P (TREE_TYPE (current_function_decl)))
586 {
587 r = build_stmt (spec_location, MUST_NOT_THROW_EXPR,
588 NULL_TREE, NULL_TREE);
589 TREE_SIDE_EFFECTS (r) = 1;
590 }
591 else
592 r = build_stmt (spec_location, EH_SPEC_BLOCK, NULL_TREE, NULL_TREE);
593 add_stmt (r);
594 TREE_OPERAND (r, 0) = push_stmt_list ();
595 return r;
596 }
597
598 void
599 finish_eh_spec_block (tree raw_raises, tree eh_spec_block)
600 {
601 tree raises;
602
603 TREE_OPERAND (eh_spec_block, 0)
604 = pop_stmt_list (TREE_OPERAND (eh_spec_block, 0));
605
606 if (TREE_CODE (eh_spec_block) == MUST_NOT_THROW_EXPR)
607 return;
608
609 /* Strip cv quals, etc, from the specification types. */
610 for (raises = NULL_TREE;
611 raw_raises && TREE_VALUE (raw_raises);
612 raw_raises = TREE_CHAIN (raw_raises))
613 {
614 tree type = prepare_eh_type (TREE_VALUE (raw_raises));
615 tree tinfo = eh_type_info (type);
616
617 mark_used (tinfo);
618 raises = tree_cons (NULL_TREE, type, raises);
619 }
620
621 EH_SPEC_RAISES (eh_spec_block) = raises;
622 }
623
624 /* Return a pointer to a buffer for an exception object of type TYPE. */
625
626 static tree
627 do_allocate_exception (tree type)
628 {
629 tree fn;
630
631 fn = get_identifier ("__cxa_allocate_exception");
632 if (!get_global_value_if_present (fn, &fn))
633 {
634 /* Declare void *__cxa_allocate_exception(size_t) throw(). */
635 fn = declare_nothrow_library_fn (fn, ptr_type_node, size_type_node);
636
637 if (flag_tm)
638 {
639 tree fn2 = get_identifier ("_ITM_cxa_allocate_exception");
640 if (!get_global_value_if_present (fn2, &fn2))
641 fn2 = declare_nothrow_library_fn (fn2, ptr_type_node,
642 size_type_node);
643 apply_tm_attr (fn2, get_identifier ("transaction_pure"));
644 record_tm_replacement (fn, fn2);
645 }
646 }
647
648 return cp_build_function_call_nary (fn, tf_warning_or_error,
649 size_in_bytes (type), NULL_TREE);
650 }
651
652 /* Call __cxa_free_exception from a cleanup. This is never invoked
653 directly, but see the comment for stabilize_throw_expr. */
654
655 static tree
656 do_free_exception (tree ptr)
657 {
658 tree fn;
659
660 fn = get_identifier ("__cxa_free_exception");
661 if (!get_global_value_if_present (fn, &fn))
662 {
663 /* Declare void __cxa_free_exception (void *) throw(). */
664 fn = declare_nothrow_library_fn (fn, void_type_node, ptr_type_node);
665 }
666
667 return cp_build_function_call_nary (fn, tf_warning_or_error, ptr, NULL_TREE);
668 }
669
670 /* Wrap all cleanups for TARGET_EXPRs in MUST_NOT_THROW_EXPR.
671 Called from build_throw via walk_tree_without_duplicates. */
672
673 static tree
674 wrap_cleanups_r (tree *tp, int *walk_subtrees, void * /*data*/)
675 {
676 tree exp = *tp;
677 tree cleanup;
678
679 /* Don't walk into types. */
680 if (TYPE_P (exp))
681 {
682 *walk_subtrees = 0;
683 return NULL_TREE;
684 }
685 if (TREE_CODE (exp) != TARGET_EXPR)
686 return NULL_TREE;
687
688 cleanup = TARGET_EXPR_CLEANUP (exp);
689 if (cleanup)
690 {
691 cleanup = build2 (MUST_NOT_THROW_EXPR, void_type_node, cleanup,
692 NULL_TREE);
693 TARGET_EXPR_CLEANUP (exp) = cleanup;
694 }
695
696 /* Keep iterating. */
697 return NULL_TREE;
698 }
699
700 /* Build a throw expression. */
701
702 tree
703 build_throw (tree exp)
704 {
705 tree fn;
706
707 if (exp == error_mark_node)
708 return exp;
709
710 if (processing_template_decl)
711 {
712 if (cfun)
713 current_function_returns_abnormally = 1;
714 exp = build_min (THROW_EXPR, void_type_node, exp);
715 SET_EXPR_LOCATION (exp, input_location);
716 return exp;
717 }
718
719 if (exp == null_node)
720 warning (0, "throwing NULL, which has integral, not pointer type");
721
722 if (exp != NULL_TREE)
723 {
724 if (!is_admissible_throw_operand_or_catch_parameter (exp, true))
725 return error_mark_node;
726 }
727
728 if (! doing_eh ())
729 return error_mark_node;
730
731 if (exp && decl_is_java_type (TREE_TYPE (exp), 1))
732 {
733 tree fn = get_identifier ("_Jv_Throw");
734 if (!get_global_value_if_present (fn, &fn))
735 {
736 /* Declare void _Jv_Throw (void *). */
737 tree tmp;
738 tmp = build_function_type_list (ptr_type_node,
739 ptr_type_node, NULL_TREE);
740 fn = push_throw_library_fn (fn, tmp);
741 }
742 else if (really_overloaded_fn (fn))
743 {
744 error ("%qD should never be overloaded", fn);
745 return error_mark_node;
746 }
747 fn = OVL_CURRENT (fn);
748 exp = cp_build_function_call_nary (fn, tf_warning_or_error,
749 exp, NULL_TREE);
750 }
751 else if (exp)
752 {
753 tree throw_type;
754 tree temp_type;
755 tree cleanup;
756 tree object, ptr;
757 tree tmp;
758 tree allocate_expr;
759
760 /* The CLEANUP_TYPE is the internal type of a destructor. */
761 if (!cleanup_type)
762 {
763 tmp = build_function_type_list (void_type_node,
764 ptr_type_node, NULL_TREE);
765 cleanup_type = build_pointer_type (tmp);
766 }
767
768 fn = get_identifier ("__cxa_throw");
769 if (!get_global_value_if_present (fn, &fn))
770 {
771 /* Declare void __cxa_throw (void*, void*, void (*)(void*)). */
772 /* ??? Second argument is supposed to be "std::type_info*". */
773 tmp = build_function_type_list (void_type_node,
774 ptr_type_node, ptr_type_node,
775 cleanup_type, NULL_TREE);
776 fn = push_throw_library_fn (fn, tmp);
777
778 if (flag_tm)
779 {
780 tree fn2 = get_identifier ("_ITM_cxa_throw");
781 if (!get_global_value_if_present (fn2, &fn2))
782 fn2 = push_throw_library_fn (fn2, tmp);
783 apply_tm_attr (fn2, get_identifier ("transaction_pure"));
784 record_tm_replacement (fn, fn2);
785 }
786 }
787
788 /* [except.throw]
789
790 A throw-expression initializes a temporary object, the type
791 of which is determined by removing any top-level
792 cv-qualifiers from the static type of the operand of throw
793 and adjusting the type from "array of T" or "function return
794 T" to "pointer to T" or "pointer to function returning T"
795 respectively. */
796 temp_type = is_bitfield_expr_with_lowered_type (exp);
797 if (!temp_type)
798 temp_type = cv_unqualified (type_decays_to (TREE_TYPE (exp)));
799
800 /* OK, this is kind of wacky. The standard says that we call
801 terminate when the exception handling mechanism, after
802 completing evaluation of the expression to be thrown but
803 before the exception is caught (_except.throw_), calls a
804 user function that exits via an uncaught exception.
805
806 So we have to protect the actual initialization of the
807 exception object with terminate(), but evaluate the
808 expression first. Since there could be temps in the
809 expression, we need to handle that, too. We also expand
810 the call to __cxa_allocate_exception first (which doesn't
811 matter, since it can't throw). */
812
813 /* Allocate the space for the exception. */
814 allocate_expr = do_allocate_exception (temp_type);
815 allocate_expr = get_target_expr (allocate_expr);
816 ptr = TARGET_EXPR_SLOT (allocate_expr);
817 TARGET_EXPR_CLEANUP (allocate_expr) = do_free_exception (ptr);
818 CLEANUP_EH_ONLY (allocate_expr) = 1;
819
820 object = build_nop (build_pointer_type (temp_type), ptr);
821 object = cp_build_indirect_ref (object, RO_NULL, tf_warning_or_error);
822
823 /* And initialize the exception object. */
824 if (CLASS_TYPE_P (temp_type))
825 {
826 int flags = LOOKUP_NORMAL | LOOKUP_ONLYCONVERTING;
827 vec<tree, va_gc> *exp_vec;
828
829 /* Under C++0x [12.8/16 class.copy], a thrown lvalue is sometimes
830 treated as an rvalue for the purposes of overload resolution
831 to favor move constructors over copy constructors. */
832 if (/* Must be a local, automatic variable. */
833 TREE_CODE (exp) == VAR_DECL
834 && DECL_CONTEXT (exp) == current_function_decl
835 && ! TREE_STATIC (exp)
836 /* The variable must not have the `volatile' qualifier. */
837 && !(cp_type_quals (TREE_TYPE (exp)) & TYPE_QUAL_VOLATILE))
838 flags = flags | LOOKUP_PREFER_RVALUE;
839
840 /* Call the copy constructor. */
841 exp_vec = make_tree_vector_single (exp);
842 exp = (build_special_member_call
843 (object, complete_ctor_identifier, &exp_vec,
844 TREE_TYPE (object), flags, tf_warning_or_error));
845 release_tree_vector (exp_vec);
846 if (exp == error_mark_node)
847 {
848 error (" in thrown expression");
849 return error_mark_node;
850 }
851 }
852 else
853 {
854 tmp = decay_conversion (exp, tf_warning_or_error);
855 if (tmp == error_mark_node)
856 return error_mark_node;
857 exp = build2 (INIT_EXPR, temp_type, object, tmp);
858 }
859
860 /* Mark any cleanups from the initialization as MUST_NOT_THROW, since
861 they are run after the exception object is initialized. */
862 cp_walk_tree_without_duplicates (&exp, wrap_cleanups_r, 0);
863
864 /* Prepend the allocation. */
865 exp = build2 (COMPOUND_EXPR, TREE_TYPE (exp), allocate_expr, exp);
866
867 /* Force all the cleanups to be evaluated here so that we don't have
868 to do them during unwinding. */
869 exp = build1 (CLEANUP_POINT_EXPR, void_type_node, exp);
870
871 throw_type = build_eh_type_type (prepare_eh_type (TREE_TYPE (object)));
872
873 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (object)))
874 {
875 cleanup = lookup_fnfields (TYPE_BINFO (TREE_TYPE (object)),
876 complete_dtor_identifier, 0);
877 cleanup = BASELINK_FUNCTIONS (cleanup);
878 mark_used (cleanup);
879 cxx_mark_addressable (cleanup);
880 /* Pretend it's a normal function. */
881 cleanup = build1 (ADDR_EXPR, cleanup_type, cleanup);
882 }
883 else
884 cleanup = build_int_cst (cleanup_type, 0);
885
886 /* ??? Indicate that this function call throws throw_type. */
887 tmp = cp_build_function_call_nary (fn, tf_warning_or_error,
888 ptr, throw_type, cleanup, NULL_TREE);
889
890 /* Tack on the initialization stuff. */
891 exp = build2 (COMPOUND_EXPR, TREE_TYPE (tmp), exp, tmp);
892 }
893 else
894 {
895 /* Rethrow current exception. */
896
897 tree fn = get_identifier ("__cxa_rethrow");
898 if (!get_global_value_if_present (fn, &fn))
899 {
900 /* Declare void __cxa_rethrow (void). */
901 fn = push_throw_library_fn
902 (fn, build_function_type_list (void_type_node, NULL_TREE));
903 }
904
905 if (flag_tm)
906 apply_tm_attr (fn, get_identifier ("transaction_pure"));
907
908 /* ??? Indicate that this function call allows exceptions of the type
909 of the enclosing catch block (if known). */
910 exp = cp_build_function_call_vec (fn, NULL, tf_warning_or_error);
911 }
912
913 exp = build1 (THROW_EXPR, void_type_node, exp);
914 SET_EXPR_LOCATION (exp, input_location);
915
916 return exp;
917 }
918
919 /* Make sure TYPE is complete, pointer to complete, reference to
920 complete, or pointer to cv void. Issue diagnostic on failure.
921 Return the zero on failure and nonzero on success. FROM can be
922 the expr or decl from whence TYPE came, if available. */
923
924 static int
925 complete_ptr_ref_or_void_ptr_p (tree type, tree from)
926 {
927 int is_ptr;
928
929 /* Check complete. */
930 type = complete_type_or_else (type, from);
931 if (!type)
932 return 0;
933
934 /* Or a pointer or ref to one, or cv void *. */
935 is_ptr = TREE_CODE (type) == POINTER_TYPE;
936 if (is_ptr || TREE_CODE (type) == REFERENCE_TYPE)
937 {
938 tree core = TREE_TYPE (type);
939
940 if (is_ptr && VOID_TYPE_P (core))
941 /* OK */;
942 else if (!complete_type_or_else (core, from))
943 return 0;
944 }
945 return 1;
946 }
947
948 /* If IS_THROW is true return truth-value if T is an expression admissible
949 in throw-expression, i.e. if it is not of incomplete type or a pointer/
950 reference to such a type or of an abstract class type.
951 If IS_THROW is false, likewise for a catch parameter, same requirements
952 for its type plus rvalue reference type is also not admissible. */
953
954 static bool
955 is_admissible_throw_operand_or_catch_parameter (tree t, bool is_throw)
956 {
957 tree expr = is_throw ? t : NULL_TREE;
958 tree type = TREE_TYPE (t);
959
960 /* C++11 [except.handle] The exception-declaration shall not denote
961 an incomplete type, an abstract class type, or an rvalue reference
962 type. */
963
964 /* 15.1/4 [...] The type of the throw-expression shall not be an
965 incomplete type, or a pointer or a reference to an incomplete
966 type, other than void*, const void*, volatile void*, or
967 const volatile void*. Except for these restriction and the
968 restrictions on type matching mentioned in 15.3, the operand
969 of throw is treated exactly as a function argument in a call
970 (5.2.2) or the operand of a return statement. */
971 if (!complete_ptr_ref_or_void_ptr_p (type, expr))
972 return false;
973
974 /* 10.4/3 An abstract class shall not be used as a parameter type,
975 as a function return type or as type of an explicit
976 conversion. */
977 else if (ABSTRACT_CLASS_TYPE_P (type))
978 {
979 if (is_throw)
980 error ("expression %qE of abstract class type %qT cannot "
981 "be used in throw-expression", expr, type);
982 else
983 error ("cannot declare catch parameter to be of abstract "
984 "class type %qT", type);
985 return false;
986 }
987 else if (!is_throw
988 && TREE_CODE (type) == REFERENCE_TYPE
989 && TYPE_REF_IS_RVALUE (type))
990 {
991 error ("cannot declare catch parameter to be of rvalue "
992 "reference type %qT", type);
993 return false;
994 }
995
996 return true;
997 }
998
999 /* Returns nonzero if FN is a declaration of a standard C library
1000 function which is known not to throw.
1001
1002 [lib.res.on.exception.handling]: None of the functions from the
1003 Standard C library shall report an error by throwing an
1004 exception, unless it calls a program-supplied function that
1005 throws an exception. */
1006
1007 #include "cfns.h"
1008
1009 int
1010 nothrow_libfn_p (const_tree fn)
1011 {
1012 tree id;
1013
1014 if (TREE_PUBLIC (fn)
1015 && DECL_EXTERNAL (fn)
1016 && DECL_NAMESPACE_SCOPE_P (fn)
1017 && DECL_EXTERN_C_P (fn))
1018 /* OK */;
1019 else
1020 /* Can't be a C library function. */
1021 return 0;
1022
1023 /* Being a C library function, DECL_ASSEMBLER_NAME == DECL_NAME
1024 unless the system headers are playing rename tricks, and if
1025 they are, we don't want to be confused by them. */
1026 id = DECL_NAME (fn);
1027 return !!libc_name_p (IDENTIFIER_POINTER (id), IDENTIFIER_LENGTH (id));
1028 }
1029
1030 /* Returns nonzero if an exception of type FROM will be caught by a
1031 handler for type TO, as per [except.handle]. */
1032
1033 static int
1034 can_convert_eh (tree to, tree from)
1035 {
1036 to = non_reference (to);
1037 from = non_reference (from);
1038
1039 if (TREE_CODE (to) == POINTER_TYPE && TREE_CODE (from) == POINTER_TYPE)
1040 {
1041 to = TREE_TYPE (to);
1042 from = TREE_TYPE (from);
1043
1044 if (! at_least_as_qualified_p (to, from))
1045 return 0;
1046
1047 if (TREE_CODE (to) == VOID_TYPE)
1048 return 1;
1049
1050 /* Else fall through. */
1051 }
1052
1053 if (CLASS_TYPE_P (to) && CLASS_TYPE_P (from)
1054 && publicly_uniquely_derived_p (to, from))
1055 return 1;
1056
1057 return 0;
1058 }
1059
1060 /* Check whether any of the handlers in I are shadowed by another handler
1061 accepting TYPE. Note that the shadowing may not be complete; even if
1062 an exception of type B would be caught by a handler for A, there could
1063 be a derived class C for which A is an ambiguous base but B is not, so
1064 the handler for B would catch an exception of type C. */
1065
1066 static void
1067 check_handlers_1 (tree master, tree_stmt_iterator i)
1068 {
1069 tree type = TREE_TYPE (master);
1070
1071 for (; !tsi_end_p (i); tsi_next (&i))
1072 {
1073 tree handler = tsi_stmt (i);
1074 if (TREE_TYPE (handler) && can_convert_eh (type, TREE_TYPE (handler)))
1075 {
1076 warning_at (EXPR_LOCATION (handler), 0,
1077 "exception of type %qT will be caught",
1078 TREE_TYPE (handler));
1079 warning_at (EXPR_LOCATION (master), 0,
1080 " by earlier handler for %qT", type);
1081 break;
1082 }
1083 }
1084 }
1085
1086 /* Given a STATEMENT_LIST of HANDLERs, make sure that they're OK. */
1087
1088 void
1089 check_handlers (tree handlers)
1090 {
1091 tree_stmt_iterator i;
1092
1093 /* If we don't have a STATEMENT_LIST, then we've just got one
1094 handler, and thus nothing to warn about. */
1095 if (TREE_CODE (handlers) != STATEMENT_LIST)
1096 return;
1097
1098 i = tsi_start (handlers);
1099 if (!tsi_end_p (i))
1100 while (1)
1101 {
1102 tree handler = tsi_stmt (i);
1103 tsi_next (&i);
1104
1105 /* No more handlers; nothing to shadow. */
1106 if (tsi_end_p (i))
1107 break;
1108 if (TREE_TYPE (handler) == NULL_TREE)
1109 permerror (EXPR_LOCATION (handler), "%<...%>"
1110 " handler must be the last handler for its try block");
1111 else
1112 check_handlers_1 (handler, i);
1113 }
1114 }
1115
1116 /* walk_tree helper for finish_noexcept_expr. Returns non-null if the
1117 expression *TP causes the noexcept operator to evaluate to false.
1118
1119 5.3.7 [expr.noexcept]: The result of the noexcept operator is false if
1120 in a potentially-evaluated context the expression would contain
1121 * a potentially evaluated call to a function, member function,
1122 function pointer, or member function pointer that does not have a
1123 non-throwing exception-specification (15.4),
1124 * a potentially evaluated throw-expression (15.1),
1125 * a potentially evaluated dynamic_cast expression dynamic_cast<T>(v),
1126 where T is a reference type, that requires a run-time check (5.2.7), or
1127 * a potentially evaluated typeid expression (5.2.8) applied to a glvalue
1128 expression whose type is a polymorphic class type (10.3). */
1129
1130 static tree
1131 check_noexcept_r (tree *tp, int * /*walk_subtrees*/, void * /*data*/)
1132 {
1133 tree t = *tp;
1134 enum tree_code code = TREE_CODE (t);
1135 if (code == CALL_EXPR
1136 || code == AGGR_INIT_EXPR)
1137 {
1138 /* We can only use the exception specification of the called function
1139 for determining the value of a noexcept expression; we can't use
1140 TREE_NOTHROW, as it might have a different value in another
1141 translation unit, creating ODR problems.
1142
1143 We could use TREE_NOTHROW (t) for !TREE_PUBLIC fns, though... */
1144 tree fn = (code == AGGR_INIT_EXPR
1145 ? AGGR_INIT_EXPR_FN (t) : CALL_EXPR_FN (t));
1146 tree type = TREE_TYPE (TREE_TYPE (fn));
1147
1148 STRIP_NOPS (fn);
1149 if (TREE_CODE (fn) == ADDR_EXPR)
1150 fn = TREE_OPERAND (fn, 0);
1151 if (TREE_CODE (fn) == FUNCTION_DECL)
1152 {
1153 /* We do use TREE_NOTHROW for ABI internals like __dynamic_cast,
1154 and for C library functions known not to throw. */
1155 if (DECL_EXTERN_C_P (fn)
1156 && (DECL_ARTIFICIAL (fn)
1157 || nothrow_libfn_p (fn)))
1158 return TREE_NOTHROW (fn) ? NULL_TREE : fn;
1159 /* A call to a constexpr function is noexcept if the call
1160 is a constant expression. */
1161 if (DECL_DECLARED_CONSTEXPR_P (fn)
1162 && is_sub_constant_expr (t))
1163 return NULL_TREE;
1164 }
1165 if (!TYPE_NOTHROW_P (type))
1166 return fn;
1167 }
1168
1169 return NULL_TREE;
1170 }
1171
1172 /* If a function that causes a noexcept-expression to be false isn't
1173 defined yet, remember it and check it for TREE_NOTHROW again at EOF. */
1174
1175 typedef struct GTY(()) pending_noexcept {
1176 tree fn;
1177 location_t loc;
1178 } pending_noexcept;
1179 static GTY(()) vec<pending_noexcept, va_gc> *pending_noexcept_checks;
1180
1181 /* FN is a FUNCTION_DECL that caused a noexcept-expr to be false. Warn if
1182 it can't throw. */
1183
1184 static void
1185 maybe_noexcept_warning (tree fn)
1186 {
1187 if (TREE_NOTHROW (fn))
1188 {
1189 warning (OPT_Wnoexcept, "noexcept-expression evaluates to %<false%> "
1190 "because of a call to %qD", fn);
1191 warning (OPT_Wnoexcept, "but %q+D does not throw; perhaps "
1192 "it should be declared %<noexcept%>", fn);
1193 }
1194 }
1195
1196 /* Check any functions that weren't defined earlier when they caused a
1197 noexcept expression to evaluate to false. */
1198
1199 void
1200 perform_deferred_noexcept_checks (void)
1201 {
1202 int i;
1203 pending_noexcept *p;
1204 location_t saved_loc = input_location;
1205 FOR_EACH_VEC_SAFE_ELT (pending_noexcept_checks, i, p)
1206 {
1207 input_location = p->loc;
1208 maybe_noexcept_warning (p->fn);
1209 }
1210 input_location = saved_loc;
1211 }
1212
1213 /* Evaluate noexcept ( EXPR ). */
1214
1215 tree
1216 finish_noexcept_expr (tree expr, tsubst_flags_t complain)
1217 {
1218 if (expr == error_mark_node)
1219 return error_mark_node;
1220
1221 if (processing_template_decl)
1222 return build_min (NOEXCEPT_EXPR, boolean_type_node, expr);
1223
1224 return (expr_noexcept_p (expr, complain)
1225 ? boolean_true_node : boolean_false_node);
1226 }
1227
1228 /* Returns whether EXPR is noexcept, possibly warning if allowed by
1229 COMPLAIN. */
1230
1231 bool
1232 expr_noexcept_p (tree expr, tsubst_flags_t complain)
1233 {
1234 tree fn;
1235
1236 if (expr == error_mark_node)
1237 return false;
1238
1239 fn = cp_walk_tree_without_duplicates (&expr, check_noexcept_r, 0);
1240 if (fn)
1241 {
1242 if ((complain & tf_warning) && warn_noexcept
1243 && TREE_CODE (fn) == FUNCTION_DECL)
1244 {
1245 if (!DECL_INITIAL (fn))
1246 {
1247 /* Not defined yet; check again at EOF. */
1248 pending_noexcept p = {fn, input_location};
1249 vec_safe_push (pending_noexcept_checks, p);
1250 }
1251 else
1252 maybe_noexcept_warning (fn);
1253 }
1254 return false;
1255 }
1256 else
1257 return true;
1258 }
1259
1260 /* Return true iff SPEC is throw() or noexcept(true). */
1261
1262 bool
1263 nothrow_spec_p (const_tree spec)
1264 {
1265 gcc_assert (!DEFERRED_NOEXCEPT_SPEC_P (spec));
1266 if (spec == NULL_TREE
1267 || TREE_VALUE (spec) != NULL_TREE
1268 || spec == noexcept_false_spec)
1269 return false;
1270 if (TREE_PURPOSE (spec) == NULL_TREE
1271 || spec == noexcept_true_spec)
1272 return true;
1273 gcc_assert (processing_template_decl
1274 || TREE_PURPOSE (spec) == error_mark_node);
1275 return false;
1276 }
1277
1278 /* For FUNCTION_TYPE or METHOD_TYPE, true if NODE is noexcept. This is the
1279 case for things declared noexcept(true) and, with -fnothrow-opt, for
1280 throw() functions. */
1281
1282 bool
1283 type_noexcept_p (const_tree type)
1284 {
1285 tree spec = TYPE_RAISES_EXCEPTIONS (type);
1286 gcc_assert (!DEFERRED_NOEXCEPT_SPEC_P (spec));
1287 if (flag_nothrow_opt)
1288 return nothrow_spec_p (spec);
1289 else
1290 return spec == noexcept_true_spec;
1291 }
1292
1293 /* For FUNCTION_TYPE or METHOD_TYPE, true if NODE can throw any type,
1294 i.e. no exception-specification or noexcept(false). */
1295
1296 bool
1297 type_throw_all_p (const_tree type)
1298 {
1299 tree spec = TYPE_RAISES_EXCEPTIONS (type);
1300 gcc_assert (!DEFERRED_NOEXCEPT_SPEC_P (spec));
1301 return spec == NULL_TREE || spec == noexcept_false_spec;
1302 }
1303
1304 /* Create a representation of the noexcept-specification with
1305 constant-expression of EXPR. COMPLAIN is as for tsubst. */
1306
1307 tree
1308 build_noexcept_spec (tree expr, int complain)
1309 {
1310 /* This isn't part of the signature, so don't bother trying to evaluate
1311 it until instantiation. */
1312 if (!processing_template_decl && TREE_CODE (expr) != DEFERRED_NOEXCEPT)
1313 {
1314 expr = perform_implicit_conversion_flags (boolean_type_node, expr,
1315 complain,
1316 LOOKUP_NORMAL);
1317 expr = cxx_constant_value (expr);
1318 }
1319 if (expr == boolean_true_node)
1320 return noexcept_true_spec;
1321 else if (expr == boolean_false_node)
1322 return noexcept_false_spec;
1323 else if (expr == error_mark_node)
1324 return error_mark_node;
1325 else
1326 {
1327 gcc_assert (processing_template_decl || expr == error_mark_node
1328 || TREE_CODE (expr) == DEFERRED_NOEXCEPT);
1329 return build_tree_list (expr, NULL_TREE);
1330 }
1331 }
1332
1333 #include "gt-cp-except.h"