| 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 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 883 F(HasFixedInt16Elements, 1, 1) \ | 883 F(HasFixedInt16Elements, 1, 1) \ |
| 884 F(HasFixedUint32Elements, 1, 1) \ | 884 F(HasFixedUint32Elements, 1, 1) \ |
| 885 F(HasFixedInt32Elements, 1, 1) \ | 885 F(HasFixedInt32Elements, 1, 1) \ |
| 886 F(HasFixedFloat32Elements, 1, 1) \ | 886 F(HasFixedFloat32Elements, 1, 1) \ |
| 887 F(HasFixedFloat64Elements, 1, 1) \ | 887 F(HasFixedFloat64Elements, 1, 1) \ |
| 888 F(HasFixedUint8ClampedElements, 1, 1) \ | 888 F(HasFixedUint8ClampedElements, 1, 1) \ |
| 889 F(SpeciesProtector, 0, 1) \ | 889 F(SpeciesProtector, 0, 1) \ |
| 890 F(SerializeWasmModule, 1, 1) \ | 890 F(SerializeWasmModule, 1, 1) \ |
| 891 F(DeserializeWasmModule, 1, 1) \ | 891 F(DeserializeWasmModule, 1, 1) \ |
| 892 F(IsAsmWasmCode, 1, 1) \ | 892 F(IsAsmWasmCode, 1, 1) \ |
| 893 F(IsNotAsmWasmCode, 1, 1) | 893 F(IsNotAsmWasmCode, 1, 1) \ |
| 894 F(ValidateWasmInstancesChain, 2, 1) \ |
| 895 F(ValidateWasmModuleState, 1, 1) \ |
| 896 F(ValidateWasmOrphanedInstance, 1, 1) |
| 894 | 897 |
| 895 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ | 898 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ |
| 896 F(ArrayBufferGetByteLength, 1, 1) \ | 899 F(ArrayBufferGetByteLength, 1, 1) \ |
| 897 F(ArrayBufferSliceImpl, 4, 1) \ | 900 F(ArrayBufferSliceImpl, 4, 1) \ |
| 898 F(ArrayBufferNeuter, 1, 1) \ | 901 F(ArrayBufferNeuter, 1, 1) \ |
| 899 F(TypedArrayInitialize, 6, 1) \ | 902 F(TypedArrayInitialize, 6, 1) \ |
| 900 F(TypedArrayInitializeFromArrayLike, 4, 1) \ | 903 F(TypedArrayInitializeFromArrayLike, 4, 1) \ |
| 901 F(ArrayBufferViewGetByteLength, 1, 1) \ | 904 F(ArrayBufferViewGetByteLength, 1, 1) \ |
| 902 F(ArrayBufferViewGetByteOffset, 1, 1) \ | 905 F(ArrayBufferViewGetByteOffset, 1, 1) \ |
| 903 F(TypedArrayGetLength, 1, 1) \ | 906 F(TypedArrayGetLength, 1, 1) \ |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1120 | 1123 |
| 1121 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1124 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1122 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1125 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1123 STATIC_ASSERT(LANGUAGE_END == 2); | 1126 STATIC_ASSERT(LANGUAGE_END == 2); |
| 1124 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; | 1127 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; |
| 1125 | 1128 |
| 1126 } // namespace internal | 1129 } // namespace internal |
| 1127 } // namespace v8 | 1130 } // namespace v8 |
| 1128 | 1131 |
| 1129 #endif // V8_RUNTIME_RUNTIME_H_ | 1132 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |