Index: src/compiler/bytecode-graph-builder.cc |
diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc |
index b2dc2c295680ede7fc3d3ba29ddf742b4ca5a1ba..fe25bbd3693e4ed871b5206050b0422ac18ab675 100644 |
--- a/src/compiler/bytecode-graph-builder.cc |
+++ b/src/compiler/bytecode-graph-builder.cc |
@@ -308,6 +308,24 @@ void BytecodeGraphBuilder::BuildBinaryOp( |
} |
+void BytecodeGraphBuilder::VisitBitwiseOr( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ BuildBinaryOp(javascript()->BitwiseOr(language_mode()), iterator); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitBitwiseXor( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ BuildBinaryOp(javascript()->BitwiseXor(language_mode()), iterator); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitBitwiseAnd( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ BuildBinaryOp(javascript()->BitwiseAnd(language_mode()), iterator); |
+} |
+ |
+ |
void BytecodeGraphBuilder::VisitAdd( |
const interpreter::BytecodeArrayIterator& iterator) { |
BuildBinaryOp(javascript()->Add(language_mode()), iterator); |