| 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 <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
| (...skipping 863 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 874 F(HasFastProperties, 1, 1) \ | 874 F(HasFastProperties, 1, 1) \ |
| 875 F(HasFixedUint8Elements, 1, 1) \ | 875 F(HasFixedUint8Elements, 1, 1) \ |
| 876 F(HasFixedInt8Elements, 1, 1) \ | 876 F(HasFixedInt8Elements, 1, 1) \ |
| 877 F(HasFixedUint16Elements, 1, 1) \ | 877 F(HasFixedUint16Elements, 1, 1) \ |
| 878 F(HasFixedInt16Elements, 1, 1) \ | 878 F(HasFixedInt16Elements, 1, 1) \ |
| 879 F(HasFixedUint32Elements, 1, 1) \ | 879 F(HasFixedUint32Elements, 1, 1) \ |
| 880 F(HasFixedInt32Elements, 1, 1) \ | 880 F(HasFixedInt32Elements, 1, 1) \ |
| 881 F(HasFixedFloat32Elements, 1, 1) \ | 881 F(HasFixedFloat32Elements, 1, 1) \ |
| 882 F(HasFixedFloat64Elements, 1, 1) \ | 882 F(HasFixedFloat64Elements, 1, 1) \ |
| 883 F(HasFixedUint8ClampedElements, 1, 1) \ | 883 F(HasFixedUint8ClampedElements, 1, 1) \ |
| 884 F(SpeciesProtector, 0, 1) | 884 F(SpeciesProtector, 0, 1) \ |
| 885 F(SerializeWasmModule, 1, 1) \ |
| 886 F(DeserializeWasmModule, 1, 1) |
| 885 | 887 |
| 886 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ | 888 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ |
| 887 F(ArrayBufferGetByteLength, 1, 1) \ | 889 F(ArrayBufferGetByteLength, 1, 1) \ |
| 888 F(ArrayBufferSliceImpl, 4, 1) \ | 890 F(ArrayBufferSliceImpl, 4, 1) \ |
| 889 F(ArrayBufferNeuter, 1, 1) \ | 891 F(ArrayBufferNeuter, 1, 1) \ |
| 890 F(TypedArrayInitialize, 6, 1) \ | 892 F(TypedArrayInitialize, 6, 1) \ |
| 891 F(TypedArrayInitializeFromArrayLike, 4, 1) \ | 893 F(TypedArrayInitializeFromArrayLike, 4, 1) \ |
| 892 F(ArrayBufferViewGetByteLength, 1, 1) \ | 894 F(ArrayBufferViewGetByteLength, 1, 1) \ |
| 893 F(ArrayBufferViewGetByteOffset, 1, 1) \ | 895 F(ArrayBufferViewGetByteOffset, 1, 1) \ |
| 894 F(TypedArrayGetLength, 1, 1) \ | 896 F(TypedArrayGetLength, 1, 1) \ |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1129 | 1131 |
| 1130 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1132 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1131 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1133 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1132 STATIC_ASSERT(LANGUAGE_END == 3); | 1134 STATIC_ASSERT(LANGUAGE_END == 3); |
| 1133 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1135 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
| 1134 | 1136 |
| 1135 } // namespace internal | 1137 } // namespace internal |
| 1136 } // namespace v8 | 1138 } // namespace v8 |
| 1137 | 1139 |
| 1138 #endif // V8_RUNTIME_RUNTIME_H_ | 1140 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |