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

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

Issue 1439003002: [builtins] Get rid of a few %_ClassOf uses. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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/js/macros.py ('k') | src/runtime/runtime-typedarray.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/objects.h" 9 #include "src/objects.h"
10 #include "src/unicode.h" 10 #include "src/unicode.h"
(...skipping 990 matching lines...) Expand 10 before | Expand all | Expand 10 after
1001 F(ArrayBufferViewGetByteLength, 1, 1) \ 1001 F(ArrayBufferViewGetByteLength, 1, 1) \
1002 F(ArrayBufferViewGetByteOffset, 1, 1) \ 1002 F(ArrayBufferViewGetByteOffset, 1, 1) \
1003 F(TypedArrayGetLength, 1, 1) \ 1003 F(TypedArrayGetLength, 1, 1) \
1004 F(DataViewGetBuffer, 1, 1) \ 1004 F(DataViewGetBuffer, 1, 1) \
1005 F(TypedArrayGetBuffer, 1, 1) \ 1005 F(TypedArrayGetBuffer, 1, 1) \
1006 F(TypedArraySetFastCases, 3, 1) \ 1006 F(TypedArraySetFastCases, 3, 1) \
1007 F(TypedArrayMaxSizeInHeap, 0, 1) \ 1007 F(TypedArrayMaxSizeInHeap, 0, 1) \
1008 F(IsTypedArray, 1, 1) \ 1008 F(IsTypedArray, 1, 1) \
1009 F(IsSharedTypedArray, 1, 1) \ 1009 F(IsSharedTypedArray, 1, 1) \
1010 F(IsSharedIntegerTypedArray, 1, 1) \ 1010 F(IsSharedIntegerTypedArray, 1, 1) \
1011 F(IsSharedInteger32TypedArray, 1, 1) \
1011 F(DataViewInitialize, 4, 1) \ 1012 F(DataViewInitialize, 4, 1) \
1012 F(DataViewGetUint8, 3, 1) \ 1013 F(DataViewGetUint8, 3, 1) \
1013 F(DataViewGetInt8, 3, 1) \ 1014 F(DataViewGetInt8, 3, 1) \
1014 F(DataViewGetUint16, 3, 1) \ 1015 F(DataViewGetUint16, 3, 1) \
1015 F(DataViewGetInt16, 3, 1) \ 1016 F(DataViewGetInt16, 3, 1) \
1016 F(DataViewGetUint32, 3, 1) \ 1017 F(DataViewGetUint32, 3, 1) \
1017 F(DataViewGetInt32, 3, 1) \ 1018 F(DataViewGetInt32, 3, 1) \
1018 F(DataViewGetFloat32, 3, 1) \ 1019 F(DataViewGetFloat32, 3, 1) \
1019 F(DataViewGetFloat64, 3, 1) \ 1020 F(DataViewGetFloat64, 3, 1) \
1020 F(DataViewSetUint8, 4, 1) \ 1021 F(DataViewSetUint8, 4, 1) \
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
1258 1259
1259 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1260 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1260 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1261 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1261 STATIC_ASSERT(LANGUAGE_END == 3); 1262 STATIC_ASSERT(LANGUAGE_END == 3);
1262 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 1263 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
1263 1264
1264 } // namespace internal 1265 } // namespace internal
1265 } // namespace v8 1266 } // namespace v8
1266 1267
1267 #endif // V8_RUNTIME_RUNTIME_H_ 1268 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/js/macros.py ('k') | src/runtime/runtime-typedarray.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698