wined3d: Add support for loading gamma corrected textures.
[wine] / include / wine / exception.h
1 /*
2  * Wine exception handling
3  *
4  * Copyright (c) 1999 Alexandre Julliard
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #ifndef __WINE_WINE_EXCEPTION_H
22 #define __WINE_WINE_EXCEPTION_H
23
24 #include <setjmp.h>
25 #include <windef.h>
26
27 /* The following definitions allow using exceptions in Wine and Winelib code
28  *
29  * They should be used like this:
30  *
31  * __TRY
32  * {
33  *     do some stuff that can raise an exception
34  * }
35  * __EXCEPT(filter_func,param)
36  * {
37  *     handle the exception here
38  * }
39  * __ENDTRY
40  *
41  * or
42  *
43  * __TRY
44  * {
45  *     do some stuff that can raise an exception
46  * }
47  * __FINALLY(finally_func,param)
48  *
49  * The filter_func must be defined with the WINE_EXCEPTION_FILTER
50  * macro, and return one of the EXCEPTION_* code; it can use
51  * GetExceptionInformation and GetExceptionCode to retrieve the
52  * exception info.
53  *
54  * The finally_func must be defined with the WINE_FINALLY_FUNC macro.
55  *
56  * Warning: inside a __TRY or __EXCEPT block, 'break' or 'continue' statements
57  *          break out of the current block. You cannot use 'return', 'goto'
58  *          or 'longjmp' to leave a __TRY block, as this will surely crash.
59  *          You can use them to leave a __EXCEPT block though.
60  *
61  * -- AJ
62  */
63
64 /* Define this if you want to use your compiler built-in __try/__except support.
65  * This is only useful when compiling to a native Windows binary, as the built-in
66  * compiler exceptions will most certainly not work under Winelib.
67  */
68 #ifdef USE_COMPILER_EXCEPTIONS
69
70 #define __TRY __try
71 #define __EXCEPT(func) __except((func)(GetExceptionInformation()))
72 #define __FINALLY(func) __finally { (func)(!AbnormalTermination()); }
73 #define __ENDTRY /*nothing*/
74 #define __EXCEPT_PAGE_FAULT __except(GetExceptionCode() == EXCEPTION_ACCESS_VIOLATION)
75
76 #else  /* USE_COMPILER_EXCEPTIONS */
77
78 #ifndef __GNUC__
79 #define __attribute__(x) /* nothing */
80 #endif
81
82 #define __TRY \
83     do { __WINE_FRAME __f; \
84          int __first = 1; \
85          for (;;) if (!__first) \
86          { \
87              do {
88
89 #define __EXCEPT(func) \
90              } while(0); \
91              __wine_pop_frame( &__f.frame ); \
92              break; \
93          } else { \
94              __f.frame.Handler = __wine_exception_handler; \
95              __f.u.filter = (func); \
96              __wine_push_frame( &__f.frame ); \
97              if (sigsetjmp( __f.jmp, 1 )) { \
98                  const __WINE_FRAME * const __eptr __attribute__((unused)) = &__f; \
99                  do {
100
101 #define __ENDTRY \
102                  } while (0); \
103                  break; \
104              } \
105              __first = 0; \
106          } \
107     } while (0);
108
109 #define __FINALLY(func) \
110              } while(0); \
111              __wine_pop_frame( &__f.frame ); \
112              (func)(1); \
113              break; \
114          } else { \
115              __f.frame.Handler = __wine_finally_handler; \
116              __f.u.finally_func = (func); \
117              __wine_push_frame( &__f.frame ); \
118              __first = 0; \
119          } \
120     } while (0);
121
122
123 typedef LONG (CALLBACK *__WINE_FILTER)(PEXCEPTION_POINTERS);
124 typedef void (CALLBACK *__WINE_FINALLY)(BOOL);
125
126 /* convenience handler for page fault exceptions */
127 #define __EXCEPT_PAGE_FAULT __EXCEPT( (__WINE_FILTER)1 )
128
129 #define WINE_EXCEPTION_FILTER(func) LONG WINAPI func( EXCEPTION_POINTERS *__eptr )
130 #define WINE_FINALLY_FUNC(func) void WINAPI func( BOOL __normal )
131
132 #define GetExceptionInformation() (__eptr)
133 #define GetExceptionCode()        (__eptr->ExceptionRecord->ExceptionCode)
134 #define AbnormalTermination()     (!__normal)
135
136 typedef struct __tagWINE_FRAME
137 {
138     EXCEPTION_REGISTRATION_RECORD frame;
139     union
140     {
141         /* exception data */
142         __WINE_FILTER filter;
143         /* finally data */
144         __WINE_FINALLY finally_func;
145     } u;
146     sigjmp_buf jmp;
147     /* hack to make GetExceptionCode() work in handler */
148     DWORD ExceptionCode;
149     const struct __tagWINE_FRAME *ExceptionRecord;
150 } __WINE_FRAME;
151
152 extern DWORD __wine_exception_handler( PEXCEPTION_RECORD record, EXCEPTION_REGISTRATION_RECORD *frame,
153                                        CONTEXT *context, EXCEPTION_REGISTRATION_RECORD **pdispatcher );
154 extern DWORD __wine_finally_handler( PEXCEPTION_RECORD record, EXCEPTION_REGISTRATION_RECORD *frame,
155                                      CONTEXT *context, EXCEPTION_REGISTRATION_RECORD **pdispatcher );
156
157 #endif /* USE_COMPILER_EXCEPTIONS */
158
159 static inline EXCEPTION_REGISTRATION_RECORD *__wine_push_frame( EXCEPTION_REGISTRATION_RECORD *frame )
160 {
161 #if defined(__GNUC__) && defined(__i386__)
162     EXCEPTION_REGISTRATION_RECORD *prev;
163     __asm__ __volatile__(".byte 0x64\n\tmovl (0),%0"
164                          "\n\tmovl %0,(%1)"
165                          "\n\t.byte 0x64\n\tmovl %1,(0)"
166                          : "=&r" (prev) : "r" (frame) : "memory" );
167     return prev;
168 #else
169     NT_TIB *teb = (NT_TIB *)NtCurrentTeb();
170     frame->Prev = (void *)teb->ExceptionList;
171     teb->ExceptionList = (void *)frame;
172     return frame->Prev;
173 #endif
174 }
175
176 static inline EXCEPTION_REGISTRATION_RECORD *__wine_pop_frame( EXCEPTION_REGISTRATION_RECORD *frame )
177 {
178 #if defined(__GNUC__) && defined(__i386__)
179     __asm__ __volatile__(".byte 0x64\n\tmovl %0,(0)"
180                          : : "r" (frame->Prev) : "memory" );
181     return frame->Prev;
182
183 #else
184     NT_TIB *teb = (NT_TIB *)NtCurrentTeb();
185     teb->ExceptionList = (void *)frame->Prev;
186     return frame->Prev;
187 #endif
188 }
189
190
191 /* Wine-specific exceptions codes */
192
193 #define EXCEPTION_WINE_STUB       0x80000100  /* stub entry point called */
194 #define EXCEPTION_WINE_ASSERTION  0x80000101  /* assertion failed */
195
196 /* unhandled return status from vm86 mode */
197 #define EXCEPTION_VM86_INTx       0x80000110
198 #define EXCEPTION_VM86_STI        0x80000111
199 #define EXCEPTION_VM86_PICRETURN  0x80000112
200
201 extern void __wine_enter_vm86( CONTEXT *context );
202
203 #endif  /* __WINE_WINE_EXCEPTION_H */