2 * msvcrt C++ exception handling
4 * Copyright 2002 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __MSVCRT_CPPEXCEPT_H
22 #define __MSVCRT_CPPEXCEPT_H
24 #include <pseh/pseh2.h>
26 #define CXX_FRAME_MAGIC_VC6 0x19930520
27 #define CXX_FRAME_MAGIC_VC7 0x19930521
28 #define CXX_FRAME_MAGIC_VC8 0x19930522
29 #define CXX_EXCEPTION 0xe06d7363
31 /* Macros to define assembler functions somewhat portably */
33 #define EH_NONCONTINUABLE 0x01
34 #define EH_UNWINDING 0x02
35 #define EH_EXIT_UNWIND 0x04
36 #define EH_STACK_INVALID 0x08
37 #define EH_NESTED_CALL 0x10
39 typedef void (*vtable_ptr
)();
41 /* type_info object, see cpp.c for inplementation */
42 typedef struct __type_info
44 const vtable_ptr
*vtable
;
45 char *name
; /* Unmangled name, allocated lazily */
46 char mangled
[32]; /* Variable length, but we declare it large enough for static RTTI */
49 /* exception object */
50 typedef struct __exception
52 const vtable_ptr
*vtable
;
53 char *name
; /* Name of this exception, always a new copy for each object */
54 int do_free
; /* Whether to free 'name' in our dtor */
57 /* the exception frame used by CxxFrameHandler */
58 typedef struct __cxx_exception_frame
60 EXCEPTION_REGISTRATION_RECORD frame
; /* the standard exception frame */
63 } cxx_exception_frame
;
65 /* info about a single catch {} block */
66 typedef struct __catchblock_info
68 UINT flags
; /* flags (see below) */
69 const type_info
*type_info
; /* C++ type caught by this block */
70 int offset
; /* stack offset to copy exception object to */
71 void (*handler
)(void);/* catch block handler code */
73 #define TYPE_FLAG_CONST 1
74 #define TYPE_FLAG_VOLATILE 2
75 #define TYPE_FLAG_REFERENCE 8
77 /* info about a single try {} block */
78 typedef struct __tryblock_info
80 int start_level
; /* start trylevel of that block */
81 int end_level
; /* end trylevel of that block */
82 int catch_level
; /* initial trylevel of the catch block */
83 int catchblock_count
; /* count of catch blocks in array */
84 const catchblock_info
*catchblock
; /* array of catch blocks */
87 /* info about the unwind handler for a given trylevel */
88 typedef struct __unwind_info
90 int prev
; /* prev trylevel unwind handler, to run after this one */
91 void (*handler
)(void);/* unwind handler */
94 /* descriptor of all try blocks of a given function */
95 typedef struct __cxx_function_descr
97 UINT magic
; /* must be CXX_FRAME_MAGIC */
98 UINT unwind_count
; /* number of unwind handlers */
99 const unwind_info
*unwind_table
; /* array of unwind handlers */
100 UINT tryblock_count
; /* number of try blocks */
101 const tryblock_info
*tryblock
; /* array of try blocks */
104 const void *expect_list
; /* expected exceptions list when magic >= VC7 */
105 UINT flags
; /* flags when magic >= VC8 */
106 } cxx_function_descr
;
108 #define FUNC_DESCR_SYNCHRONOUS 1 /* synchronous exceptions only (built with /EHs) */
110 typedef void (*cxx_copy_ctor
)(void);
112 /* offsets for computing the this pointer */
115 int this_offset
; /* offset of base class this pointer from start of object */
116 int vbase_descr
; /* offset of virtual base class descriptor */
117 int vbase_offset
; /* offset of this pointer offset in virtual base class descriptor */
120 /* complete information about a C++ type */
121 typedef struct __cxx_type_info
123 UINT flags
; /* flags (see CLASS_* flags below) */
124 const type_info
*type_info
; /* C++ type info */
125 this_ptr_offsets offsets
; /* offsets for computing the this pointer */
126 unsigned int size
; /* object size */
127 cxx_copy_ctor copy_ctor
; /* copy constructor */
129 #define CLASS_IS_SIMPLE_TYPE 1
130 #define CLASS_HAS_VIRTUAL_BASE_CLASS 4
132 /* table of C++ types that apply for a given object */
133 typedef struct __cxx_type_info_table
135 UINT count
; /* number of types */
136 const cxx_type_info
*info
[3]; /* variable length, we declare it large enough for static RTTI */
137 } cxx_type_info_table
;
139 typedef DWORD (*cxx_exc_custom_handler
)( PEXCEPTION_RECORD
, cxx_exception_frame
*,
140 PCONTEXT
, EXCEPTION_REGISTRATION_RECORD
**,
141 const cxx_function_descr
*, int nested_trylevel
,
142 EXCEPTION_REGISTRATION_RECORD
*nested_frame
, DWORD unknown3
);
144 /* type information for an exception object */
145 typedef struct __cxx_exception_type
147 UINT flags
; /* TYPE_FLAG flags */
148 void (*destructor
)(void);/* exception object destructor */
149 cxx_exc_custom_handler custom_handler
; /* custom handler for this exception */
150 const cxx_type_info_table
*type_info_table
; /* list of types for this exception object */
151 } cxx_exception_type
;
153 void CDECL
_CxxThrowException(exception
*,const cxx_exception_type
*);
154 int CDECL
_XcptFilter(NTSTATUS
, PEXCEPTION_POINTERS
);
155 int CDECL
__CppXcptFilter(NTSTATUS
, PEXCEPTION_POINTERS
);
157 static inline const char *dbgstr_type_info( const type_info
*info
)
159 if (!info
) return "{}";
160 return wine_dbg_sprintf( "{vtable=%p name=%s (%s)}",
161 info
->vtable
, info
->mangled
, info
->name
? info
->name
: "" );
164 /* compute the this pointer for a base class of a given type */
165 static inline void *get_this_pointer( const this_ptr_offsets
*off
, void *object
)
170 if (!object
) return NULL
;
171 this_ptr
= (char *)object
+ off
->this_offset
;
172 if (off
->vbase_descr
>= 0)
174 /* move this ptr to vbase descriptor */
175 this_ptr
= (char *)this_ptr
+ off
->vbase_descr
;
176 /* and fetch additional offset from vbase descriptor */
177 offset_ptr
= (int *)(*(char **)this_ptr
+ off
->vbase_offset
);
178 this_ptr
= (char *)this_ptr
+ *offset_ptr
;
183 #endif /* __MSVCRT_CPPEXCEPT_H */