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/handles.h" | 9 #include "src/handles.h" |
10 | 10 |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 CPP(DatePrototypeToDateString) \ | 279 CPP(DatePrototypeToDateString) \ |
280 CPP(DatePrototypeToISOString) \ | 280 CPP(DatePrototypeToISOString) \ |
281 CPP(DatePrototypeToPrimitive) \ | 281 CPP(DatePrototypeToPrimitive) \ |
282 CPP(DatePrototypeToUTCString) \ | 282 CPP(DatePrototypeToUTCString) \ |
283 CPP(DatePrototypeToString) \ | 283 CPP(DatePrototypeToString) \ |
284 CPP(DatePrototypeToTimeString) \ | 284 CPP(DatePrototypeToTimeString) \ |
285 CPP(DatePrototypeValueOf) \ | 285 CPP(DatePrototypeValueOf) \ |
286 CPP(DatePrototypeToJson) \ | 286 CPP(DatePrototypeToJson) \ |
287 CPP(DateUTC) \ | 287 CPP(DateUTC) \ |
288 \ | 288 \ |
| 289 /* Error */ \ |
| 290 CPP(ErrorConstructor) \ |
| 291 CPP(ErrorCaptureStackTrace) \ |
| 292 CPP(ErrorPrototypeToString) \ |
| 293 \ |
289 /* Function */ \ | 294 /* Function */ \ |
290 CPP(FunctionConstructor) \ | 295 CPP(FunctionConstructor) \ |
291 ASM(FunctionPrototypeApply) \ | 296 ASM(FunctionPrototypeApply) \ |
292 CPP(FunctionPrototypeBind) \ | 297 CPP(FunctionPrototypeBind) \ |
293 ASM(FunctionPrototypeCall) \ | 298 ASM(FunctionPrototypeCall) \ |
294 /* ES6 section 19.2.3.6 Function.prototype [ @@hasInstance ] ( V ) */ \ | 299 /* ES6 section 19.2.3.6 Function.prototype [ @@hasInstance ] ( V ) */ \ |
295 TFJ(FunctionPrototypeHasInstance, 2) \ | 300 TFJ(FunctionPrototypeHasInstance, 2) \ |
296 CPP(FunctionPrototypeToString) \ | 301 CPP(FunctionPrototypeToString) \ |
297 \ | 302 \ |
298 /* Generator and Async */ \ | 303 /* Generator and Async */ \ |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
618 | 623 |
619 friend class Isolate; | 624 friend class Isolate; |
620 | 625 |
621 DISALLOW_COPY_AND_ASSIGN(Builtins); | 626 DISALLOW_COPY_AND_ASSIGN(Builtins); |
622 }; | 627 }; |
623 | 628 |
624 } // namespace internal | 629 } // namespace internal |
625 } // namespace v8 | 630 } // namespace v8 |
626 | 631 |
627 #endif // V8_BUILTINS_BUILTINS_H_ | 632 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |