except.h 7.33 KB
Newer Older
Mike Stump committed
1
/* Exception Handling interface routines.
2 3
   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001
   Free Software Foundation, Inc.
Mike Stump committed
4 5
   Contributed by Mike Stump <mrs@cygnus.com>.

6
This file is part of GCC.
Mike Stump committed
7

8 9 10 11
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2, or (at your option) any later
version.
Mike Stump committed
12

13 14 15 16
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.
Mike Stump committed
17 18

You should have received a copy of the GNU General Public License
19 20 21
along with GCC; see the file COPYING.  If not, write to the Free
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.  */
Mike Stump committed
22

23

24 25 26
#ifndef TREE_CODE
union tree_node;
#define tree union tree_node *
27
#endif
Mike Stump committed
28

29 30 31
#ifndef RTX_CODE
struct rtx_def;
#define rtx struct rtx_def *
Mike Stump committed
32 33
#endif

34
#ifndef GCC_VARRAY_H
35 36
struct varray_head_tag;
#define varray_type struct varray_head_tag *
37 38
#endif

Richard Kenner committed
39

40 41 42
/* Per-function EH data.  Used only in except.c, but GC and others
   manipulate pointers to the opaque type.  */
struct eh_status;
Richard Kenner committed
43

44 45
/* Internal structure describing a region.  */
struct eh_region;
46

47 48
/* Test: is exception handling turned on?  */
extern int doing_eh			        PARAMS ((int));
49

50 51 52 53
/* Start an exception handling region.  All instructions emitted after
   this point are considered to be part of the region until an
   expand_eh_region_end variant is invoked.  */
extern void expand_eh_region_start		PARAMS ((void));
54

55 56 57
/* End an exception handling region for a cleanup.  HANDLER is an
   expression to expand for the cleanup.  */
extern void expand_eh_region_end_cleanup	PARAMS ((tree));
58

59 60 61
/* End an exception handling region for a try block, and prepares
   for subsequent calls to expand_start_catch.  */
extern void expand_start_all_catch		PARAMS ((void));
Richard Kenner committed
62

63
/* Begin a catch clause.  TYPE is an object to be matched by the
64 65
   runtime, or a list of such objects, or null if this is a catch-all
   clause.  */
66
extern void expand_start_catch			PARAMS ((tree));
Richard Kenner committed
67

68 69
/* End a catch clause.  Control will resume after the try/catch block.  */
extern void expand_end_catch			PARAMS ((void));
Richard Kenner committed
70

71 72
/* End a sequence of catch handlers for a try block.  */
extern void expand_end_all_catch		PARAMS ((void));
Richard Kenner committed
73

74 75
/* End an exception region for an exception type filter.  ALLOWED is a
   TREE_LIST of TREE_VALUE objects to be matched by the runtime.
76
   FAILURE is a function to invoke if a mismatch occurs.  */
77
extern void expand_eh_region_end_allowed	PARAMS ((tree, tree));
Richard Kenner committed
78

79 80 81
/* End an exception region for a must-not-throw filter.  FAILURE is a
   function to invoke if an uncaught exception propagates this far.  */
extern void expand_eh_region_end_must_not_throw	PARAMS ((tree));
Richard Kenner committed
82

83 84 85 86
/* End an exception region for a throw.  No handling goes on here,
   but it's the easiest way for the front-end to indicate what type
   is being thrown.  */
extern void expand_eh_region_end_throw		PARAMS ((tree));
Richard Kenner committed
87

88 89 90 91
/* End a fixup region.  Within this region the cleanups for the immediately
   enclosing region are _not_ run.  This is used for goto cleanup to avoid
   destroying an object twice.  */
extern void expand_eh_region_end_fixup		PARAMS ((tree));
Richard Kenner committed
92

93 94
/* Begin a region that will contain entries created with
   add_partial_entry.  */
95
extern void begin_protect_partials              PARAMS ((void));
96

Richard Kenner committed
97
/* Create a new exception region and add the handler for the region
98 99 100
   onto a list. These regions will be ended (and their handlers emitted)
   when end_protect_partials is invoked.  */
extern void add_partial_entry			PARAMS ((tree));
Richard Kenner committed
101 102

/* End all of the pending exception regions that have handlers added with
103
   add_partial_entry.  */
104
extern void end_protect_partials		PARAMS ((void));
Richard Kenner committed
105 106


107
/* A list of labels used for exception handlers.  */
Mike Stump committed
108 109
extern rtx exception_handler_labels;

110
/* Determine if the given INSN can throw an exception.  */
111 112
extern bool can_throw_internal			PARAMS ((rtx));
extern bool can_throw_external			PARAMS ((rtx));
113

114
/* Return nonzero if nothing in this function can throw.  */
115
extern bool nothrow_function_p			PARAMS ((void));
116

117 118 119
/* After initial rtl generation, call back to finish generating
   exception support code.  */
extern void finish_eh_generation		PARAMS ((void));
120

121 122
extern void init_eh				PARAMS ((void));
extern void init_eh_for_function		PARAMS ((void));
Richard Kenner committed
123

124 125
extern rtx reachable_handlers			PARAMS ((rtx));
extern void maybe_remove_eh_handler		PARAMS ((rtx));
126

127 128 129 130
extern void convert_from_eh_region_ranges	PARAMS ((void));
extern void convert_to_eh_region_ranges		PARAMS ((void));
extern void find_exception_handler_labels	PARAMS ((void));
extern void output_function_exception_table	PARAMS ((void));
Teemu Torma committed
131

132 133 134
extern void expand_builtin_unwind_init		PARAMS ((void));
extern rtx expand_builtin_eh_return_data_regno	PARAMS ((tree));
extern rtx expand_builtin_extract_return_addr	PARAMS ((tree));
135
extern void expand_builtin_init_dwarf_reg_sizes PARAMS ((tree));
136
extern rtx expand_builtin_frob_return_addr	PARAMS ((tree));
137
extern rtx expand_builtin_dwarf_fp_regnum	PARAMS ((void));
138 139
extern void expand_builtin_eh_return		PARAMS ((tree, tree));
extern void expand_eh_return			PARAMS ((void));
140

141
extern rtx get_exception_pointer		PARAMS ((struct function *));
142

143 144 145 146
struct function;
struct inline_remap;
extern int duplicate_eh_regions		PARAMS ((struct function *,
						 struct inline_remap *));
147

148
extern void sjlj_emit_function_exit_after	PARAMS ((rtx));
149

150

151
/* If non-NULL, this is a function that returns an expression to be
152
   executed if an unhandled exception is propagated out of a cleanup
153 154 155 156 157
   region.  For example, in C++, an exception thrown by a destructor
   during stack unwinding is required to result in a call to
   `std::terminate', so the C++ version of this function returns a
   CALL_EXPR for `std::terminate'.  */
extern tree (*lang_protect_cleanup_actions) PARAMS ((void));
158

159
/* Return true if type A catches type B.  */
160
extern int (*lang_eh_type_covers) PARAMS ((tree a, tree b));
161

162
/* Map a type to a runtime object to match type.  */
163
extern tree (*lang_eh_runtime_type) PARAMS ((tree));
164

165 166
#ifndef TREE_CODE
#undef tree
167
#endif
Jason Merrill committed
168

169 170
#ifndef RTX_CODE
#undef rtx
Kaveh R. Ghazi committed
171 172
#endif

173
#ifndef GCC_VARRAY_H
174
#undef varray_type
Jason Merrill committed
175
#endif
176

177 178 179 180 181

/* Just because the user configured --with-sjlj-exceptions=no doesn't
   mean that we can use call frame exceptions.  Detect that the target
   has appropriate support.  */

182 183
#if ! (defined (EH_RETURN_DATA_REGNO)			\
       && (defined (IA64_UNWIND_INFO)			\
184
	   || (DWARF2_UNWIND_INFO			\
185 186 187
	       && defined (EH_RETURN_STACKADJ_RTX)	\
	       && (defined (EH_RETURN_HANDLER_RTX)	\
		   || defined (HAVE_eh_return)))))
188 189 190 191 192
#define MUST_USE_SJLJ_EXCEPTIONS	1
#else
#define MUST_USE_SJLJ_EXCEPTIONS	0
#endif

193 194 195 196 197 198
#ifdef CONFIG_SJLJ_EXCEPTIONS
# if CONFIG_SJLJ_EXCEPTIONS == 1
#  define USING_SJLJ_EXCEPTIONS		1
# endif
# if CONFIG_SJLJ_EXCEPTIONS == 0
#  define USING_SJLJ_EXCEPTIONS		0
199 200 201 202 203 204 205 206 207
#  ifndef EH_RETURN_DATA_REGNO
    #error "EH_RETURN_DATA_REGNO required"
#  endif
#  ifndef EH_RETURN_STACKADJ_RTX
    #error "EH_RETURN_STACKADJ_RTX required"
#  endif
#  if !defined(EH_RETURN_HANDLER_RTX) && !defined(HAVE_eh_return)
    #error "EH_RETURN_HANDLER_RTX or eh_return required"
#  endif
208 209 210 211 212
#  if !defined(DWARF2_UNWIND_INFO) && !defined(IA64_UNWIND_INFO)
    #error "{DWARF2,IA64}_UNWIND_INFO required"
#  endif
# endif
#else
213
# define USING_SJLJ_EXCEPTIONS		MUST_USE_SJLJ_EXCEPTIONS
214
#endif