| 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 896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 907 F(HasFixedUint8ClampedElements, 1, 1) \ | 907 F(HasFixedUint8ClampedElements, 1, 1) \ |
| 908 F(SpeciesProtector, 0, 1) \ | 908 F(SpeciesProtector, 0, 1) \ |
| 909 F(SerializeWasmModule, 1, 1) \ | 909 F(SerializeWasmModule, 1, 1) \ |
| 910 F(DeserializeWasmModule, 2, 1) \ | 910 F(DeserializeWasmModule, 2, 1) \ |
| 911 F(IsAsmWasmCode, 1, 1) \ | 911 F(IsAsmWasmCode, 1, 1) \ |
| 912 F(IsWasmCode, 1, 1) \ | 912 F(IsWasmCode, 1, 1) \ |
| 913 F(DisallowCodegenFromStrings, 0, 1) \ | 913 F(DisallowCodegenFromStrings, 0, 1) \ |
| 914 F(ValidateWasmInstancesChain, 2, 1) \ | 914 F(ValidateWasmInstancesChain, 2, 1) \ |
| 915 F(ValidateWasmModuleState, 1, 1) \ | 915 F(ValidateWasmModuleState, 1, 1) \ |
| 916 F(ValidateWasmOrphanedInstance, 1, 1) \ | 916 F(ValidateWasmOrphanedInstance, 1, 1) \ |
| 917 F(SetWasmCompileControls, 2, 1) \ |
| 918 F(SetWasmInstantiateControls, 0, 1) \ |
| 917 F(Verify, 1, 1) | 919 F(Verify, 1, 1) |
| 918 | 920 |
| 919 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ | 921 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ |
| 920 F(ArrayBufferGetByteLength, 1, 1) \ | 922 F(ArrayBufferGetByteLength, 1, 1) \ |
| 921 F(ArrayBufferSliceImpl, 4, 1) \ | 923 F(ArrayBufferSliceImpl, 4, 1) \ |
| 922 F(ArrayBufferNeuter, 1, 1) \ | 924 F(ArrayBufferNeuter, 1, 1) \ |
| 923 F(TypedArrayInitialize, 6, 1) \ | 925 F(TypedArrayInitialize, 6, 1) \ |
| 924 F(TypedArrayInitializeFromArrayLike, 4, 1) \ | 926 F(TypedArrayInitializeFromArrayLike, 4, 1) \ |
| 925 F(ArrayBufferViewGetByteLength, 1, 1) \ | 927 F(ArrayBufferViewGetByteLength, 1, 1) \ |
| 926 F(ArrayBufferViewGetByteOffset, 1, 1) \ | 928 F(ArrayBufferViewGetByteOffset, 1, 1) \ |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1152 | 1154 |
| 1153 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1155 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1154 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1156 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1155 STATIC_ASSERT(LANGUAGE_END == 2); | 1157 STATIC_ASSERT(LANGUAGE_END == 2); |
| 1156 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; | 1158 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; |
| 1157 | 1159 |
| 1158 } // namespace internal | 1160 } // namespace internal |
| 1159 } // namespace v8 | 1161 } // namespace v8 |
| 1160 | 1162 |
| 1161 #endif // V8_RUNTIME_RUNTIME_H_ | 1163 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |