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

Side by Side Diff: src/runtime/runtime-utils.h

Issue 1160983004: [turbofan] First step towards sanitizing for-in and making it optimizable. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add some comments. Created 5 years, 6 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
« no previous file with comments | « src/runtime/runtime-forin.cc ('k') | src/x64/full-codegen-x64.cc » ('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 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
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_
OLDNEW
« no previous file with comments | « src/runtime/runtime-forin.cc ('k') | src/x64/full-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698