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