| 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 TFJ(ArrayIncludes, 2) \ | 268 TFJ(ArrayIncludes, 2) \ |
| 269 TFJ(ArrayIndexOf, 2) \ | 269 TFJ(ArrayIndexOf, 2) \ |
| 270 CPP(ArrayPop) \ | 270 CPP(ArrayPop) \ |
| 271 CPP(ArrayPush) \ | 271 CPP(ArrayPush) \ |
| 272 TFJ(FastArrayPush, -1) \ | 272 TFJ(FastArrayPush, -1) \ |
| 273 CPP(ArrayShift) \ | 273 CPP(ArrayShift) \ |
| 274 CPP(ArraySlice) \ | 274 CPP(ArraySlice) \ |
| 275 CPP(ArraySplice) \ | 275 CPP(ArraySplice) \ |
| 276 CPP(ArrayUnshift) \ | 276 CPP(ArrayUnshift) \ |
| 277 TFJ(ArrayForEach, 2) \ | 277 TFJ(ArrayForEach, 2) \ |
| 278 TFJ(ArrayEvery, 2) \ |
| 279 TFJ(ArraySome, 2) \ |
| 278 /* ES6 #sec-array.prototype.entries */ \ | 280 /* ES6 #sec-array.prototype.entries */ \ |
| 279 TFJ(ArrayPrototypeEntries, 0) \ | 281 TFJ(ArrayPrototypeEntries, 0) \ |
| 280 /* ES6 #sec-array.prototype.keys */ \ | 282 /* ES6 #sec-array.prototype.keys */ \ |
| 281 TFJ(ArrayPrototypeKeys, 0) \ | 283 TFJ(ArrayPrototypeKeys, 0) \ |
| 282 /* ES6 #sec-array.prototype.values */ \ | 284 /* ES6 #sec-array.prototype.values */ \ |
| 283 TFJ(ArrayPrototypeValues, 0) \ | 285 TFJ(ArrayPrototypeValues, 0) \ |
| 284 /* ES6 #sec-%arrayiteratorprototype%.next */ \ | 286 /* ES6 #sec-%arrayiteratorprototype%.next */ \ |
| 285 TFJ(ArrayIteratorPrototypeNext, 0) \ | 287 TFJ(ArrayIteratorPrototypeNext, 0) \ |
| 286 \ | 288 \ |
| 287 /* ArrayBuffer */ \ | 289 /* ArrayBuffer */ \ |
| (...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1002 | 1004 |
| 1003 friend class Isolate; | 1005 friend class Isolate; |
| 1004 | 1006 |
| 1005 DISALLOW_COPY_AND_ASSIGN(Builtins); | 1007 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 1006 }; | 1008 }; |
| 1007 | 1009 |
| 1008 } // namespace internal | 1010 } // namespace internal |
| 1009 } // namespace v8 | 1011 } // namespace v8 |
| 1010 | 1012 |
| 1011 #endif // V8_BUILTINS_BUILTINS_H_ | 1013 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |