Index: src/compiler/bytecode-graph-builder.cc |
diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc |
index 10f44a677abd1c1df8301a7fe6e7ae2c346cdc76..6af625e0a63740cac660ad0d4ed45752eefb5900 100644 |
--- a/src/compiler/bytecode-graph-builder.cc |
+++ b/src/compiler/bytecode-graph-builder.cc |
@@ -326,6 +326,108 @@ void BytecodeGraphBuilder::VisitMod( |
} |
+void BytecodeGraphBuilder::VisitTestEqual( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitTestNotEqual( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitTestEqualStrict( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitTestNotEqualStrict( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitTestLessThan( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitTestGreaterThan( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitTestLessThanEqual( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitTestGreaterThanEqual( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitTestIn( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitTestInstanceOf( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitCastToBoolean( |
+ const interpreter::BytecodeArrayIterator& CastToBoolean) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitJump( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitJumpConstant( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitJumpIfTrue( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitJumpIfTrueConstant( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitJumpIfFalse( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
+void BytecodeGraphBuilder::VisitJumpIfFalseConstant( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
void BytecodeGraphBuilder::VisitReturn( |
const interpreter::BytecodeArrayIterator& iterator) { |
Node* control = |