| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_RUNTIME_RUNTIME_UTILS_H_ | 5 #ifndef V8_RUNTIME_RUNTIME_UTILS_H_ |
| 6 #define V8_RUNTIME_RUNTIME_UTILS_H_ | 6 #define V8_RUNTIME_RUNTIME_UTILS_H_ |
| 7 | 7 |
| 8 #include "src/runtime/runtime.h" |
| 8 | 9 |
| 9 namespace v8 { | 10 namespace v8 { |
| 10 namespace internal { | 11 namespace internal { |
| 11 | 12 |
| 12 #define RUNTIME_ASSERT(value) \ | 13 #define RUNTIME_ASSERT(value) \ |
| 13 if (!(value)) return isolate->ThrowIllegalOperation(); | 14 if (!(value)) return isolate->ThrowIllegalOperation(); |
| 14 | 15 |
| 15 #define RUNTIME_ASSERT_HANDLIFIED(value, T) \ | 16 #define RUNTIME_ASSERT_HANDLIFIED(value, T) \ |
| 16 if (!(value)) { \ | 17 if (!(value)) { \ |
| 17 isolate->ThrowIllegalOperation(); \ | 18 isolate->ThrowIllegalOperation(); \ |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 #else | 148 #else |
| 148 #error Unknown endianness | 149 #error Unknown endianness |
| 149 #endif | 150 #endif |
| 150 } | 151 } |
| 151 #endif | 152 #endif |
| 152 | 153 |
| 153 } | 154 } |
| 154 } // namespace v8::internal | 155 } // namespace v8::internal |
| 155 | 156 |
| 156 #endif // V8_RUNTIME_RUNTIME_UTILS_H_ | 157 #endif // V8_RUNTIME_RUNTIME_UTILS_H_ |
| OLD | NEW |