Index: src/mips64/lithium-codegen-mips64.cc |
diff --git a/src/mips64/lithium-codegen-mips64.cc b/src/mips64/lithium-codegen-mips64.cc |
index fa86b495a9e409462d17044299dcd40e4b790cf3..49c465086e62fe33801815811c17601d858d2f62 100644 |
--- a/src/mips64/lithium-codegen-mips64.cc |
+++ b/src/mips64/lithium-codegen-mips64.cc |
@@ -309,7 +309,7 @@ bool LCodeGen::GenerateJumpTable() { |
Deoptimizer::JumpTableEntry* table_entry = &jump_table_[i]; |
__ bind(&table_entry->label); |
Address entry = table_entry->address; |
- DeoptComment(table_entry->reason); |
+ DeoptComment(table_entry->deopt_info); |
__ li(t9, Operand(ExternalReference::ForDeoptEntry(entry))); |
if (table_entry->needs_frame) { |
DCHECK(!info()->saves_caller_doubles()); |
@@ -806,17 +806,17 @@ void LCodeGen::DeoptimizeIf(Condition condition, LInstruction* instr, |
__ bind(&skip); |
} |
- Deoptimizer::Reason reason(instr->hydrogen_value()->position().raw(), |
- instr->Mnemonic(), deopt_reason); |
+ Deoptimizer::DeoptInfo deopt_info(instr->hydrogen_value()->position().raw(), |
+ instr->Mnemonic(), deopt_reason); |
DCHECK(info()->IsStub() || frame_is_built_); |
// Go through jump table if we need to handle condition, build frame, or |
// restore caller doubles. |
if (condition == al && frame_is_built_ && |
!info()->saves_caller_doubles()) { |
- DeoptComment(reason); |
+ DeoptComment(deopt_info); |
__ Call(entry, RelocInfo::RUNTIME_ENTRY, condition, src1, src2); |
} else { |
- Deoptimizer::JumpTableEntry table_entry(entry, reason, bailout_type, |
+ Deoptimizer::JumpTableEntry table_entry(entry, deopt_info, bailout_type, |
!frame_is_built_); |
// We often have several deopts to the same entry, reuse the last |
// jump entry if this is the case. |