Index: src/ia32/lithium-codegen-ia32.cc |
diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc |
index 7d685bff320dab92d8a3d384ab9054b32bb4e7c3..4ee571de22bc596c7403a49c9c75126295196c1d 100644 |
--- a/src/ia32/lithium-codegen-ia32.cc |
+++ b/src/ia32/lithium-codegen-ia32.cc |
@@ -699,33 +699,6 @@ void LCodeGen::WriteTranslation(LEnvironment* environment, |
for (int i = 0; i < translation_size; ++i) { |
LOperand* value = environment->values()->at(i); |
- // spilled_registers_ and spilled_double_registers_ are either |
- // both NULL or both set. |
- if (environment->spilled_registers() != NULL && value != NULL) { |
- if (value->IsRegister() && |
- environment->spilled_registers()[value->index()] != NULL) { |
- translation->MarkDuplicate(); |
- AddToTranslation(translation, |
- environment->spilled_registers()[value->index()], |
- environment->HasTaggedValueAt(i), |
- environment->HasUint32ValueAt(i), |
- arguments_known, |
- arguments_index, |
- arguments_count); |
- } else if ( |
- value->IsDoubleRegister() && |
- environment->spilled_double_registers()[value->index()] != NULL) { |
- translation->MarkDuplicate(); |
- AddToTranslation( |
- translation, |
- environment->spilled_double_registers()[value->index()], |
- false, |
- false, |
- arguments_known, |
- arguments_index, |
- arguments_count); |
- } |
- } |
AddToTranslation(translation, |
value, |
@@ -1229,7 +1202,8 @@ void LCodeGen::DoCallStub(LCallStub* instr) { |
void LCodeGen::DoUnknownOSRValue(LUnknownOSRValue* instr) { |
- // Nothing to do. |
+ // Record the address of the first unknown OSR value as the place to enter. |
+ if (osr_pc_offset_ == -1) osr_pc_offset_ = masm()->pc_offset(); |
} |
@@ -6424,15 +6398,15 @@ void LCodeGen::DoOsrEntry(LOsrEntry* instr) { |
// properly registered for deoptimization and records the assembler's PC |
// offset. |
LEnvironment* environment = instr->environment(); |
- environment->SetSpilledRegisters(instr->SpilledRegisterArray(), |
- instr->SpilledDoubleRegisterArray()); |
// If the environment were already registered, we would have no way of |
// backpatching it with the spill slot operands. |
ASSERT(!environment->HasBeenRegistered()); |
RegisterEnvironmentForDeoptimization(environment, Safepoint::kNoLazyDeopt); |
- ASSERT(osr_pc_offset_ == -1); |
- osr_pc_offset_ = masm()->pc_offset(); |
+ |
+ // Normally we record the first unknown OSR value as the entrypoint to the OSR |
+ // code, but if there were none, record the entrypoint here. |
+ if (osr_pc_offset_ == -1) osr_pc_offset_ = masm()->pc_offset(); |
} |