Index: src/mips/lithium-codegen-mips.cc |
diff --git a/src/mips/lithium-codegen-mips.cc b/src/mips/lithium-codegen-mips.cc |
index 2ecd826124c54f5933e12023f82505c49040ed7c..46b5471f66c39ffc2604ca0940a3aef5f4ed1f30 100644 |
--- a/src/mips/lithium-codegen-mips.cc |
+++ b/src/mips/lithium-codegen-mips.cc |
@@ -337,7 +337,7 @@ bool LCodeGen::GenerateJumpTable() { |
DCHECK(table_entry->bailout_type == jump_table_[0].bailout_type); |
Address entry = table_entry->address; |
- DeoptComment(table_entry->reason); |
+ DeoptComment(table_entry->deopt_info); |
// Second-level deopt table entries are contiguous and small, so instead |
// of loading the full, absolute address of each one, load an immediate |
@@ -856,17 +856,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. |