| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 CPP(ArrayUnshift) \ | 286 CPP(ArrayUnshift) \ |
| 287 /* ES6 #sec-array.prototype.foreach */ \ | 287 /* ES6 #sec-array.prototype.foreach */ \ |
| 288 TFJ(ArrayForEachLoopContinuation, 6) \ | 288 TFJ(ArrayForEachLoopContinuation, 6) \ |
| 289 TFJ(ArrayForEach, 2, kCallbackFn, kThisArg) \ | 289 TFJ(ArrayForEach, 2, kCallbackFn, kThisArg) \ |
| 290 /* ES6 #sec-array.prototype.every */ \ | 290 /* ES6 #sec-array.prototype.every */ \ |
| 291 TFJ(ArrayEveryLoopContinuation, 6) \ | 291 TFJ(ArrayEveryLoopContinuation, 6) \ |
| 292 TFJ(ArrayEvery, 2, kCallbackFn, kThisArg) \ | 292 TFJ(ArrayEvery, 2, kCallbackFn, kThisArg) \ |
| 293 /* ES6 #sec-array.prototype.some */ \ | 293 /* ES6 #sec-array.prototype.some */ \ |
| 294 TFJ(ArraySomeLoopContinuation, 6) \ | 294 TFJ(ArraySomeLoopContinuation, 6) \ |
| 295 TFJ(ArraySome, 2, kCallbackFn, kThisArg) \ | 295 TFJ(ArraySome, 2, kCallbackFn, kThisArg) \ |
| 296 /* ES6 #sec-array.prototype.filter */ \ |
| 297 TFJ(ArrayFilterLoopContinuation, 6) \ |
| 298 TFJ(ArrayFilter, 2, kCallbackFn, kThisArg) \ |
| 296 /* ES6 #sec-array.prototype.entries */ \ | 299 /* ES6 #sec-array.prototype.entries */ \ |
| 297 TFJ(ArrayPrototypeEntries, 0) \ | 300 TFJ(ArrayPrototypeEntries, 0) \ |
| 298 /* ES6 #sec-array.prototype.keys */ \ | 301 /* ES6 #sec-array.prototype.keys */ \ |
| 299 TFJ(ArrayPrototypeKeys, 0) \ | 302 TFJ(ArrayPrototypeKeys, 0) \ |
| 300 /* ES6 #sec-array.prototype.values */ \ | 303 /* ES6 #sec-array.prototype.values */ \ |
| 301 TFJ(ArrayPrototypeValues, 0) \ | 304 TFJ(ArrayPrototypeValues, 0) \ |
| 302 /* ES6 #sec-%arrayiteratorprototype%.next */ \ | 305 /* ES6 #sec-%arrayiteratorprototype%.next */ \ |
| 303 TFJ(ArrayIteratorPrototypeNext, 0) \ | 306 TFJ(ArrayIteratorPrototypeNext, 0) \ |
| 304 \ | 307 \ |
| 305 /* ArrayBuffer */ \ | 308 /* ArrayBuffer */ \ |
| (...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1056 | 1059 |
| 1057 friend class Isolate; | 1060 friend class Isolate; |
| 1058 | 1061 |
| 1059 DISALLOW_COPY_AND_ASSIGN(Builtins); | 1062 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 1060 }; | 1063 }; |
| 1061 | 1064 |
| 1062 } // namespace internal | 1065 } // namespace internal |
| 1063 } // namespace v8 | 1066 } // namespace v8 |
| 1064 | 1067 |
| 1065 #endif // V8_BUILTINS_BUILTINS_H_ | 1068 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |