Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Side by Side Diff: src/builtins/builtins.h

Issue 2725053007: Reland Migrate Object.prototype.valueOf to CSA (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-object.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698