| 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 TFJ(ArrayIncludes, 2) \ | 271 TFJ(ArrayIncludes, 2) \ |
| 272 TFJ(ArrayIndexOf, 2) \ | 272 TFJ(ArrayIndexOf, 2) \ |
| 273 CPP(ArrayPop) \ | 273 CPP(ArrayPop) \ |
| 274 CPP(ArrayPush) \ | 274 CPP(ArrayPush) \ |
| 275 TFJ(FastArrayPush, -1) \ | 275 TFJ(FastArrayPush, -1) \ |
| 276 CPP(ArrayShift) \ | 276 CPP(ArrayShift) \ |
| 277 CPP(ArraySlice) \ | 277 CPP(ArraySlice) \ |
| 278 CPP(ArraySplice) \ | 278 CPP(ArraySplice) \ |
| 279 CPP(ArrayUnshift) \ | 279 CPP(ArrayUnshift) \ |
| 280 TFJ(ArrayForEach, 2) \ | 280 TFJ(ArrayForEach, 2) \ |
| 281 TFJ(ArrayEvery, 2) \ |
| 282 TFJ(ArraySome, 2) \ |
| 281 /* ES6 #sec-array.prototype.entries */ \ | 283 /* ES6 #sec-array.prototype.entries */ \ |
| 282 TFJ(ArrayPrototypeEntries, 0) \ | 284 TFJ(ArrayPrototypeEntries, 0) \ |
| 283 /* ES6 #sec-array.prototype.keys */ \ | 285 /* ES6 #sec-array.prototype.keys */ \ |
| 284 TFJ(ArrayPrototypeKeys, 0) \ | 286 TFJ(ArrayPrototypeKeys, 0) \ |
| 285 /* ES6 #sec-array.prototype.values */ \ | 287 /* ES6 #sec-array.prototype.values */ \ |
| 286 TFJ(ArrayPrototypeValues, 0) \ | 288 TFJ(ArrayPrototypeValues, 0) \ |
| 287 /* ES6 #sec-%arrayiteratorprototype%.next */ \ | 289 /* ES6 #sec-%arrayiteratorprototype%.next */ \ |
| 288 TFJ(ArrayIteratorPrototypeNext, 0) \ | 290 TFJ(ArrayIteratorPrototypeNext, 0) \ |
| 289 \ | 291 \ |
| 290 /* ArrayBuffer */ \ | 292 /* ArrayBuffer */ \ |
| (...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 994 | 996 |
| 995 friend class Isolate; | 997 friend class Isolate; |
| 996 | 998 |
| 997 DISALLOW_COPY_AND_ASSIGN(Builtins); | 999 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 998 }; | 1000 }; |
| 999 | 1001 |
| 1000 } // namespace internal | 1002 } // namespace internal |
| 1001 } // namespace v8 | 1003 } // namespace v8 |
| 1002 | 1004 |
| 1003 #endif // V8_BUILTINS_BUILTINS_H_ | 1005 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |