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 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
608 F(DisallowCodegenFromStrings, 0, 1) \ | 608 F(DisallowCodegenFromStrings, 0, 1) \ |
609 F(ValidateWasmInstancesChain, 2, 1) \ | 609 F(ValidateWasmInstancesChain, 2, 1) \ |
610 F(ValidateWasmModuleState, 1, 1) \ | 610 F(ValidateWasmModuleState, 1, 1) \ |
611 F(ValidateWasmOrphanedInstance, 1, 1) \ | 611 F(ValidateWasmOrphanedInstance, 1, 1) \ |
612 F(SetWasmCompileControls, 2, 1) \ | 612 F(SetWasmCompileControls, 2, 1) \ |
613 F(SetWasmInstantiateControls, 0, 1) \ | 613 F(SetWasmInstantiateControls, 0, 1) \ |
614 F(Verify, 1, 1) | 614 F(Verify, 1, 1) |
615 | 615 |
616 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ | 616 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ |
617 F(ArrayBufferGetByteLength, 1, 1) \ | 617 F(ArrayBufferGetByteLength, 1, 1) \ |
618 F(ArrayBufferSliceImpl, 4, 1) \ | |
619 F(ArrayBufferNeuter, 1, 1) \ | 618 F(ArrayBufferNeuter, 1, 1) \ |
620 F(TypedArrayInitialize, 6, 1) \ | 619 F(TypedArrayInitialize, 6, 1) \ |
621 F(TypedArrayInitializeFromArrayLike, 4, 1) \ | 620 F(TypedArrayInitializeFromArrayLike, 4, 1) \ |
622 F(ArrayBufferViewGetByteLength, 1, 1) \ | 621 F(ArrayBufferViewGetByteLength, 1, 1) \ |
623 F(ArrayBufferViewGetByteOffset, 1, 1) \ | 622 F(ArrayBufferViewGetByteOffset, 1, 1) \ |
624 F(TypedArrayGetLength, 1, 1) \ | 623 F(TypedArrayGetLength, 1, 1) \ |
625 F(TypedArrayGetBuffer, 1, 1) \ | 624 F(TypedArrayGetBuffer, 1, 1) \ |
626 F(TypedArraySetFastCases, 3, 1) \ | 625 F(TypedArraySetFastCases, 3, 1) \ |
627 F(TypedArraySortFast, 1, 1) \ | 626 F(TypedArraySortFast, 1, 1) \ |
628 F(TypedArrayMaxSizeInHeap, 0, 1) \ | 627 F(TypedArrayMaxSizeInHeap, 0, 1) \ |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
854 kMaybeDeopted = 1 << 3, | 853 kMaybeDeopted = 1 << 3, |
855 kOptimized = 1 << 4, | 854 kOptimized = 1 << 4, |
856 kTurboFanned = 1 << 5, | 855 kTurboFanned = 1 << 5, |
857 kInterpreted = 1 << 6, | 856 kInterpreted = 1 << 6, |
858 }; | 857 }; |
859 | 858 |
860 } // namespace internal | 859 } // namespace internal |
861 } // namespace v8 | 860 } // namespace v8 |
862 | 861 |
863 #endif // V8_RUNTIME_RUNTIME_H_ | 862 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |