| 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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 F(SerializeWasmModule, 1, 1) \ | 610 F(SerializeWasmModule, 1, 1) \ |
| 611 F(DeserializeWasmModule, 2, 1) \ | 611 F(DeserializeWasmModule, 2, 1) \ |
| 612 F(IsAsmWasmCode, 1, 1) \ | 612 F(IsAsmWasmCode, 1, 1) \ |
| 613 F(IsWasmCode, 1, 1) \ | 613 F(IsWasmCode, 1, 1) \ |
| 614 F(DisallowCodegenFromStrings, 0, 1) \ | 614 F(DisallowCodegenFromStrings, 0, 1) \ |
| 615 F(ValidateWasmInstancesChain, 2, 1) \ | 615 F(ValidateWasmInstancesChain, 2, 1) \ |
| 616 F(ValidateWasmModuleState, 1, 1) \ | 616 F(ValidateWasmModuleState, 1, 1) \ |
| 617 F(ValidateWasmOrphanedInstance, 1, 1) \ | 617 F(ValidateWasmOrphanedInstance, 1, 1) \ |
| 618 F(SetWasmCompileControls, 2, 1) \ | 618 F(SetWasmCompileControls, 2, 1) \ |
| 619 F(SetWasmInstantiateControls, 0, 1) \ | 619 F(SetWasmInstantiateControls, 0, 1) \ |
| 620 F(SetWasmCompileFromPromiseOverload, 0, 1) \ |
| 621 F(ResetWasmOverloads, 0, 1) \ |
| 620 F(HeapObjectVerify, 1, 1) \ | 622 F(HeapObjectVerify, 1, 1) \ |
| 621 F(WasmNumInterpretedCalls, 1, 1) \ | 623 F(WasmNumInterpretedCalls, 1, 1) \ |
| 622 F(RedirectToWasmInterpreter, 2, 1) | 624 F(RedirectToWasmInterpreter, 2, 1) |
| 623 | 625 |
| 624 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ | 626 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ |
| 625 F(ArrayBufferGetByteLength, 1, 1) \ | 627 F(ArrayBufferGetByteLength, 1, 1) \ |
| 626 F(ArrayBufferNeuter, 1, 1) \ | 628 F(ArrayBufferNeuter, 1, 1) \ |
| 627 F(ArrayBufferViewGetByteLength, 1, 1) \ | 629 F(ArrayBufferViewGetByteLength, 1, 1) \ |
| 628 F(ArrayBufferViewGetByteOffset, 1, 1) \ | 630 F(ArrayBufferViewGetByteOffset, 1, 1) \ |
| 629 F(TypedArrayGetLength, 1, 1) \ | 631 F(TypedArrayGetLength, 1, 1) \ |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 843 kMaybeDeopted = 1 << 3, | 845 kMaybeDeopted = 1 << 3, |
| 844 kOptimized = 1 << 4, | 846 kOptimized = 1 << 4, |
| 845 kTurboFanned = 1 << 5, | 847 kTurboFanned = 1 << 5, |
| 846 kInterpreted = 1 << 6, | 848 kInterpreted = 1 << 6, |
| 847 }; | 849 }; |
| 848 | 850 |
| 849 } // namespace internal | 851 } // namespace internal |
| 850 } // namespace v8 | 852 } // namespace v8 |
| 851 | 853 |
| 852 #endif // V8_RUNTIME_RUNTIME_H_ | 854 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |