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

Side by Side Diff: src/objects.h

Issue 2934893002: [builtins] Properly optimize Object.prototype.isPrototypeOf. (Closed)
Patch Set: Created 3 years, 6 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
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_OBJECTS_H_ 5 #ifndef V8_OBJECTS_H_
6 #define V8_OBJECTS_H_ 6 #define V8_OBJECTS_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 #include <memory> 9 #include <memory>
10 10
(...skipping 4663 matching lines...) Expand 10 before | Expand all | Expand 10 after
4674 V(Date.prototype, getMinutes, DateGetMinutes) \ 4674 V(Date.prototype, getMinutes, DateGetMinutes) \
4675 V(Date.prototype, getMonth, DateGetMonth) \ 4675 V(Date.prototype, getMonth, DateGetMonth) \
4676 V(Date.prototype, getSeconds, DateGetSeconds) \ 4676 V(Date.prototype, getSeconds, DateGetSeconds) \
4677 V(Date.prototype, getTime, DateGetTime) \ 4677 V(Date.prototype, getTime, DateGetTime) \
4678 V(Function.prototype, apply, FunctionApply) \ 4678 V(Function.prototype, apply, FunctionApply) \
4679 V(Function.prototype, bind, FunctionBind) \ 4679 V(Function.prototype, bind, FunctionBind) \
4680 V(Function.prototype, call, FunctionCall) \ 4680 V(Function.prototype, call, FunctionCall) \
4681 V(Object, assign, ObjectAssign) \ 4681 V(Object, assign, ObjectAssign) \
4682 V(Object, create, ObjectCreate) \ 4682 V(Object, create, ObjectCreate) \
4683 V(Object.prototype, hasOwnProperty, ObjectHasOwnProperty) \ 4683 V(Object.prototype, hasOwnProperty, ObjectHasOwnProperty) \
4684 V(Object.prototype, isPrototypeOf, ObjectIsPrototypeOf) \
4684 V(Object.prototype, toString, ObjectToString) \ 4685 V(Object.prototype, toString, ObjectToString) \
4685 V(RegExp.prototype, compile, RegExpCompile) \ 4686 V(RegExp.prototype, compile, RegExpCompile) \
4686 V(RegExp.prototype, exec, RegExpExec) \ 4687 V(RegExp.prototype, exec, RegExpExec) \
4687 V(RegExp.prototype, test, RegExpTest) \ 4688 V(RegExp.prototype, test, RegExpTest) \
4688 V(RegExp.prototype, toString, RegExpToString) \ 4689 V(RegExp.prototype, toString, RegExpToString) \
4689 V(String.prototype, charCodeAt, StringCharCodeAt) \ 4690 V(String.prototype, charCodeAt, StringCharCodeAt) \
4690 V(String.prototype, charAt, StringCharAt) \ 4691 V(String.prototype, charAt, StringCharAt) \
4691 V(String.prototype, codePointAt, StringCodePointAt) \ 4692 V(String.prototype, codePointAt, StringCodePointAt) \
4692 V(String.prototype, concat, StringConcat) \ 4693 V(String.prototype, concat, StringConcat) \
4693 V(String.prototype, endsWith, StringEndsWith) \ 4694 V(String.prototype, endsWith, StringEndsWith) \
(...skipping 2725 matching lines...) Expand 10 before | Expand all | Expand 10 after
7419 } 7420 }
7420 }; 7421 };
7421 7422
7422 7423
7423 } // NOLINT, false-positive due to second-order macros. 7424 } // NOLINT, false-positive due to second-order macros.
7424 } // NOLINT, false-positive due to second-order macros. 7425 } // NOLINT, false-positive due to second-order macros.
7425 7426
7426 #include "src/objects/object-macros-undef.h" 7427 #include "src/objects/object-macros-undef.h"
7427 7428
7428 #endif // V8_OBJECTS_H_ 7429 #endif // V8_OBJECTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698