source: webkit/trunk/JavaScriptCore/wtf/Assertions.h@ 51199

Last change on this file since 51199 was 48922, checked in by Simon Hausmann, 16 years ago

Fix CRASH() macro for Symbian build.

Patch by Janne Koskinen <[email protected]> on 2009-09-30
Reviewed by Simon Hausmann.

  • wtf/Assertions.h: Added missing }
  • Property svn:eol-style set to native
File size: 8.3 KB
Line 
1/*
2 * Copyright (C) 2003, 2006, 2007 Apple Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#ifndef WTF_Assertions_h
27#define WTF_Assertions_h
28
29/*
30 no namespaces because this file has to be includable from C and Objective-C
31
32 Note, this file uses many GCC extensions, but it should be compatible with
33 C, Objective C, C++, and Objective C++.
34
35 For non-debug builds, everything is disabled by default.
36 Defining any of the symbols explicitly prevents this from having any effect.
37
38 MSVC7 note: variadic macro support was added in MSVC8, so for now we disable
39 those macros in MSVC7. For more info, see the MSDN document on variadic
40 macros here:
41
42 http://msdn2.microsoft.com/en-us/library/ms177415(VS.80).aspx
43*/
44
45#include "Platform.h"
46
47#if COMPILER(MSVC)
48#include <stddef.h>
49#else
50#include <inttypes.h>
51#endif
52
53#if PLATFORM(SYMBIAN)
54#include <e32def.h>
55#include <e32debug.h>
56#endif
57
58#ifdef NDEBUG
59#define ASSERTIONS_DISABLED_DEFAULT 1
60#else
61#define ASSERTIONS_DISABLED_DEFAULT 0
62#endif
63
64#ifndef ASSERT_DISABLED
65#define ASSERT_DISABLED ASSERTIONS_DISABLED_DEFAULT
66#endif
67
68#ifndef ASSERT_ARG_DISABLED
69#define ASSERT_ARG_DISABLED ASSERTIONS_DISABLED_DEFAULT
70#endif
71
72#ifndef FATAL_DISABLED
73#define FATAL_DISABLED ASSERTIONS_DISABLED_DEFAULT
74#endif
75
76#ifndef ERROR_DISABLED
77#define ERROR_DISABLED ASSERTIONS_DISABLED_DEFAULT
78#endif
79
80#ifndef LOG_DISABLED
81#define LOG_DISABLED ASSERTIONS_DISABLED_DEFAULT
82#endif
83
84#if COMPILER(GCC)
85#define WTF_PRETTY_FUNCTION __PRETTY_FUNCTION__
86#else
87#define WTF_PRETTY_FUNCTION __FUNCTION__
88#endif
89
90/* WTF logging functions can process %@ in the format string to log a NSObject* but the printf format attribute
91 emits a warning when %@ is used in the format string. Until <rdar://problem/5195437> is resolved we can't include
92 the attribute when being used from Objective-C code in case it decides to use %@. */
93#if COMPILER(GCC) && !defined(__OBJC__)
94#define WTF_ATTRIBUTE_PRINTF(formatStringArgument, extraArguments) __attribute__((__format__(printf, formatStringArgument, extraArguments)))
95#else
96#define WTF_ATTRIBUTE_PRINTF(formatStringArgument, extraArguments)
97#endif
98
99/* These helper functions are always declared, but not necessarily always defined if the corresponding function is disabled. */
100
101#ifdef __cplusplus
102extern "C" {
103#endif
104
105typedef enum { WTFLogChannelOff, WTFLogChannelOn } WTFLogChannelState;
106
107typedef struct {
108 unsigned mask;
109 const char *defaultName;
110 WTFLogChannelState state;
111} WTFLogChannel;
112
113void WTFReportAssertionFailure(const char* file, int line, const char* function, const char* assertion);
114void WTFReportAssertionFailureWithMessage(const char* file, int line, const char* function, const char* assertion, const char* format, ...) WTF_ATTRIBUTE_PRINTF(5, 6);
115void WTFReportArgumentAssertionFailure(const char* file, int line, const char* function, const char* argName, const char* assertion);
116void WTFReportFatalError(const char* file, int line, const char* function, const char* format, ...) WTF_ATTRIBUTE_PRINTF(4, 5);
117void WTFReportError(const char* file, int line, const char* function, const char* format, ...) WTF_ATTRIBUTE_PRINTF(4, 5);
118void WTFLog(WTFLogChannel* channel, const char* format, ...) WTF_ATTRIBUTE_PRINTF(2, 3);
119void WTFLogVerbose(const char* file, int line, const char* function, WTFLogChannel* channel, const char* format, ...) WTF_ATTRIBUTE_PRINTF(5, 6);
120
121#ifdef __cplusplus
122}
123#endif
124
125/* CRASH -- gets us into the debugger or the crash reporter -- signals are ignored by the crash reporter so we must do better */
126
127#ifndef CRASH
128#if PLATFORM(SYMBIAN)
129#define CRASH() do { \
130 __DEBUGGER(); \
131 User::Panic(_L("Webkit CRASH"),0); \
132 } while(false)
133#else
134#define CRASH() do { \
135 *(int *)(uintptr_t)0xbbadbeef = 0; \
136 ((void(*)())0)(); /* More reliable, but doesn't say BBADBEEF */ \
137} while(false)
138#endif
139#endif
140
141/* ASSERT, ASSERT_WITH_MESSAGE, ASSERT_NOT_REACHED */
142
143#if PLATFORM(WINCE) && !PLATFORM(TORCHMOBILE)
144/* FIXME: We include this here only to avoid a conflict with the ASSERT macro. */
145#include <windows.h>
146#undef min
147#undef max
148#undef ERROR
149#endif
150
151#if PLATFORM(WIN_OS) || PLATFORM(SYMBIAN)
152/* FIXME: Change to use something other than ASSERT to avoid this conflict with the underlying platform */
153#undef ASSERT
154#endif
155
156#if ASSERT_DISABLED
157
158#define ASSERT(assertion) ((void)0)
159#if COMPILER(MSVC7) || COMPILER(WINSCW)
160#define ASSERT_WITH_MESSAGE(assertion) ((void)0)
161#else
162#define ASSERT_WITH_MESSAGE(assertion, ...) ((void)0)
163#endif /* COMPILER(MSVC7) */
164#define ASSERT_NOT_REACHED() ((void)0)
165#define ASSERT_UNUSED(variable, assertion) ((void)variable)
166
167#else
168
169#define ASSERT(assertion) do \
170 if (!(assertion)) { \
171 WTFReportAssertionFailure(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, #assertion); \
172 CRASH(); \
173 } \
174while (0)
175#if COMPILER(MSVC7) || COMPILER(WINSCW)
176#define ASSERT_WITH_MESSAGE(assertion) ((void)0)
177#else
178#define ASSERT_WITH_MESSAGE(assertion, ...) do \
179 if (!(assertion)) { \
180 WTFReportAssertionFailureWithMessage(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, #assertion, __VA_ARGS__); \
181 CRASH(); \
182 } \
183while (0)
184#endif /* COMPILER(MSVC7) */
185#define ASSERT_NOT_REACHED() do { \
186 WTFReportAssertionFailure(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, 0); \
187 CRASH(); \
188} while (0)
189
190#define ASSERT_UNUSED(variable, assertion) ASSERT(assertion)
191
192#endif
193
194/* ASSERT_ARG */
195
196#if ASSERT_ARG_DISABLED
197
198#define ASSERT_ARG(argName, assertion) ((void)0)
199
200#else
201
202#define ASSERT_ARG(argName, assertion) do \
203 if (!(assertion)) { \
204 WTFReportArgumentAssertionFailure(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, #argName, #assertion); \
205 CRASH(); \
206 } \
207while (0)
208
209#endif
210
211/* COMPILE_ASSERT */
212#ifndef COMPILE_ASSERT
213#define COMPILE_ASSERT(exp, name) typedef int dummy##name [(exp) ? 1 : -1]
214#endif
215
216/* FATAL */
217
218#if FATAL_DISABLED && !COMPILER(MSVC7) && !COMPILER(WINSCW)
219#define FATAL(...) ((void)0)
220#elif COMPILER(MSVC7)
221#define FATAL() ((void)0)
222#else
223#define FATAL(...) do { \
224 WTFReportFatalError(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, __VA_ARGS__); \
225 CRASH(); \
226} while (0)
227#endif
228
229/* LOG_ERROR */
230
231#if ERROR_DISABLED && !COMPILER(MSVC7) && !COMPILER(WINSCW)
232#define LOG_ERROR(...) ((void)0)
233#elif COMPILER(MSVC7) || COMPILER(WINSCW)
234#define LOG_ERROR() ((void)0)
235#else
236#define LOG_ERROR(...) WTFReportError(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, __VA_ARGS__)
237#endif
238
239/* LOG */
240
241#if LOG_DISABLED && !COMPILER(MSVC7) && !COMPILER(WINSCW)
242#define LOG(channel, ...) ((void)0)
243#elif COMPILER(MSVC7) || COMPILER(WINSCW)
244#define LOG() ((void)0)
245#else
246#define LOG(channel, ...) WTFLog(&JOIN_LOG_CHANNEL_WITH_PREFIX(LOG_CHANNEL_PREFIX, channel), __VA_ARGS__)
247#define JOIN_LOG_CHANNEL_WITH_PREFIX(prefix, channel) JOIN_LOG_CHANNEL_WITH_PREFIX_LEVEL_2(prefix, channel)
248#define JOIN_LOG_CHANNEL_WITH_PREFIX_LEVEL_2(prefix, channel) prefix ## channel
249#endif
250
251/* LOG_VERBOSE */
252
253#if LOG_DISABLED && !COMPILER(MSVC7) && !COMPILER(WINSCW)
254#define LOG_VERBOSE(channel, ...) ((void)0)
255#elif COMPILER(MSVC7) || COMPILER(WINSCW)
256#define LOG_VERBOSE(channel) ((void)0)
257#else
258#define LOG_VERBOSE(channel, ...) WTFLogVerbose(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, &JOIN_LOG_CHANNEL_WITH_PREFIX(LOG_CHANNEL_PREFIX, channel), __VA_ARGS__)
259#endif
260
261#endif /* WTF_Assertions_h */
Note: See TracBrowser for help on using the repository browser.