Revert "Reapply optimization of DeoptimizeIf for ia32." (r13767)

This optimization turns out to have a negative effect on i5 processors
throughout the board. This needs further investigation to figure out
the underlying reason but will be rolled out for now.

R=danno@chromium.org

Review URL: https://codereview.chromium.org/12388016

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@13772 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 0e8a5fe4
......@@ -897,11 +897,6 @@ void LCodeGen::DeoptimizeIf(Condition cc, LEnvironment* environment) {
} else {
__ jmp(entry, RelocInfo::RUNTIME_ENTRY);
}
} else if (!needs_lazy_deopt && frame_is_built_) {
// Optimization for ia32 only that skips the indirection through a
// jump table entry for conditional deopts if possible.
ASSERT(cc != no_condition);
__ j(cc, entry, RelocInfo::RUNTIME_ENTRY);
} else {
// We often have several deopts to the same entry, reuse the last
// jump entry if this is the case.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment