| 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 /* ES7 #sec-array.prototype.includes */ \ | 270 /* ES7 #sec-array.prototype.includes */ \ |
| 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(ArrayFilterLoopContinuation, 6) \ |
| 280 TFJ(ArrayForEachLoopContinuation, 6) \ | 281 TFJ(ArrayForEachLoopContinuation, 6) \ |
| 281 TFJ(ArrayEveryLoopContinuation, 6) \ | 282 TFJ(ArrayEveryLoopContinuation, 6) \ |
| 282 TFJ(ArraySomeLoopContinuation, 6) \ | 283 TFJ(ArraySomeLoopContinuation, 6) \ |
| 284 TFJ(ArrayFilter, 2) \ |
| 283 TFJ(ArrayForEach, 2) \ | 285 TFJ(ArrayForEach, 2) \ |
| 284 TFJ(ArrayEvery, 2) \ | 286 TFJ(ArrayEvery, 2) \ |
| 285 TFJ(ArraySome, 2) \ | 287 TFJ(ArraySome, 2) \ |
| 286 /* ES6 #sec-array.prototype.entries */ \ | 288 /* ES6 #sec-array.prototype.entries */ \ |
| 287 TFJ(ArrayPrototypeEntries, 0) \ | 289 TFJ(ArrayPrototypeEntries, 0) \ |
| 288 /* ES6 #sec-array.prototype.keys */ \ | 290 /* ES6 #sec-array.prototype.keys */ \ |
| 289 TFJ(ArrayPrototypeKeys, 0) \ | 291 TFJ(ArrayPrototypeKeys, 0) \ |
| 290 /* ES6 #sec-array.prototype.values */ \ | 292 /* ES6 #sec-array.prototype.values */ \ |
| 291 TFJ(ArrayPrototypeValues, 0) \ | 293 TFJ(ArrayPrototypeValues, 0) \ |
| 292 /* ES6 #sec-%arrayiteratorprototype%.next */ \ | 294 /* ES6 #sec-%arrayiteratorprototype%.next */ \ |
| (...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1037 | 1039 |
| 1038 friend class Isolate; | 1040 friend class Isolate; |
| 1039 | 1041 |
| 1040 DISALLOW_COPY_AND_ASSIGN(Builtins); | 1042 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 1041 }; | 1043 }; |
| 1042 | 1044 |
| 1043 } // namespace internal | 1045 } // namespace internal |
| 1044 } // namespace v8 | 1046 } // namespace v8 |
| 1045 | 1047 |
| 1046 #endif // V8_BUILTINS_BUILTINS_H_ | 1048 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |