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

Unified Diff: src/runtime/runtime.h

Issue 1925463003: [turbofan] Don't use the CompareIC in JSGenericLowering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@5.0
Patch Set: Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ppc/code-stubs-ppc.cc ('k') | src/runtime/runtime-interpreter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/runtime/runtime.h
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
index 3b97bb2b369424dd823e88fda4da4b80fa88c12f..7019c3bf041907a5b5c2d6c3630457ada3c0ab59 100644
--- a/src/runtime/runtime.h
+++ b/src/runtime/runtime.h
@@ -206,14 +206,6 @@ namespace internal {
F(ForInStep, 1, 1)
#define FOR_EACH_INTRINSIC_INTERPRETER(F) \
- F(InterpreterEquals, 2, 1) \
- F(InterpreterNotEquals, 2, 1) \
- F(InterpreterStrictEquals, 2, 1) \
- F(InterpreterStrictNotEquals, 2, 1) \
- F(InterpreterLessThan, 2, 1) \
- F(InterpreterGreaterThan, 2, 1) \
- F(InterpreterLessThanOrEqual, 2, 1) \
- F(InterpreterGreaterThanOrEqual, 2, 1) \
F(InterpreterToBoolean, 1, 1) \
F(InterpreterLogicalNot, 1, 1) \
F(InterpreterTypeOf, 1, 1) \
@@ -461,8 +453,6 @@ namespace internal {
F(ToLength, 1, 1) \
F(ToString, 1, 1) \
F(ToName, 1, 1) \
- F(Equals, 2, 1) \
- F(StrictEquals, 2, 1) \
F(SameValue, 2, 1) \
F(SameValueZero, 2, 1) \
F(Compare, 3, 1) \
@@ -497,7 +487,15 @@ namespace internal {
F(ShiftRightLogical, 2, 1) \
F(BitwiseAnd, 2, 1) \
F(BitwiseOr, 2, 1) \
- F(BitwiseXor, 2, 1)
+ F(BitwiseXor, 2, 1) \
+ F(Equal, 2, 1) \
+ F(NotEqual, 2, 1) \
+ F(StrictEqual, 2, 1) \
+ F(StrictNotEqual, 2, 1) \
+ F(LessThan, 2, 1) \
+ F(GreaterThan, 2, 1) \
+ F(LessThanOrEqual, 2, 1) \
+ F(GreaterThanOrEqual, 2, 1)
#define FOR_EACH_INTRINSIC_PROXY(F) \
F(IsJSProxy, 1, 1) \
« no previous file with comments | « src/ppc/code-stubs-ppc.cc ('k') | src/runtime/runtime-interpreter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698