Index: src/mips64/full-codegen-mips64.cc |
diff --git a/src/mips64/full-codegen-mips64.cc b/src/mips64/full-codegen-mips64.cc |
index 4eb60eaaf327b11d28b44803dff68bb2c73d1942..5316135ea94098640e5aaf02e4426c131e1828d2 100644 |
--- a/src/mips64/full-codegen-mips64.cc |
+++ b/src/mips64/full-codegen-mips64.cc |
@@ -1561,7 +1561,7 @@ void FullCodeGenerator::EmitVariableLoad(VariableProxy* proxy) { |
__ bind(&slow); |
__ li(a1, Operand(var->name())); |
__ Push(cp, a1); // Context and name. |
- __ CallRuntime(Runtime::kLoadContextSlot, 2); |
+ __ CallRuntime(Runtime::kLoadLookupSlot, 2); |
__ bind(&done); |
context()->Plug(v0); |
} |
@@ -2762,7 +2762,7 @@ void FullCodeGenerator::VisitCall(Call* expr) { |
ASSERT(!context_register().is(a2)); |
__ li(a2, Operand(proxy->name())); |
__ Push(context_register(), a2); |
- __ CallRuntime(Runtime::kLoadContextSlot, 2); |
+ __ CallRuntime(Runtime::kLoadLookupSlot, 2); |
__ Push(v0, v1); // Function, receiver. |
// If fast case code has been generated, emit code to push the |
@@ -4155,7 +4155,7 @@ void FullCodeGenerator::VisitUnaryOperation(UnaryOperation* expr) { |
ASSERT(!context_register().is(a2)); |
__ li(a2, Operand(var->name())); |
__ Push(context_register(), a2); |
- __ CallRuntime(Runtime::kDeleteContextSlot, 2); |
+ __ CallRuntime(Runtime::kDeleteLookupSlot, 2); |
context()->Plug(v0); |
} |
} else { |
@@ -4438,7 +4438,7 @@ void FullCodeGenerator::VisitForTypeofValue(Expression* expr) { |
__ bind(&slow); |
__ li(a0, Operand(proxy->name())); |
__ Push(cp, a0); |
- __ CallRuntime(Runtime::kLoadContextSlotNoReferenceError, 2); |
+ __ CallRuntime(Runtime::kLoadLookupSlotNoReferenceError, 2); |
PrepareForBailout(expr, TOS_REG); |
__ bind(&done); |