| 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 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 898 F(HasFixedInt16Elements, 1, 1) \ | 898 F(HasFixedInt16Elements, 1, 1) \ |
| 899 F(HasFixedUint32Elements, 1, 1) \ | 899 F(HasFixedUint32Elements, 1, 1) \ |
| 900 F(HasFixedInt32Elements, 1, 1) \ | 900 F(HasFixedInt32Elements, 1, 1) \ |
| 901 F(HasFixedFloat32Elements, 1, 1) \ | 901 F(HasFixedFloat32Elements, 1, 1) \ |
| 902 F(HasFixedFloat64Elements, 1, 1) \ | 902 F(HasFixedFloat64Elements, 1, 1) \ |
| 903 F(HasFixedUint8ClampedElements, 1, 1) \ | 903 F(HasFixedUint8ClampedElements, 1, 1) \ |
| 904 F(SpeciesProtector, 0, 1) \ | 904 F(SpeciesProtector, 0, 1) \ |
| 905 F(SerializeWasmModule, 1, 1) \ | 905 F(SerializeWasmModule, 1, 1) \ |
| 906 F(DeserializeWasmModule, 2, 1) \ | 906 F(DeserializeWasmModule, 2, 1) \ |
| 907 F(IsAsmWasmCode, 1, 1) \ | 907 F(IsAsmWasmCode, 1, 1) \ |
| 908 F(IsNotAsmWasmCode, 1, 1) \ | |
| 909 F(ValidateWasmInstancesChain, 2, 1) \ | 908 F(ValidateWasmInstancesChain, 2, 1) \ |
| 910 F(ValidateWasmModuleState, 1, 1) \ | 909 F(ValidateWasmModuleState, 1, 1) \ |
| 911 F(ValidateWasmOrphanedInstance, 1, 1) | 910 F(ValidateWasmOrphanedInstance, 1, 1) |
| 912 | 911 |
| 913 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ | 912 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ |
| 914 F(ArrayBufferGetByteLength, 1, 1) \ | 913 F(ArrayBufferGetByteLength, 1, 1) \ |
| 915 F(ArrayBufferSliceImpl, 4, 1) \ | 914 F(ArrayBufferSliceImpl, 4, 1) \ |
| 916 F(ArrayBufferNeuter, 1, 1) \ | 915 F(ArrayBufferNeuter, 1, 1) \ |
| 917 F(TypedArrayInitialize, 6, 1) \ | 916 F(TypedArrayInitialize, 6, 1) \ |
| 918 F(TypedArrayInitializeFromArrayLike, 4, 1) \ | 917 F(TypedArrayInitializeFromArrayLike, 4, 1) \ |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1138 | 1137 |
| 1139 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1138 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1140 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1139 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1141 STATIC_ASSERT(LANGUAGE_END == 2); | 1140 STATIC_ASSERT(LANGUAGE_END == 2); |
| 1142 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; | 1141 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; |
| 1143 | 1142 |
| 1144 } // namespace internal | 1143 } // namespace internal |
| 1145 } // namespace v8 | 1144 } // namespace v8 |
| 1146 | 1145 |
| 1147 #endif // V8_RUNTIME_RUNTIME_H_ | 1146 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |