| Index: src/ppc/lithium-codegen-ppc.cc
|
| diff --git a/src/ppc/lithium-codegen-ppc.cc b/src/ppc/lithium-codegen-ppc.cc
|
| index c1f2ecd443913ca7d7ab23231ee5882a0609952b..665c14e2ee20914527b4d3c9ecd20af70467782f 100644
|
| --- a/src/ppc/lithium-codegen-ppc.cc
|
| +++ b/src/ppc/lithium-codegen-ppc.cc
|
| @@ -327,7 +327,7 @@ bool LCodeGen::GenerateJumpTable() {
|
|
|
| DCHECK_EQ(jump_table_[0].bailout_type, table_entry->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
|
| @@ -812,16 +812,16 @@ void LCodeGen::DeoptimizeIf(Condition cond, LInstruction* instr,
|
| __ stop("trap_on_deopt", cond, kDefaultStopCode, cr);
|
| }
|
|
|
| - 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 (cond == al && frame_is_built_ && !info()->saves_caller_doubles()) {
|
| - DeoptComment(reason);
|
| + DeoptComment(deopt_info);
|
| __ Call(entry, RelocInfo::RUNTIME_ENTRY);
|
| } 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.
|
|
|