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 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
626 CPP(ObjectIs) \ | 626 CPP(ObjectIs) \ |
627 CPP(ObjectIsExtensible) \ | 627 CPP(ObjectIsExtensible) \ |
628 CPP(ObjectIsFrozen) \ | 628 CPP(ObjectIsFrozen) \ |
629 CPP(ObjectIsSealed) \ | 629 CPP(ObjectIsSealed) \ |
630 CPP(ObjectKeys) \ | 630 CPP(ObjectKeys) \ |
631 CPP(ObjectLookupGetter) \ | 631 CPP(ObjectLookupGetter) \ |
632 CPP(ObjectLookupSetter) \ | 632 CPP(ObjectLookupSetter) \ |
633 CPP(ObjectPreventExtensions) \ | 633 CPP(ObjectPreventExtensions) \ |
634 /* ES6 section 19.1.3.6 Object.prototype.toString () */ \ | 634 /* ES6 section 19.1.3.6 Object.prototype.toString () */ \ |
635 TFJ(ObjectProtoToString, 0) \ | 635 TFJ(ObjectProtoToString, 0) \ |
| 636 TFJ(ObjectPrototypeValueOf, 0) \ |
636 CPP(ObjectPrototypePropertyIsEnumerable) \ | 637 CPP(ObjectPrototypePropertyIsEnumerable) \ |
637 CPP(ObjectPrototypeGetProto) \ | 638 CPP(ObjectPrototypeGetProto) \ |
638 CPP(ObjectPrototypeSetProto) \ | 639 CPP(ObjectPrototypeSetProto) \ |
639 CPP(ObjectSeal) \ | 640 CPP(ObjectSeal) \ |
640 CPP(ObjectValues) \ | 641 CPP(ObjectValues) \ |
641 \ | 642 \ |
642 /* instanceof */ \ | 643 /* instanceof */ \ |
643 TFS(OrdinaryHasInstance, BUILTIN, kNoExtraICState, Compare, 1) \ | 644 TFS(OrdinaryHasInstance, BUILTIN, kNoExtraICState, Compare, 1) \ |
644 TFS(InstanceOf, BUILTIN, kNoExtraICState, Compare, 1) \ | 645 TFS(InstanceOf, BUILTIN, kNoExtraICState, Compare, 1) \ |
645 \ | 646 \ |
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
994 | 995 |
995 friend class Isolate; | 996 friend class Isolate; |
996 | 997 |
997 DISALLOW_COPY_AND_ASSIGN(Builtins); | 998 DISALLOW_COPY_AND_ASSIGN(Builtins); |
998 }; | 999 }; |
999 | 1000 |
1000 } // namespace internal | 1001 } // namespace internal |
1001 } // namespace v8 | 1002 } // namespace v8 |
1002 | 1003 |
1003 #endif // V8_BUILTINS_BUILTINS_H_ | 1004 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |