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

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

Issue 612023002: Split even more runtime functions into separate files. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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/runtime/runtime-test.cc ('k') | tools/gyp/v8.gyp » ('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_UTILS_H_ 5 #ifndef V8_RUNTIME_UTILS_H_
6 #define V8_RUNTIME_UTILS_H_ 6 #define V8_RUNTIME_UTILS_H_
7 7
8 8
9 namespace v8 { 9 namespace v8 {
10 namespace internal { 10 namespace internal {
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 return reinterpret_cast<uint32_t>(x) | 133 return reinterpret_cast<uint32_t>(x) |
134 (reinterpret_cast<ObjectPair>(y) << 32); 134 (reinterpret_cast<ObjectPair>(y) << 32);
135 #elif defined(V8_TARGET_BIG_ENDIAN) 135 #elif defined(V8_TARGET_BIG_ENDIAN)
136 return reinterpret_cast<uint32_t>(y) | 136 return reinterpret_cast<uint32_t>(y) |
137 (reinterpret_cast<ObjectPair>(x) << 32); 137 (reinterpret_cast<ObjectPair>(x) << 32);
138 #else 138 #else
139 #error Unknown endianness 139 #error Unknown endianness
140 #endif 140 #endif
141 } 141 }
142 #endif 142 #endif
143
144 class JavaScriptFrameIterator;
145
146 int FindIndexedNonNativeFrame(JavaScriptFrameIterator* it, int index);
143 } 147 }
144 } // namespace v8::internal 148 } // namespace v8::internal
145 149
146 #endif // V8_RUNTIME_UTILS_H_ 150 #endif // V8_RUNTIME_UTILS_H_
OLDNEW
« no previous file with comments | « src/runtime/runtime-test.cc ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698