| Index: src/mips/lithium-mips.cc
|
| diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc
|
| index 2325064de2b3b5a8808570eebf8b6e6ebed90dd2..da88a6e2e80b233aa825e21390ba71a6f45209df 100644
|
| --- a/src/mips/lithium-mips.cc
|
| +++ b/src/mips/lithium-mips.cc
|
| @@ -707,6 +707,23 @@ LInstruction* LChunkBuilder::DoSoftDeoptimize(HSoftDeoptimize* instr) {
|
| }
|
|
|
|
|
| +LInstruction* LChunkBuilder::DoDeoptCounter(HDeoptCounter* instr) {
|
| + return AssignEnvironment(new(zone()) LDeoptCounter(instr->id(),
|
| + instr->initial_value(),
|
| + instr->max_value()));
|
| +}
|
| +
|
| +
|
| +LInstruction* LChunkBuilder::DoDeoptCounterAdd(HDeoptCounterAdd* instr) {
|
| + LOperand* temp = TempRegister();
|
| + LOperand* temp2 = TempRegister();
|
| + return AssignEnvironment(new(zone()) LDeoptCounterAdd(instr->counter()->id(),
|
| + instr->delta(),
|
| + temp,
|
| + temp2));
|
| +}
|
| +
|
| +
|
| LInstruction* LChunkBuilder::DoDeoptimize(HDeoptimize* instr) {
|
| return AssignEnvironment(new(zone()) LDeoptimize);
|
| }
|
|
|