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/globals.h" | 9 #include "src/globals.h" |
10 | 10 |
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 CPP(ObjectIs) \ | 628 CPP(ObjectIs) \ |
629 CPP(ObjectIsExtensible) \ | 629 CPP(ObjectIsExtensible) \ |
630 CPP(ObjectIsFrozen) \ | 630 CPP(ObjectIsFrozen) \ |
631 CPP(ObjectIsSealed) \ | 631 CPP(ObjectIsSealed) \ |
632 CPP(ObjectKeys) \ | 632 CPP(ObjectKeys) \ |
633 CPP(ObjectLookupGetter) \ | 633 CPP(ObjectLookupGetter) \ |
634 CPP(ObjectLookupSetter) \ | 634 CPP(ObjectLookupSetter) \ |
635 CPP(ObjectPreventExtensions) \ | 635 CPP(ObjectPreventExtensions) \ |
636 /* ES6 section 19.1.3.6 Object.prototype.toString () */ \ | 636 /* ES6 section 19.1.3.6 Object.prototype.toString () */ \ |
637 TFJ(ObjectProtoToString, 0) \ | 637 TFJ(ObjectProtoToString, 0) \ |
| 638 TFJ(ObjectPrototypeValueOf, 0) \ |
638 CPP(ObjectPrototypePropertyIsEnumerable) \ | 639 CPP(ObjectPrototypePropertyIsEnumerable) \ |
639 CPP(ObjectPrototypeGetProto) \ | 640 CPP(ObjectPrototypeGetProto) \ |
640 CPP(ObjectPrototypeSetProto) \ | 641 CPP(ObjectPrototypeSetProto) \ |
641 CPP(ObjectSeal) \ | 642 CPP(ObjectSeal) \ |
642 CPP(ObjectValues) \ | 643 CPP(ObjectValues) \ |
643 \ | 644 \ |
644 /* instanceof */ \ | 645 /* instanceof */ \ |
645 TFS(OrdinaryHasInstance, BUILTIN, kNoExtraICState, Compare, 1) \ | 646 TFS(OrdinaryHasInstance, BUILTIN, kNoExtraICState, Compare, 1) \ |
646 TFS(InstanceOf, BUILTIN, kNoExtraICState, Compare, 1) \ | 647 TFS(InstanceOf, BUILTIN, kNoExtraICState, Compare, 1) \ |
647 \ | 648 \ |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1005 | 1006 |
1006 friend class Isolate; | 1007 friend class Isolate; |
1007 | 1008 |
1008 DISALLOW_COPY_AND_ASSIGN(Builtins); | 1009 DISALLOW_COPY_AND_ASSIGN(Builtins); |
1009 }; | 1010 }; |
1010 | 1011 |
1011 } // namespace internal | 1012 } // namespace internal |
1012 } // namespace v8 | 1013 } // namespace v8 |
1013 | 1014 |
1014 #endif // V8_BUILTINS_BUILTINS_H_ | 1015 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |