| Index: src/compiler/bytecode-graph-builder.cc
|
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
|
| index d3825f6e695f85edec1a8b32a483f0e5d8c7666b..897c4ef30ffe44de0b8c1058e5f0c9ce1180ff2d 100644
|
| --- a/src/compiler/bytecode-graph-builder.cc
|
| +++ b/src/compiler/bytecode-graph-builder.cc
|
| @@ -255,25 +255,49 @@ void BytecodeGraphBuilder::VisitLdaGlobal(
|
| }
|
|
|
|
|
| -void BytecodeGraphBuilder::VisitLoadIC(
|
| +void BytecodeGraphBuilder::VisitLoadICSloppy(
|
| const interpreter::BytecodeArrayIterator& iterator) {
|
| UNIMPLEMENTED();
|
| }
|
|
|
|
|
| -void BytecodeGraphBuilder::VisitKeyedLoadIC(
|
| +void BytecodeGraphBuilder::VisitLoadICStrict(
|
| const interpreter::BytecodeArrayIterator& iterator) {
|
| UNIMPLEMENTED();
|
| }
|
|
|
|
|
| -void BytecodeGraphBuilder::VisitStoreIC(
|
| +void BytecodeGraphBuilder::VisitKeyedLoadICSloppy(
|
| const interpreter::BytecodeArrayIterator& iterator) {
|
| UNIMPLEMENTED();
|
| }
|
|
|
|
|
| -void BytecodeGraphBuilder::VisitKeyedStoreIC(
|
| +void BytecodeGraphBuilder::VisitKeyedLoadICStrict(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitStoreICSloppy(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitStoreICStrict(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitKeyedStoreICSloppy(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitKeyedStoreICStrict(
|
| const interpreter::BytecodeArrayIterator& iterator) {
|
| UNIMPLEMENTED();
|
| }
|
|
|