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