| 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/base/platform/time.h" | 9 #include "src/base/platform/time.h" |
| 10 #include "src/objects.h" | 10 #include "src/objects.h" |
| (...skipping 904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 915 F(HasFixedTypedArrayElements, 1, 1) \ | 915 F(HasFixedTypedArrayElements, 1, 1) \ |
| 916 F(HasFastProperties, 1, 1) \ | 916 F(HasFastProperties, 1, 1) \ |
| 917 F(HasFixedUint8Elements, 1, 1) \ | 917 F(HasFixedUint8Elements, 1, 1) \ |
| 918 F(HasFixedInt8Elements, 1, 1) \ | 918 F(HasFixedInt8Elements, 1, 1) \ |
| 919 F(HasFixedUint16Elements, 1, 1) \ | 919 F(HasFixedUint16Elements, 1, 1) \ |
| 920 F(HasFixedInt16Elements, 1, 1) \ | 920 F(HasFixedInt16Elements, 1, 1) \ |
| 921 F(HasFixedUint32Elements, 1, 1) \ | 921 F(HasFixedUint32Elements, 1, 1) \ |
| 922 F(HasFixedInt32Elements, 1, 1) \ | 922 F(HasFixedInt32Elements, 1, 1) \ |
| 923 F(HasFixedFloat32Elements, 1, 1) \ | 923 F(HasFixedFloat32Elements, 1, 1) \ |
| 924 F(HasFixedFloat64Elements, 1, 1) \ | 924 F(HasFixedFloat64Elements, 1, 1) \ |
| 925 F(HasFixedUint8ClampedElements, 1, 1) | 925 F(HasFixedUint8ClampedElements, 1, 1) \ |
| 926 F(SpeciesProtector, 0, 1) |
| 926 | 927 |
| 927 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ | 928 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ |
| 928 F(ArrayBufferGetByteLength, 1, 1) \ | 929 F(ArrayBufferGetByteLength, 1, 1) \ |
| 929 F(ArrayBufferSliceImpl, 4, 1) \ | 930 F(ArrayBufferSliceImpl, 4, 1) \ |
| 930 F(ArrayBufferNeuter, 1, 1) \ | 931 F(ArrayBufferNeuter, 1, 1) \ |
| 931 F(TypedArrayInitialize, 6, 1) \ | 932 F(TypedArrayInitialize, 6, 1) \ |
| 932 F(TypedArrayInitializeFromArrayLike, 4, 1) \ | 933 F(TypedArrayInitializeFromArrayLike, 4, 1) \ |
| 933 F(ArrayBufferViewGetByteLength, 1, 1) \ | 934 F(ArrayBufferViewGetByteLength, 1, 1) \ |
| 934 F(ArrayBufferViewGetByteOffset, 1, 1) \ | 935 F(ArrayBufferViewGetByteOffset, 1, 1) \ |
| 935 F(TypedArrayGetLength, 1, 1) \ | 936 F(TypedArrayGetLength, 1, 1) \ |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1181 | 1182 |
| 1182 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1183 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1183 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1184 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1184 STATIC_ASSERT(LANGUAGE_END == 3); | 1185 STATIC_ASSERT(LANGUAGE_END == 3); |
| 1185 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1186 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
| 1186 | 1187 |
| 1187 } // namespace internal | 1188 } // namespace internal |
| 1188 } // namespace v8 | 1189 } // namespace v8 |
| 1189 | 1190 |
| 1190 #endif // V8_RUNTIME_RUNTIME_H_ | 1191 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |