Index: src/mips/full-codegen-mips.cc |
diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc |
index 28082f06c4763b357ffd12d2f44f612ce4c5d531..e23aaee935a5b0d5227e506bb57934636789a22f 100644 |
--- a/src/mips/full-codegen-mips.cc |
+++ b/src/mips/full-codegen-mips.cc |
@@ -411,14 +411,9 @@ void FullCodeGenerator::EmitReturnSequence() { |
__ CallRuntime(Runtime::kTraceExit, 1); |
} |
// Pretend that the exit is a backwards jump to the entry. |
- int weight = 1; |
- if (info_->ShouldSelfOptimize()) { |
- weight = FLAG_interrupt_budget / FLAG_self_opt_count; |
- } else { |
- int distance = masm_->pc_offset(); |
- weight = Min(kMaxBackEdgeWeight, |
- Max(1, distance / kCodeSizeMultiplier)); |
- } |
+ int distance = masm_->pc_offset(); |
+ int weight = |
+ Min(kMaxBackEdgeWeight, Max(1, distance / kCodeSizeMultiplier)); |
EmitProfilingCounterDecrement(weight); |
Label ok; |
__ Branch(&ok, ge, a3, Operand(zero_reg)); |