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

Unified Diff: src/interpreter/bytecodes.h

Issue 1386133002: [Interpreter] Add bitwise operators (Or, Xor, And) to interpreter (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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/interpreter/bytecodes.h
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h
index dba2c45683b39b8d095e8d60aaeea84622755826..979735b5a7e89d99f93ba9c6050b178b55994bbe 100644
--- a/src/interpreter/bytecodes.h
+++ b/src/interpreter/bytecodes.h
@@ -59,6 +59,9 @@ namespace interpreter {
V(KeyedStoreIC, OperandType::kReg8, OperandType::kReg8, OperandType::kIdx8) \
\
/* Binary Operators */ \
+ V(BitwiseOr, OperandType::kReg8) \
+ V(BitwiseXor, OperandType::kReg8) \
+ V(BitwiseAnd, OperandType::kReg8) \
rmcilroy 2015/10/06 11:09:28 nit - move these to the bottom of the binary opera
mythria 2015/10/06 13:47:40 Done.
V(Add, OperandType::kReg8) \
V(Sub, OperandType::kReg8) \
V(Mul, OperandType::kReg8) \

Powered by Google App Engine
This is Rietveld 408576698