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 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
642 F(ArrayBufferViewGetByteOffset, 1, 1) \ | 642 F(ArrayBufferViewGetByteOffset, 1, 1) \ |
643 F(ArrayBufferViewWasNeutered, 1, 1) \ | 643 F(ArrayBufferViewWasNeutered, 1, 1) \ |
644 F(TypedArrayGetLength, 1, 1) \ | 644 F(TypedArrayGetLength, 1, 1) \ |
645 F(TypedArrayGetBuffer, 1, 1) \ | 645 F(TypedArrayGetBuffer, 1, 1) \ |
646 F(TypedArraySetFastCases, 3, 1) \ | 646 F(TypedArraySetFastCases, 3, 1) \ |
647 F(TypedArraySortFast, 1, 1) \ | 647 F(TypedArraySortFast, 1, 1) \ |
648 F(TypedArrayMaxSizeInHeap, 0, 1) \ | 648 F(TypedArrayMaxSizeInHeap, 0, 1) \ |
649 F(IsTypedArray, 1, 1) \ | 649 F(IsTypedArray, 1, 1) \ |
650 F(IsSharedTypedArray, 1, 1) \ | 650 F(IsSharedTypedArray, 1, 1) \ |
651 F(IsSharedIntegerTypedArray, 1, 1) \ | 651 F(IsSharedIntegerTypedArray, 1, 1) \ |
652 F(IsSharedInteger32TypedArray, 1, 1) | 652 F(IsSharedInteger32TypedArray, 1, 1) \ |
| 653 F(TypedArraySpeciesCreateByLength, 2, 1) |
653 | 654 |
654 #define FOR_EACH_INTRINSIC_WASM(F) \ | 655 #define FOR_EACH_INTRINSIC_WASM(F) \ |
655 F(WasmGrowMemory, 1, 1) \ | 656 F(WasmGrowMemory, 1, 1) \ |
656 F(WasmMemorySize, 0, 1) \ | 657 F(WasmMemorySize, 0, 1) \ |
657 F(ThrowWasmError, 2, 1) \ | 658 F(ThrowWasmError, 2, 1) \ |
658 F(ThrowWasmErrorFromTrapIf, 1, 1) \ | 659 F(ThrowWasmErrorFromTrapIf, 1, 1) \ |
659 F(ThrowWasmStackOverflow, 0, 1) \ | 660 F(ThrowWasmStackOverflow, 0, 1) \ |
660 F(WasmThrowTypeError, 0, 1) \ | 661 F(WasmThrowTypeError, 0, 1) \ |
661 F(WasmThrow, 2, 1) \ | 662 F(WasmThrow, 2, 1) \ |
662 F(WasmGetCaughtExceptionValue, 1, 1) \ | 663 F(WasmGetCaughtExceptionValue, 1, 1) \ |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
858 kMaybeDeopted = 1 << 3, | 859 kMaybeDeopted = 1 << 3, |
859 kOptimized = 1 << 4, | 860 kOptimized = 1 << 4, |
860 kTurboFanned = 1 << 5, | 861 kTurboFanned = 1 << 5, |
861 kInterpreted = 1 << 6, | 862 kInterpreted = 1 << 6, |
862 }; | 863 }; |
863 | 864 |
864 } // namespace internal | 865 } // namespace internal |
865 } // namespace v8 | 866 } // namespace v8 |
866 | 867 |
867 #endif // V8_RUNTIME_RUNTIME_H_ | 868 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |