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