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 dee7705f055fba49a715a610a6aa8ef73f78f26c..1111039681958a7384541345d9b6c6d703a37024 100644 |
--- a/src/compiler/mips64/code-generator-mips64.cc |
+++ b/src/compiler/mips64/code-generator-mips64.cc |
@@ -1211,6 +1211,23 @@ void CodeGenerator::AssemblePrologue() { |
StandardFrameConstants::kFixedFrameSizeFromFp); |
} |
int stack_slots = frame()->GetSpillSlotCount(); |
+ |
+ if (info()->is_osr()) { |
+ // TurboFan OSR-compiled functions cannot be entered directly. |
+ __ Abort(kShouldNotDirectlyEnterOsrFunction); |
+ |
+ // Unoptimized code jumps directly to this entrypoint while the unoptimized |
+ // frame is still on the stack. Optimized code uses OSR values directly from |
+ // the unoptimized frame. Thus, all that needs to be done is to allocate the |
+ // remaining stack slots. |
+ if (FLAG_code_comments) __ RecordComment("-- OSR entrypoint --"); |
+ osr_pc_offset_ = __ pc_offset(); |
+ int unoptimized_slots = |
+ static_cast<int>(OsrHelper(info()).UnoptimizedFrameSlots()); |
+ DCHECK(stack_slots >= unoptimized_slots); |
+ stack_slots -= unoptimized_slots; |
+ } |
+ |
if (stack_slots > 0) { |
__ Dsubu(sp, sp, Operand(stack_slots * kPointerSize)); |
} |