| Index: src/compiler/bytecode-graph-builder.cc
|
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
|
| index 1f87c5f00e57d2bd2475c17cf375d9a01df43e53..575aa4608e4f6bb8d1854db7f0bcee3622d42280 100644
|
| --- a/src/compiler/bytecode-graph-builder.cc
|
| +++ b/src/compiler/bytecode-graph-builder.cc
|
| @@ -374,6 +374,24 @@ void BytecodeGraphBuilder::VisitMod(
|
| }
|
|
|
|
|
| +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::VisitShiftLeft(
|
| const interpreter::BytecodeArrayIterator& iterator) {
|
| BuildBinaryOp(javascript()->ShiftLeft(language_mode()), iterator);
|
|
|