| 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 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 908 /* ES6 #sec-%typedarray%.prototype.values */ \ | 908 /* ES6 #sec-%typedarray%.prototype.values */ \ |
| 909 TFJ(TypedArrayPrototypeValues, 0) \ | 909 TFJ(TypedArrayPrototypeValues, 0) \ |
| 910 /* ES6 #sec-%typedarray%.prototype.copywithin */ \ | 910 /* ES6 #sec-%typedarray%.prototype.copywithin */ \ |
| 911 CPP(TypedArrayPrototypeCopyWithin) \ | 911 CPP(TypedArrayPrototypeCopyWithin) \ |
| 912 /* ES6 #sec-%typedarray%.prototype.fill */ \ | 912 /* ES6 #sec-%typedarray%.prototype.fill */ \ |
| 913 CPP(TypedArrayPrototypeFill) \ | 913 CPP(TypedArrayPrototypeFill) \ |
| 914 /* ES7 #sec-%typedarray%.prototype.includes */ \ | 914 /* ES7 #sec-%typedarray%.prototype.includes */ \ |
| 915 CPP(TypedArrayPrototypeIncludes) \ | 915 CPP(TypedArrayPrototypeIncludes) \ |
| 916 /* ES6 #sec-%typedarray%.prototype.indexof */ \ | 916 /* ES6 #sec-%typedarray%.prototype.indexof */ \ |
| 917 CPP(TypedArrayPrototypeIndexOf) \ | 917 CPP(TypedArrayPrototypeIndexOf) \ |
| 918 /* ES6 #sec-%typedarray%.prototype.indexof */ \ | 918 /* ES6 #sec-%typedarray%.prototype.lastindexof */ \ |
| 919 CPP(TypedArrayPrototypeLastIndexOf) \ | 919 CPP(TypedArrayPrototypeLastIndexOf) \ |
| 920 /* ES6 #sec-%typedarray%.prototype.reverse */ \ |
| 921 CPP(TypedArrayPrototypeReverse) \ |
| 920 \ | 922 \ |
| 921 /* Wasm */ \ | 923 /* Wasm */ \ |
| 922 ASM(WasmCompileLazy) \ | 924 ASM(WasmCompileLazy) \ |
| 923 TFS(WasmStackGuard, BUILTIN, kNoExtraICState, WasmRuntimeCall, 1) \ | 925 TFS(WasmStackGuard, BUILTIN, kNoExtraICState, WasmRuntimeCall, 1) \ |
| 924 TFS(ThrowWasmTrapUnreachable, BUILTIN, kNoExtraICState, WasmRuntimeCall, 1) \ | 926 TFS(ThrowWasmTrapUnreachable, BUILTIN, kNoExtraICState, WasmRuntimeCall, 1) \ |
| 925 TFS(ThrowWasmTrapMemOutOfBounds, BUILTIN, kNoExtraICState, WasmRuntimeCall, \ | 927 TFS(ThrowWasmTrapMemOutOfBounds, BUILTIN, kNoExtraICState, WasmRuntimeCall, \ |
| 926 1) \ | 928 1) \ |
| 927 TFS(ThrowWasmTrapDivByZero, BUILTIN, kNoExtraICState, WasmRuntimeCall, 1) \ | 929 TFS(ThrowWasmTrapDivByZero, BUILTIN, kNoExtraICState, WasmRuntimeCall, 1) \ |
| 928 TFS(ThrowWasmTrapDivUnrepresentable, BUILTIN, kNoExtraICState, \ | 930 TFS(ThrowWasmTrapDivUnrepresentable, BUILTIN, kNoExtraICState, \ |
| 929 WasmRuntimeCall, 1) \ | 931 WasmRuntimeCall, 1) \ |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1125 | 1127 |
| 1126 friend class Isolate; | 1128 friend class Isolate; |
| 1127 | 1129 |
| 1128 DISALLOW_COPY_AND_ASSIGN(Builtins); | 1130 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 1129 }; | 1131 }; |
| 1130 | 1132 |
| 1131 } // namespace internal | 1133 } // namespace internal |
| 1132 } // namespace v8 | 1134 } // namespace v8 |
| 1133 | 1135 |
| 1134 #endif // V8_BUILTINS_BUILTINS_H_ | 1136 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |