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 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 CPP(ObjectPrototypePropertyIsEnumerable) \ | 549 CPP(ObjectPrototypePropertyIsEnumerable) \ |
550 CPP(ObjectPrototypeGetProto) \ | 550 CPP(ObjectPrototypeGetProto) \ |
551 CPP(ObjectPrototypeSetProto) \ | 551 CPP(ObjectPrototypeSetProto) \ |
552 CPP(ObjectSeal) \ | 552 CPP(ObjectSeal) \ |
553 CPP(ObjectValues) \ | 553 CPP(ObjectValues) \ |
554 \ | 554 \ |
555 TFS(HasProperty, BUILTIN, kNoExtraICState, HasProperty) \ | 555 TFS(HasProperty, BUILTIN, kNoExtraICState, HasProperty) \ |
556 TFS(InstanceOf, BUILTIN, kNoExtraICState, Compare) \ | 556 TFS(InstanceOf, BUILTIN, kNoExtraICState, Compare) \ |
557 TFS(ForInFilter, BUILTIN, kNoExtraICState, ForInFilter) \ | 557 TFS(ForInFilter, BUILTIN, kNoExtraICState, ForInFilter) \ |
558 \ | 558 \ |
| 559 /* Promise */ \ |
| 560 CPP(CreateResolvingFunctions) \ |
| 561 CPP(PromiseResolveClosure) \ |
| 562 CPP(PromiseRejectClosure) \ |
| 563 \ |
559 /* Proxy */ \ | 564 /* Proxy */ \ |
560 CPP(ProxyConstructor) \ | 565 CPP(ProxyConstructor) \ |
561 CPP(ProxyConstructor_ConstructStub) \ | 566 CPP(ProxyConstructor_ConstructStub) \ |
562 \ | 567 \ |
563 /* Reflect */ \ | 568 /* Reflect */ \ |
564 ASM(ReflectApply) \ | 569 ASM(ReflectApply) \ |
565 ASM(ReflectConstruct) \ | 570 ASM(ReflectConstruct) \ |
566 CPP(ReflectDefineProperty) \ | 571 CPP(ReflectDefineProperty) \ |
567 CPP(ReflectDeleteProperty) \ | 572 CPP(ReflectDeleteProperty) \ |
568 CPP(ReflectGet) \ | 573 CPP(ReflectGet) \ |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
831 | 836 |
832 friend class Isolate; | 837 friend class Isolate; |
833 | 838 |
834 DISALLOW_COPY_AND_ASSIGN(Builtins); | 839 DISALLOW_COPY_AND_ASSIGN(Builtins); |
835 }; | 840 }; |
836 | 841 |
837 } // namespace internal | 842 } // namespace internal |
838 } // namespace v8 | 843 } // namespace v8 |
839 | 844 |
840 #endif // V8_BUILTINS_BUILTINS_H_ | 845 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |