| 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 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 F(Verify, 1, 1) \ | 615 F(Verify, 1, 1) \ |
| 616 F(WasmNumInterpretedCalls, 1, 1) | 616 F(WasmNumInterpretedCalls, 1, 1) |
| 617 | 617 |
| 618 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ | 618 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ |
| 619 F(ArrayBufferGetByteLength, 1, 1) \ | 619 F(ArrayBufferGetByteLength, 1, 1) \ |
| 620 F(ArrayBufferNeuter, 1, 1) \ | 620 F(ArrayBufferNeuter, 1, 1) \ |
| 621 F(TypedArrayCopyElements, 3, 1) \ | 621 F(TypedArrayCopyElements, 3, 1) \ |
| 622 F(TypedArrayInitializeFromArrayLike, 3, 1) \ | 622 F(TypedArrayInitializeFromArrayLike, 3, 1) \ |
| 623 F(ArrayBufferViewGetByteLength, 1, 1) \ | 623 F(ArrayBufferViewGetByteLength, 1, 1) \ |
| 624 F(ArrayBufferViewGetByteOffset, 1, 1) \ | 624 F(ArrayBufferViewGetByteOffset, 1, 1) \ |
| 625 F(ArrayBufferViewWasNeutered, 1, 1) \ |
| 625 F(TypedArrayGetLength, 1, 1) \ | 626 F(TypedArrayGetLength, 1, 1) \ |
| 626 F(TypedArrayGetBuffer, 1, 1) \ | 627 F(TypedArrayGetBuffer, 1, 1) \ |
| 627 F(TypedArraySetFastCases, 3, 1) \ | 628 F(TypedArraySetFastCases, 3, 1) \ |
| 628 F(TypedArraySortFast, 1, 1) \ | 629 F(TypedArraySortFast, 1, 1) \ |
| 629 F(TypedArrayMaxSizeInHeap, 0, 1) \ | 630 F(TypedArrayMaxSizeInHeap, 0, 1) \ |
| 630 F(IsTypedArray, 1, 1) \ | 631 F(IsTypedArray, 1, 1) \ |
| 631 F(IsSharedTypedArray, 1, 1) \ | 632 F(IsSharedTypedArray, 1, 1) \ |
| 632 F(IsSharedIntegerTypedArray, 1, 1) \ | 633 F(IsSharedIntegerTypedArray, 1, 1) \ |
| 633 F(IsSharedInteger32TypedArray, 1, 1) | 634 F(IsSharedInteger32TypedArray, 1, 1) |
| 634 | 635 |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 860 kMaybeDeopted = 1 << 3, | 861 kMaybeDeopted = 1 << 3, |
| 861 kOptimized = 1 << 4, | 862 kOptimized = 1 << 4, |
| 862 kTurboFanned = 1 << 5, | 863 kTurboFanned = 1 << 5, |
| 863 kInterpreted = 1 << 6, | 864 kInterpreted = 1 << 6, |
| 864 }; | 865 }; |
| 865 | 866 |
| 866 } // namespace internal | 867 } // namespace internal |
| 867 } // namespace v8 | 868 } // namespace v8 |
| 868 | 869 |
| 869 #endif // V8_RUNTIME_RUNTIME_H_ | 870 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |