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 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
532 CPP(ObjectIsExtensible) \ | 532 CPP(ObjectIsExtensible) \ |
533 CPP(ObjectIsFrozen) \ | 533 CPP(ObjectIsFrozen) \ |
534 CPP(ObjectIsSealed) \ | 534 CPP(ObjectIsSealed) \ |
535 CPP(ObjectKeys) \ | 535 CPP(ObjectKeys) \ |
536 CPP(ObjectLookupGetter) \ | 536 CPP(ObjectLookupGetter) \ |
537 CPP(ObjectLookupSetter) \ | 537 CPP(ObjectLookupSetter) \ |
538 CPP(ObjectPreventExtensions) \ | 538 CPP(ObjectPreventExtensions) \ |
539 /* ES6 section 19.1.3.6 Object.prototype.toString () */ \ | 539 /* ES6 section 19.1.3.6 Object.prototype.toString () */ \ |
540 TFJ(ObjectProtoToString, 1) \ | 540 TFJ(ObjectProtoToString, 1) \ |
541 CPP(ObjectPrototypePropertyIsEnumerable) \ | 541 CPP(ObjectPrototypePropertyIsEnumerable) \ |
| 542 CPP(ObjectPrototypeGetProto) \ |
| 543 CPP(ObjectPrototypeSetProto) \ |
542 CPP(ObjectSeal) \ | 544 CPP(ObjectSeal) \ |
543 CPP(ObjectValues) \ | 545 CPP(ObjectValues) \ |
544 \ | 546 \ |
545 TFS(HasProperty, BUILTIN, kNoExtraICState, HasProperty) \ | 547 TFS(HasProperty, BUILTIN, kNoExtraICState, HasProperty) \ |
546 TFS(InstanceOf, BUILTIN, kNoExtraICState, Compare) \ | 548 TFS(InstanceOf, BUILTIN, kNoExtraICState, Compare) \ |
547 TFS(ForInFilter, BUILTIN, kNoExtraICState, ForInFilter) \ | 549 TFS(ForInFilter, BUILTIN, kNoExtraICState, ForInFilter) \ |
548 \ | 550 \ |
549 /* Proxy */ \ | 551 /* Proxy */ \ |
550 CPP(ProxyConstructor) \ | 552 CPP(ProxyConstructor) \ |
551 CPP(ProxyConstructor_ConstructStub) \ | 553 CPP(ProxyConstructor_ConstructStub) \ |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
814 | 816 |
815 friend class Isolate; | 817 friend class Isolate; |
816 | 818 |
817 DISALLOW_COPY_AND_ASSIGN(Builtins); | 819 DISALLOW_COPY_AND_ASSIGN(Builtins); |
818 }; | 820 }; |
819 | 821 |
820 } // namespace internal | 822 } // namespace internal |
821 } // namespace v8 | 823 } // namespace v8 |
822 | 824 |
823 #endif // V8_BUILTINS_BUILTINS_H_ | 825 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |