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

Unified Diff: src/runtime/runtime.h

Issue 1693833002: Remove strong mode support from binary operations. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments. Created 4 years, 10 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
Index: src/runtime/runtime.h
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
index 27cded0875f848664b0a33ac63a7ed9d6aeafb2c..bc9784cff2aa6caa93a37b683c3d74bb643268c8 100644
--- a/src/runtime/runtime.h
+++ b/src/runtime/runtime.h
@@ -470,7 +470,6 @@ namespace internal {
F(Equals, 2, 1) \
F(StrictEquals, 2, 1) \
F(Compare, 3, 1) \
- F(Compare_Strong, 3, 1) \
F(InstanceOf, 2, 1) \
F(HasInPrototypeChain, 2, 1) \
F(CreateIterResultObject, 2, 1) \
@@ -491,30 +490,18 @@ namespace internal {
F(GetObjectContextObjectGetNotifier, 1, 1) \
F(GetObjectContextNotifierPerformChange, 1, 1)
-
#define FOR_EACH_INTRINSIC_OPERATORS(F) \
F(Multiply, 2, 1) \
- F(Multiply_Strong, 2, 1) \
F(Divide, 2, 1) \
- F(Divide_Strong, 2, 1) \
F(Modulus, 2, 1) \
- F(Modulus_Strong, 2, 1) \
F(Add, 2, 1) \
- F(Add_Strong, 2, 1) \
F(Subtract, 2, 1) \
- F(Subtract_Strong, 2, 1) \
F(ShiftLeft, 2, 1) \
- F(ShiftLeft_Strong, 2, 1) \
F(ShiftRight, 2, 1) \
- F(ShiftRight_Strong, 2, 1) \
F(ShiftRightLogical, 2, 1) \
- F(ShiftRightLogical_Strong, 2, 1) \
F(BitwiseAnd, 2, 1) \
- F(BitwiseAnd_Strong, 2, 1) \
F(BitwiseOr, 2, 1) \
- F(BitwiseOr_Strong, 2, 1) \
- F(BitwiseXor, 2, 1) \
- F(BitwiseXor_Strong, 2, 1)
+ F(BitwiseXor, 2, 1)
#define FOR_EACH_INTRINSIC_PROXY(F) \
F(IsJSProxy, 1, 1) \

Powered by Google App Engine
This is Rietveld 408576698