Chromium Code Reviews| Index: src/compiler/bytecode-graph-builder.cc |
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc |
| index a0b2813014991666b9d50a6e0f9d91dab2b6e8b2..791e2a05710ef1a70f6682a9c86176b47d79b0c9 100644 |
| --- a/src/compiler/bytecode-graph-builder.cc |
| +++ b/src/compiler/bytecode-graph-builder.cc |
| @@ -530,6 +530,18 @@ void BytecodeGraphBuilder::VisitJumpIfTrueConstant( |
| } |
| +void BytecodeGraphBuilder::VisitJumpIfToBooleanTrue( |
| + const interpreter::BytecodeArrayIterator& iterator) { |
| + UNIMPLEMENTED(); |
| +} |
| + |
| + |
| +void BytecodeGraphBuilder::VisitJumpIfToBooleanTrueConstant( |
| + const interpreter::BytecodeArrayIterator& iterator) { |
| + UNIMPLEMENTED(); |
| +} |
| + |
| + |
| void BytecodeGraphBuilder::VisitJumpIfFalse( |
| const interpreter::BytecodeArrayIterator& iterator) { |
| UNIMPLEMENTED(); |
| @@ -542,6 +554,18 @@ void BytecodeGraphBuilder::VisitJumpIfFalseConstant( |
| } |
| +void BytecodeGraphBuilder::VisitJumpIfToBooleanFalse( |
|
rmcilroy
2015/10/13 15:43:24
nit - group the JumpIfToBoolean operators
mythria
2015/10/14 13:33:42
Done.
|
| + const interpreter::BytecodeArrayIterator& iterator) { |
| + UNIMPLEMENTED(); |
| +} |
| + |
| + |
| +void BytecodeGraphBuilder::VisitJumpIfToBooleanFalseConstant( |
| + const interpreter::BytecodeArrayIterator& iterator) { |
| + UNIMPLEMENTED(); |
| +} |
| + |
| + |
| void BytecodeGraphBuilder::VisitReturn( |
| const interpreter::BytecodeArrayIterator& iterator) { |
| Node* control = |