| Index: src/compiler/bytecode-graph-builder.cc
|
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
|
| index d24ae3c56fbb5315249661106707a77988c7069d..e5a989292867afd9ef7f0836e3e143420c4842ba 100644
|
| --- a/src/compiler/bytecode-graph-builder.cc
|
| +++ b/src/compiler/bytecode-graph-builder.cc
|
| @@ -1706,19 +1706,11 @@ void BytecodeGraphBuilder::VisitReturn(
|
|
|
| void BytecodeGraphBuilder::VisitForInPrepare(
|
| const interpreter::BytecodeArrayIterator& iterator) {
|
| - Node* prepare = nullptr;
|
| - {
|
| - FrameStateBeforeAndAfter states(this, iterator);
|
| - Node* receiver = environment()->LookupAccumulator();
|
| - prepare = NewNode(javascript()->ForInPrepare(), receiver);
|
| - environment()->RecordAfterState(prepare, &states);
|
| - }
|
| - // Project cache_type, cache_array, cache_length into register
|
| - // operands 1, 2, 3.
|
| - for (int i = 0; i < 3; i++) {
|
| - environment()->BindRegister(iterator.GetRegisterOperand(i),
|
| - NewNode(common()->Projection(i), prepare));
|
| - }
|
| + FrameStateBeforeAndAfter states(this, iterator);
|
| + Node* receiver = environment()->LookupAccumulator();
|
| + Node* prepare = NewNode(javascript()->ForInPrepare(), receiver);
|
| + environment()->BindRegistersToProjections(iterator.GetRegisterOperand(0),
|
| + prepare, &states);
|
| }
|
|
|
|
|
| @@ -1738,11 +1730,13 @@ void BytecodeGraphBuilder::VisitForInNext(
|
| FrameStateBeforeAndAfter states(this, iterator);
|
| Node* receiver =
|
| environment()->LookupRegister(iterator.GetRegisterOperand(0));
|
| - Node* cache_type =
|
| - environment()->LookupRegister(iterator.GetRegisterOperand(1));
|
| - Node* cache_array =
|
| - environment()->LookupRegister(iterator.GetRegisterOperand(2));
|
| - Node* index = environment()->LookupRegister(iterator.GetRegisterOperand(3));
|
| + Node* index = environment()->LookupRegister(iterator.GetRegisterOperand(1));
|
| + int catch_reg_pair_index = iterator.GetRegisterOperand(2).index();
|
| + Node* cache_type = environment()->LookupRegister(
|
| + interpreter::Register(catch_reg_pair_index));
|
| + Node* cache_array = environment()->LookupRegister(
|
| + interpreter::Register(catch_reg_pair_index + 1));
|
| +
|
| Node* value = NewNode(javascript()->ForInNext(), receiver, cache_array,
|
| cache_type, index);
|
| environment()->BindAccumulator(value, &states);
|
|
|