| OLD | NEW |
| 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 } } // namespace v8::internal | 264 } } // namespace v8::internal |
| 265 | 265 |
| 266 // The ASSERT macro is equivalent to CHECK except that it only | 266 // The ASSERT macro is equivalent to CHECK except that it only |
| 267 // generates code in debug builds. | 267 // generates code in debug builds. |
| 268 #ifdef DEBUG | 268 #ifdef DEBUG |
| 269 #define ASSERT_RESULT(expr) CHECK(expr) | 269 #define ASSERT_RESULT(expr) CHECK(expr) |
| 270 #define ASSERT(condition) CHECK(condition) | 270 #define ASSERT(condition) CHECK(condition) |
| 271 #define ASSERT_EQ(v1, v2) CHECK_EQ(v1, v2) | 271 #define ASSERT_EQ(v1, v2) CHECK_EQ(v1, v2) |
| 272 #define ASSERT_NE(v1, v2) CHECK_NE(v1, v2) | 272 #define ASSERT_NE(v1, v2) CHECK_NE(v1, v2) |
| 273 #define ASSERT_GE(v1, v2) CHECK_GE(v1, v2) | 273 #define ASSERT_GE(v1, v2) CHECK_GE(v1, v2) |
| 274 #define ASSERT_LT(v1, v2) CHECK_LT(v1, v2) |
| 275 #define ASSERT_LE(v1, v2) CHECK_LE(v1, v2) |
| 274 #define SLOW_ASSERT(condition) if (EnableSlowAsserts()) CHECK(condition) | 276 #define SLOW_ASSERT(condition) if (EnableSlowAsserts()) CHECK(condition) |
| 275 #else | 277 #else |
| 276 #define ASSERT_RESULT(expr) (expr) | 278 #define ASSERT_RESULT(expr) (expr) |
| 277 #define ASSERT(condition) ((void) 0) | 279 #define ASSERT(condition) ((void) 0) |
| 278 #define ASSERT_EQ(v1, v2) ((void) 0) | 280 #define ASSERT_EQ(v1, v2) ((void) 0) |
| 279 #define ASSERT_NE(v1, v2) ((void) 0) | 281 #define ASSERT_NE(v1, v2) ((void) 0) |
| 280 #define ASSERT_GE(v1, v2) ((void) 0) | 282 #define ASSERT_GE(v1, v2) ((void) 0) |
| 283 #define ASSERT_LT(v1, v2) ((void) 0) |
| 284 #define ASSERT_LE(v1, v2) ((void) 0) |
| 281 #define SLOW_ASSERT(condition) ((void) 0) | 285 #define SLOW_ASSERT(condition) ((void) 0) |
| 282 #endif | 286 #endif |
| 283 // Static asserts has no impact on runtime performance, so they can be | 287 // Static asserts has no impact on runtime performance, so they can be |
| 284 // safely enabled in release mode. Moreover, the ((void) 0) expression | 288 // safely enabled in release mode. Moreover, the ((void) 0) expression |
| 285 // obeys different syntax rules than typedef's, e.g. it can't appear | 289 // obeys different syntax rules than typedef's, e.g. it can't appear |
| 286 // inside class declaration, this leads to inconsistency between debug | 290 // inside class declaration, this leads to inconsistency between debug |
| 287 // and release compilation modes behavior. | 291 // and release compilation modes behavior. |
| 288 #define STATIC_ASSERT(test) STATIC_CHECK(test) | 292 #define STATIC_ASSERT(test) STATIC_CHECK(test) |
| 289 | 293 |
| 290 #define ASSERT_NOT_NULL(p) ASSERT_NE(NULL, p) | 294 #define ASSERT_NOT_NULL(p) ASSERT_NE(NULL, p) |
| 291 | 295 |
| 292 #endif // V8_CHECKS_H_ | 296 #endif // V8_CHECKS_H_ |
| OLD | NEW |