| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |