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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 /* ES6 #sec-array.prototype.values */ \ | 285 /* ES6 #sec-array.prototype.values */ \ |
286 TFJ(ArrayPrototypeValues, 0) \ | 286 TFJ(ArrayPrototypeValues, 0) \ |
287 /* ES6 #sec-%arrayiteratorprototype%.next */ \ | 287 /* ES6 #sec-%arrayiteratorprototype%.next */ \ |
288 TFJ(ArrayIteratorPrototypeNext, 0) \ | 288 TFJ(ArrayIteratorPrototypeNext, 0) \ |
289 \ | 289 \ |
290 /* ArrayBuffer */ \ | 290 /* ArrayBuffer */ \ |
291 CPP(ArrayBufferConstructor) \ | 291 CPP(ArrayBufferConstructor) \ |
292 CPP(ArrayBufferConstructor_ConstructStub) \ | 292 CPP(ArrayBufferConstructor_ConstructStub) \ |
293 CPP(ArrayBufferPrototypeGetByteLength) \ | 293 CPP(ArrayBufferPrototypeGetByteLength) \ |
294 CPP(ArrayBufferIsView) \ | 294 CPP(ArrayBufferIsView) \ |
| 295 CPP(ArrayBufferPrototypeSlice) \ |
295 \ | 296 \ |
296 /* AsyncFunction */ \ | 297 /* AsyncFunction */ \ |
297 TFJ(AsyncFunctionAwaitCaught, 3) \ | 298 TFJ(AsyncFunctionAwaitCaught, 3) \ |
298 TFJ(AsyncFunctionAwaitUncaught, 3) \ | 299 TFJ(AsyncFunctionAwaitUncaught, 3) \ |
299 TFJ(AsyncFunctionAwaitRejectClosure, 1) \ | 300 TFJ(AsyncFunctionAwaitRejectClosure, 1) \ |
300 TFJ(AsyncFunctionAwaitResolveClosure, 1) \ | 301 TFJ(AsyncFunctionAwaitResolveClosure, 1) \ |
301 TFJ(AsyncFunctionPromiseCreate, 0) \ | 302 TFJ(AsyncFunctionPromiseCreate, 0) \ |
302 TFJ(AsyncFunctionPromiseRelease, 1) \ | 303 TFJ(AsyncFunctionPromiseRelease, 1) \ |
303 \ | 304 \ |
304 /* Boolean */ \ | 305 /* Boolean */ \ |
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
956 | 957 |
957 friend class Isolate; | 958 friend class Isolate; |
958 | 959 |
959 DISALLOW_COPY_AND_ASSIGN(Builtins); | 960 DISALLOW_COPY_AND_ASSIGN(Builtins); |
960 }; | 961 }; |
961 | 962 |
962 } // namespace internal | 963 } // namespace internal |
963 } // namespace v8 | 964 } // namespace v8 |
964 | 965 |
965 #endif // V8_BUILTINS_BUILTINS_H_ | 966 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |