OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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_BUILTINS_BUILTINS_H_ | 5 #ifndef V8_BUILTINS_BUILTINS_H_ |
6 #define V8_BUILTINS_BUILTINS_H_ | 6 #define V8_BUILTINS_BUILTINS_H_ |
7 | 7 |
8 #include "src/base/flags.h" | 8 #include "src/base/flags.h" |
9 #include "src/globals.h" | 9 #include "src/globals.h" |
10 | 10 |
(...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
816 /* ES6 #sec-%typedarray%.prototype.entries */ \ | 816 /* ES6 #sec-%typedarray%.prototype.entries */ \ |
817 TFJ(TypedArrayPrototypeEntries, 0) \ | 817 TFJ(TypedArrayPrototypeEntries, 0) \ |
818 /* ES6 #sec-%typedarray%.prototype.keys */ \ | 818 /* ES6 #sec-%typedarray%.prototype.keys */ \ |
819 TFJ(TypedArrayPrototypeKeys, 0) \ | 819 TFJ(TypedArrayPrototypeKeys, 0) \ |
820 /* ES6 #sec-%typedarray%.prototype.values */ \ | 820 /* ES6 #sec-%typedarray%.prototype.values */ \ |
821 TFJ(TypedArrayPrototypeValues, 0) \ | 821 TFJ(TypedArrayPrototypeValues, 0) \ |
822 /* ES6 #sec-%typedarray%.prototype.copywithin */ \ | 822 /* ES6 #sec-%typedarray%.prototype.copywithin */ \ |
823 CPP(TypedArrayPrototypeCopyWithin) \ | 823 CPP(TypedArrayPrototypeCopyWithin) \ |
824 \ | 824 \ |
825 /* Wasm */ \ | 825 /* Wasm */ \ |
| 826 ASM(WasmCompileLazy) \ |
826 TFS(WasmStackGuard, BUILTIN, kNoExtraICState, WasmRuntimeCall, 1) \ | 827 TFS(WasmStackGuard, BUILTIN, kNoExtraICState, WasmRuntimeCall, 1) \ |
827 TFS(ThrowWasmTrapUnreachable, BUILTIN, kNoExtraICState, WasmRuntimeCall, 1) \ | 828 TFS(ThrowWasmTrapUnreachable, BUILTIN, kNoExtraICState, WasmRuntimeCall, 1) \ |
828 TFS(ThrowWasmTrapMemOutOfBounds, BUILTIN, kNoExtraICState, WasmRuntimeCall, \ | 829 TFS(ThrowWasmTrapMemOutOfBounds, BUILTIN, kNoExtraICState, WasmRuntimeCall, \ |
829 1) \ | 830 1) \ |
830 TFS(ThrowWasmTrapDivByZero, BUILTIN, kNoExtraICState, WasmRuntimeCall, 1) \ | 831 TFS(ThrowWasmTrapDivByZero, BUILTIN, kNoExtraICState, WasmRuntimeCall, 1) \ |
831 TFS(ThrowWasmTrapDivUnrepresentable, BUILTIN, kNoExtraICState, \ | 832 TFS(ThrowWasmTrapDivUnrepresentable, BUILTIN, kNoExtraICState, \ |
832 WasmRuntimeCall, 1) \ | 833 WasmRuntimeCall, 1) \ |
833 TFS(ThrowWasmTrapRemByZero, BUILTIN, kNoExtraICState, WasmRuntimeCall, 1) \ | 834 TFS(ThrowWasmTrapRemByZero, BUILTIN, kNoExtraICState, WasmRuntimeCall, 1) \ |
834 TFS(ThrowWasmTrapFloatUnrepresentable, BUILTIN, kNoExtraICState, \ | 835 TFS(ThrowWasmTrapFloatUnrepresentable, BUILTIN, kNoExtraICState, \ |
835 WasmRuntimeCall, 1) \ | 836 WasmRuntimeCall, 1) \ |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
991 | 992 |
992 friend class Isolate; | 993 friend class Isolate; |
993 | 994 |
994 DISALLOW_COPY_AND_ASSIGN(Builtins); | 995 DISALLOW_COPY_AND_ASSIGN(Builtins); |
995 }; | 996 }; |
996 | 997 |
997 } // namespace internal | 998 } // namespace internal |
998 } // namespace v8 | 999 } // namespace v8 |
999 | 1000 |
1000 #endif // V8_BUILTINS_BUILTINS_H_ | 1001 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |