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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 ASM(DatePrototypeGetUTCDay) \ | 232 ASM(DatePrototypeGetUTCDay) \ |
233 ASM(DatePrototypeGetUTCFullYear) \ | 233 ASM(DatePrototypeGetUTCFullYear) \ |
234 ASM(DatePrototypeGetUTCHours) \ | 234 ASM(DatePrototypeGetUTCHours) \ |
235 ASM(DatePrototypeGetUTCMilliseconds) \ | 235 ASM(DatePrototypeGetUTCMilliseconds) \ |
236 ASM(DatePrototypeGetUTCMinutes) \ | 236 ASM(DatePrototypeGetUTCMinutes) \ |
237 ASM(DatePrototypeGetUTCMonth) \ | 237 ASM(DatePrototypeGetUTCMonth) \ |
238 ASM(DatePrototypeGetUTCSeconds) \ | 238 ASM(DatePrototypeGetUTCSeconds) \ |
239 CPP(DatePrototypeGetYear) \ | 239 CPP(DatePrototypeGetYear) \ |
240 CPP(DatePrototypeSetYear) \ | 240 CPP(DatePrototypeSetYear) \ |
241 CPP(DatePrototypeToJson) \ | 241 CPP(DatePrototypeToJson) \ |
| 242 /* Error */ \ |
| 243 CPP(ErrorConstructor) \ |
| 244 CPP(ErrorCaptureStackTrace) \ |
| 245 CPP(ErrorPrototypeToString) \ |
242 /* Function */ \ | 246 /* Function */ \ |
243 CPP(FunctionConstructor) \ | 247 CPP(FunctionConstructor) \ |
244 ASM(FunctionPrototypeApply) \ | 248 ASM(FunctionPrototypeApply) \ |
245 CPP(FunctionPrototypeBind) \ | 249 CPP(FunctionPrototypeBind) \ |
246 ASM(FunctionPrototypeCall) \ | 250 ASM(FunctionPrototypeCall) \ |
247 TFJ(FunctionPrototypeHasInstance, 2) \ | 251 TFJ(FunctionPrototypeHasInstance, 2) \ |
248 CPP(FunctionPrototypeToString) \ | 252 CPP(FunctionPrototypeToString) \ |
249 /* Generator and Async */ \ | 253 /* Generator and Async */ \ |
250 CPP(GeneratorFunctionConstructor) \ | 254 CPP(GeneratorFunctionConstructor) \ |
251 TFJ(GeneratorPrototypeNext, 2) \ | 255 TFJ(GeneratorPrototypeNext, 2) \ |
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
831 friend class BuiltinFunctionTable; | 835 friend class BuiltinFunctionTable; |
832 friend class Isolate; | 836 friend class Isolate; |
833 | 837 |
834 DISALLOW_COPY_AND_ASSIGN(Builtins); | 838 DISALLOW_COPY_AND_ASSIGN(Builtins); |
835 }; | 839 }; |
836 | 840 |
837 } // namespace internal | 841 } // namespace internal |
838 } // namespace v8 | 842 } // namespace v8 |
839 | 843 |
840 #endif // V8_BUILTINS_BUILTINS_H_ | 844 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |