| Index: src/compiler/bytecode-graph-builder.cc
|
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
|
| index 12d944407f10f2cca250fa306559f2eac0b0da74..bfd41c5557ef1302c529b7ccaa72565221ba9e2d 100644
|
| --- a/src/compiler/bytecode-graph-builder.cc
|
| +++ b/src/compiler/bytecode-graph-builder.cc
|
| @@ -740,6 +740,18 @@ void BytecodeGraphBuilder::BuildStaLookupSlot(
|
| }
|
|
|
|
|
| +void BytecodeGraphBuilder::VisitLdaLookupSlotWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + VisitLdaLookupSlot(iterator);
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitLdaLookupSlotInsideTypeofWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + VisitLdaLookupSlotInsideTypeof(iterator);
|
| +}
|
| +
|
| +
|
| void BytecodeGraphBuilder::VisitStaLookupSlotSloppy(
|
| const interpreter::BytecodeArrayIterator& iterator) {
|
| BuildStaLookupSlot(LanguageMode::SLOPPY, iterator);
|
| @@ -752,6 +764,18 @@ void BytecodeGraphBuilder::VisitStaLookupSlotStrict(
|
| }
|
|
|
|
|
| +void BytecodeGraphBuilder::VisitStaLookupSlotSloppyWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + VisitStaLookupSlotSloppy(iterator);
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitStaLookupSlotStrictWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + VisitStaLookupSlotStrict(iterator);
|
| +}
|
| +
|
| +
|
| void BytecodeGraphBuilder::BuildNamedLoad(
|
| const interpreter::BytecodeArrayIterator& iterator) {
|
| FrameStateBeforeAndAfter states(this, iterator);
|
|
|