Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: src/checks.h

Issue 6580038: [Isolates] Merge from bleeding_edge, revisions 5934-6100. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: '' Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/builtins.cc ('k') | src/code-stubs.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 12 matching lines...) Expand all
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 #ifndef V8_CHECKS_H_ 28 #ifndef V8_CHECKS_H_
29 #define V8_CHECKS_H_ 29 #define V8_CHECKS_H_
30 30
31 #include <string.h> 31 #include <string.h>
32 32
33 #include "../include/v8stdint.h"
33 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...); 34 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...);
34 35
35 // The FATAL, UNREACHABLE and UNIMPLEMENTED macros are useful during 36 // The FATAL, UNREACHABLE and UNIMPLEMENTED macros are useful during
36 // development, but they should not be relied on in the final product. 37 // development, but they should not be relied on in the final product.
37 #ifdef DEBUG 38 #ifdef DEBUG
38 #define FATAL(msg) \ 39 #define FATAL(msg) \
39 V8_Fatal(__FILE__, __LINE__, "%s", (msg)) 40 V8_Fatal(__FILE__, __LINE__, "%s", (msg))
40 #define UNIMPLEMENTED() \ 41 #define UNIMPLEMENTED() \
41 V8_Fatal(__FILE__, __LINE__, "unimplemented code") 42 V8_Fatal(__FILE__, __LINE__, "unimplemented code")
42 #define UNREACHABLE() \ 43 #define UNREACHABLE() \
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 #define CHECK_EQ(expected, value) CheckEqualsHelper(__FILE__, __LINE__, \ 225 #define CHECK_EQ(expected, value) CheckEqualsHelper(__FILE__, __LINE__, \
225 #expected, expected, #value, value) 226 #expected, expected, #value, value)
226 227
227 228
228 #define CHECK_NE(unexpected, value) CheckNonEqualsHelper(__FILE__, __LINE__, \ 229 #define CHECK_NE(unexpected, value) CheckNonEqualsHelper(__FILE__, __LINE__, \
229 #unexpected, unexpected, #value, value) 230 #unexpected, unexpected, #value, value)
230 231
231 232
232 #define CHECK_GT(a, b) CHECK((a) > (b)) 233 #define CHECK_GT(a, b) CHECK((a) > (b))
233 #define CHECK_GE(a, b) CHECK((a) >= (b)) 234 #define CHECK_GE(a, b) CHECK((a) >= (b))
235 #define CHECK_LT(a, b) CHECK((a) < (b))
236 #define CHECK_LE(a, b) CHECK((a) <= (b))
234 237
235 238
236 // This is inspired by the static assertion facility in boost. This 239 // This is inspired by the static assertion facility in boost. This
237 // is pretty magical. If it causes you trouble on a platform you may 240 // is pretty magical. If it causes you trouble on a platform you may
238 // find a fix in the boost code. 241 // find a fix in the boost code.
239 template <bool> class StaticAssertion; 242 template <bool> class StaticAssertion;
240 template <> class StaticAssertion<true> { }; 243 template <> class StaticAssertion<true> { };
241 // This macro joins two tokens. If one of the tokens is a macro the 244 // This macro joins two tokens. If one of the tokens is a macro the
242 // helper call causes it to be resolved before joining. 245 // helper call causes it to be resolved before joining.
243 #define SEMI_STATIC_JOIN(a, b) SEMI_STATIC_JOIN_HELPER(a, b) 246 #define SEMI_STATIC_JOIN(a, b) SEMI_STATIC_JOIN_HELPER(a, b)
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 // Static asserts has no impact on runtime performance, so they can be 283 // Static asserts has no impact on runtime performance, so they can be
281 // safely enabled in release mode. Moreover, the ((void) 0) expression 284 // safely enabled in release mode. Moreover, the ((void) 0) expression
282 // obeys different syntax rules than typedef's, e.g. it can't appear 285 // obeys different syntax rules than typedef's, e.g. it can't appear
283 // inside class declaration, this leads to inconsistency between debug 286 // inside class declaration, this leads to inconsistency between debug
284 // and release compilation modes behavior. 287 // and release compilation modes behavior.
285 #define STATIC_ASSERT(test) STATIC_CHECK(test) 288 #define STATIC_ASSERT(test) STATIC_CHECK(test)
286 289
287 #define ASSERT_NOT_NULL(p) ASSERT_NE(NULL, p) 290 #define ASSERT_NOT_NULL(p) ASSERT_NE(NULL, p)
288 291
289 #endif // V8_CHECKS_H_ 292 #endif // V8_CHECKS_H_
OLDNEW
« no previous file with comments | « src/builtins.cc ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698