| Index: src/compiler/bytecode-graph-builder.cc
|
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
|
| index dc3c93067acf4ac2a45c8586bac629ef79855fd8..5c81906a7e19bd664442c2e6e93a25902c03b8b9 100644
|
| --- a/src/compiler/bytecode-graph-builder.cc
|
| +++ b/src/compiler/bytecode-graph-builder.cc
|
| @@ -193,6 +193,13 @@ void BytecodeGraphBuilder::VisitLdaSmi8(
|
| }
|
|
|
|
|
| +void BytecodeGraphBuilder::VisitLdaConstantWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + Node* node = jsgraph()->Constant(iterator.GetConstantForIndexOperand(0));
|
| + environment()->BindAccumulator(node);
|
| +}
|
| +
|
| +
|
| void BytecodeGraphBuilder::VisitLdaConstant(
|
| const interpreter::BytecodeArrayIterator& iterator) {
|
| Node* node = jsgraph()->Constant(iterator.GetConstantForIndexOperand(0));
|
| @@ -261,6 +268,18 @@ void BytecodeGraphBuilder::VisitLdaGlobalStrict(
|
| }
|
|
|
|
|
| +void BytecodeGraphBuilder::VisitLdaGlobalSloppyWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitLdaGlobalStrictWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| void BytecodeGraphBuilder::VisitStaGlobalSloppy(
|
| const interpreter::BytecodeArrayIterator& iterator) {
|
| UNIMPLEMENTED();
|
| @@ -272,6 +291,17 @@ void BytecodeGraphBuilder::VisitStaGlobalStrict(
|
| UNIMPLEMENTED();
|
| }
|
|
|
| +void BytecodeGraphBuilder::VisitStaGlobalSloppyWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitStaGlobalStrictWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
|
|
| void BytecodeGraphBuilder::VisitLdaContextSlot(
|
| const interpreter::BytecodeArrayIterator& iterator) {
|
| @@ -309,6 +339,30 @@ void BytecodeGraphBuilder::VisitKeyedLoadICStrict(
|
| }
|
|
|
|
|
| +void BytecodeGraphBuilder::VisitLoadICSloppyWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitLoadICStrictWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitKeyedLoadICSloppyWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitKeyedLoadICStrictWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| void BytecodeGraphBuilder::VisitStoreICSloppy(
|
| const interpreter::BytecodeArrayIterator& iterator) {
|
| UNIMPLEMENTED();
|
| @@ -333,6 +387,30 @@ void BytecodeGraphBuilder::VisitKeyedStoreICStrict(
|
| }
|
|
|
|
|
| +void BytecodeGraphBuilder::VisitStoreICSloppyWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitStoreICStrictWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitKeyedStoreICSloppyWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitKeyedStoreICStrictWide(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| void BytecodeGraphBuilder::VisitPushContext(
|
| const interpreter::BytecodeArrayIterator& iterator) {
|
| UNIMPLEMENTED();
|
|
|