| Index: src/compiler/bytecode-graph-builder.cc
|
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
|
| index 63fbb29b09c3c123abab873291a4ef3f735a0c39..6fec2519e8a35e065d08a8f671554703fc27d5c5 100644
|
| --- a/src/compiler/bytecode-graph-builder.cc
|
| +++ b/src/compiler/bytecode-graph-builder.cc
|
| @@ -765,7 +765,7 @@ Node* BytecodeGraphBuilder::BuildNamedLoad() {
|
| return NewNode(op, object, GetFunctionClosure());
|
| }
|
|
|
| -void BytecodeGraphBuilder::VisitLoadIC() {
|
| +void BytecodeGraphBuilder::VisitLdaNamedProperty() {
|
| FrameStateBeforeAndAfter states(this);
|
| Node* node = BuildNamedLoad();
|
| environment()->BindAccumulator(node, &states);
|
| @@ -789,7 +789,7 @@ Node* BytecodeGraphBuilder::BuildKeyedLoad() {
|
| return NewNode(op, object, key, GetFunctionClosure());
|
| }
|
|
|
| -void BytecodeGraphBuilder::VisitKeyedLoadIC() {
|
| +void BytecodeGraphBuilder::VisitLdaKeyedProperty() {
|
| FrameStateBeforeAndAfter states(this);
|
| Node* node = BuildKeyedLoad();
|
| environment()->BindAccumulator(node, &states);
|
| @@ -817,11 +817,11 @@ void BytecodeGraphBuilder::BuildNamedStore(LanguageMode language_mode) {
|
| environment()->RecordAfterState(node, &states);
|
| }
|
|
|
| -void BytecodeGraphBuilder::VisitStoreICSloppy() {
|
| +void BytecodeGraphBuilder::VisitStaNamedPropertySloppy() {
|
| BuildNamedStore(LanguageMode::SLOPPY);
|
| }
|
|
|
| -void BytecodeGraphBuilder::VisitStoreICStrict() {
|
| +void BytecodeGraphBuilder::VisitStaNamedPropertyStrict() {
|
| BuildNamedStore(LanguageMode::STRICT);
|
| }
|
|
|
| @@ -840,11 +840,11 @@ void BytecodeGraphBuilder::BuildKeyedStore(LanguageMode language_mode) {
|
| environment()->RecordAfterState(node, &states);
|
| }
|
|
|
| -void BytecodeGraphBuilder::VisitKeyedStoreICSloppy() {
|
| +void BytecodeGraphBuilder::VisitStaKeyedPropertySloppy() {
|
| BuildKeyedStore(LanguageMode::SLOPPY);
|
| }
|
|
|
| -void BytecodeGraphBuilder::VisitKeyedStoreICStrict() {
|
| +void BytecodeGraphBuilder::VisitStaKeyedPropertyStrict() {
|
| BuildKeyedStore(LanguageMode::STRICT);
|
| }
|
|
|
|
|