Index: src/compiler/mips64/code-generator-mips64.cc |
diff --git a/src/compiler/mips64/code-generator-mips64.cc b/src/compiler/mips64/code-generator-mips64.cc |
index 2058b153b55fd6ed92b786d54487e08bfb926ee3..756cb632da2f59de19c2827aa70039b1618144e1 100644 |
--- a/src/compiler/mips64/code-generator-mips64.cc |
+++ b/src/compiler/mips64/code-generator-mips64.cc |
@@ -1204,9 +1204,24 @@ void CodeGenerator::AssembleMove(InstructionOperand* source, |
case Constant::kExternalReference: |
__ li(dst, Operand(src.ToExternalReference())); |
break; |
- case Constant::kHeapObject: |
- __ li(dst, src.ToHeapObject()); |
+ case Constant::kHeapObject: { |
+ Handle<HeapObject> src_object = src.ToHeapObject(); |
+ if (info()->IsOptimizing() && |
+ src_object.is_identical_to(info()->context())) { |
+ // Loading the context from the frame is way cheaper than |
+ // materializing the actual context heap object address. |
+ __ ld(dst, MemOperand(fp, StandardFrameConstants::kContextOffset)); |
+ } else if (info()->IsOptimizing() && |
+ src_object.is_identical_to(info()->closure())) { |
+ // Loading the JSFunction from the frame is way cheaper than |
+ // materializing the actual JSFunction heap object address. |
+ __ ld(dst, |
+ MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset)); |
+ } else { |
+ __ li(dst, src_object); |
+ } |
break; |
+ } |
case Constant::kRpoNumber: |
UNREACHABLE(); // TODO(titzer): loading RPO numbers on mips64. |
break; |