| 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) \ | |
| 639 CPP(ObjectPrototypePropertyIsEnumerable) \ | 638 CPP(ObjectPrototypePropertyIsEnumerable) \ |
| 640 CPP(ObjectPrototypeGetProto) \ | 639 CPP(ObjectPrototypeGetProto) \ |
| 641 CPP(ObjectPrototypeSetProto) \ | 640 CPP(ObjectPrototypeSetProto) \ |
| 642 CPP(ObjectSeal) \ | 641 CPP(ObjectSeal) \ |
| 643 CPP(ObjectValues) \ | 642 CPP(ObjectValues) \ |
| 644 \ | 643 \ |
| 645 /* instanceof */ \ | 644 /* instanceof */ \ |
| 646 TFS(OrdinaryHasInstance, BUILTIN, kNoExtraICState, Compare, 1) \ | 645 TFS(OrdinaryHasInstance, BUILTIN, kNoExtraICState, Compare, 1) \ |
| 647 TFS(InstanceOf, BUILTIN, kNoExtraICState, Compare, 1) \ | 646 TFS(InstanceOf, BUILTIN, kNoExtraICState, Compare, 1) \ |
| 648 \ | 647 \ |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1006 | 1005 |
| 1007 friend class Isolate; | 1006 friend class Isolate; |
| 1008 | 1007 |
| 1009 DISALLOW_COPY_AND_ASSIGN(Builtins); | 1008 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 1010 }; | 1009 }; |
| 1011 | 1010 |
| 1012 } // namespace internal | 1011 } // namespace internal |
| 1013 } // namespace v8 | 1012 } // namespace v8 |
| 1014 | 1013 |
| 1015 #endif // V8_BUILTINS_BUILTINS_H_ | 1014 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |