| 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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 CPP(ObjectPrototypeGetProto) \ | 555 CPP(ObjectPrototypeGetProto) \ |
| 556 CPP(ObjectPrototypeSetProto) \ | 556 CPP(ObjectPrototypeSetProto) \ |
| 557 CPP(ObjectSeal) \ | 557 CPP(ObjectSeal) \ |
| 558 CPP(ObjectValues) \ | 558 CPP(ObjectValues) \ |
| 559 \ | 559 \ |
| 560 TFS(HasProperty, BUILTIN, kNoExtraICState, HasProperty) \ | 560 TFS(HasProperty, BUILTIN, kNoExtraICState, HasProperty) \ |
| 561 TFS(InstanceOf, BUILTIN, kNoExtraICState, Compare) \ | 561 TFS(InstanceOf, BUILTIN, kNoExtraICState, Compare) \ |
| 562 TFS(ForInFilter, BUILTIN, kNoExtraICState, ForInFilter) \ | 562 TFS(ForInFilter, BUILTIN, kNoExtraICState, ForInFilter) \ |
| 563 \ | 563 \ |
| 564 /* Promise */ \ | 564 /* Promise */ \ |
| 565 TFJ(PromiseConstructor, 1) \ |
| 565 CPP(CreateResolvingFunctions) \ | 566 CPP(CreateResolvingFunctions) \ |
| 566 CPP(PromiseResolveClosure) \ | 567 CPP(PromiseResolveClosure) \ |
| 567 CPP(PromiseRejectClosure) \ | 568 CPP(PromiseRejectClosure) \ |
| 568 \ | 569 \ |
| 569 /* Proxy */ \ | 570 /* Proxy */ \ |
| 570 CPP(ProxyConstructor) \ | 571 CPP(ProxyConstructor) \ |
| 571 CPP(ProxyConstructor_ConstructStub) \ | 572 CPP(ProxyConstructor_ConstructStub) \ |
| 572 \ | 573 \ |
| 573 /* Reflect */ \ | 574 /* Reflect */ \ |
| 574 ASM(ReflectApply) \ | 575 ASM(ReflectApply) \ |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 841 | 842 |
| 842 friend class Isolate; | 843 friend class Isolate; |
| 843 | 844 |
| 844 DISALLOW_COPY_AND_ASSIGN(Builtins); | 845 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 845 }; | 846 }; |
| 846 | 847 |
| 847 } // namespace internal | 848 } // namespace internal |
| 848 } // namespace v8 | 849 } // namespace v8 |
| 849 | 850 |
| 850 #endif // V8_BUILTINS_BUILTINS_H_ | 851 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |