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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 /* ES6 #sec-array.prototype.values */ \ | 282 /* ES6 #sec-array.prototype.values */ \ |
283 TFJ(ArrayPrototypeValues, 0) \ | 283 TFJ(ArrayPrototypeValues, 0) \ |
284 /* ES6 #sec-%arrayiteratorprototype%.next */ \ | 284 /* ES6 #sec-%arrayiteratorprototype%.next */ \ |
285 TFJ(ArrayIteratorPrototypeNext, 0) \ | 285 TFJ(ArrayIteratorPrototypeNext, 0) \ |
286 \ | 286 \ |
287 /* ArrayBuffer */ \ | 287 /* ArrayBuffer */ \ |
288 CPP(ArrayBufferConstructor) \ | 288 CPP(ArrayBufferConstructor) \ |
289 CPP(ArrayBufferConstructor_ConstructStub) \ | 289 CPP(ArrayBufferConstructor_ConstructStub) \ |
290 CPP(ArrayBufferPrototypeGetByteLength) \ | 290 CPP(ArrayBufferPrototypeGetByteLength) \ |
291 CPP(ArrayBufferIsView) \ | 291 CPP(ArrayBufferIsView) \ |
| 292 CPP(ArrayBufferPrototypeSlice) \ |
292 \ | 293 \ |
293 /* AsyncFunction */ \ | 294 /* AsyncFunction */ \ |
294 TFJ(AsyncFunctionAwaitCaught, 3) \ | 295 TFJ(AsyncFunctionAwaitCaught, 3) \ |
295 TFJ(AsyncFunctionAwaitUncaught, 3) \ | 296 TFJ(AsyncFunctionAwaitUncaught, 3) \ |
296 TFJ(AsyncFunctionAwaitRejectClosure, 1) \ | 297 TFJ(AsyncFunctionAwaitRejectClosure, 1) \ |
297 TFJ(AsyncFunctionAwaitResolveClosure, 1) \ | 298 TFJ(AsyncFunctionAwaitResolveClosure, 1) \ |
298 TFJ(AsyncFunctionPromiseCreate, 0) \ | 299 TFJ(AsyncFunctionPromiseCreate, 0) \ |
299 TFJ(AsyncFunctionPromiseRelease, 1) \ | 300 TFJ(AsyncFunctionPromiseRelease, 1) \ |
300 \ | 301 \ |
301 /* Boolean */ \ | 302 /* Boolean */ \ |
(...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
992 | 993 |
993 friend class Isolate; | 994 friend class Isolate; |
994 | 995 |
995 DISALLOW_COPY_AND_ASSIGN(Builtins); | 996 DISALLOW_COPY_AND_ASSIGN(Builtins); |
996 }; | 997 }; |
997 | 998 |
998 } // namespace internal | 999 } // namespace internal |
999 } // namespace v8 | 1000 } // namespace v8 |
1000 | 1001 |
1001 #endif // V8_BUILTINS_BUILTINS_H_ | 1002 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |