Remove early bailout from Runtime_CompileOptimized.

R=titzer@chromium.org

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

Cr-Commit-Position: refs/heads/master@{#26155}
This commit is contained in:
mstarzinger 2015-01-20 05:03:41 -08:00 committed by Commit bot
parent 655b112466
commit 8e56bd79f6

View File

@ -49,22 +49,10 @@ RUNTIME_FUNCTION(Runtime_CompileOptimized) {
CONVERT_BOOLEAN_ARG_CHECKED(concurrent, 1);
DCHECK(isolate->use_crankshaft());
Handle<Code> unoptimized(function->shared()->code());
if (function->shared()->optimization_disabled()) {
// If the function is not optimizable continue using the code from the full
// compiler.
if (FLAG_trace_opt) {
OFStream os(stdout);
os << "[failed to optimize " << Brief(*function)
<< ", code is not optimizable]" << std::endl;
}
function->ReplaceCode(*unoptimized);
return function->code();
}
Compiler::ConcurrencyMode mode =
concurrent ? Compiler::CONCURRENT : Compiler::NOT_CONCURRENT;
Handle<Code> code;
Handle<Code> unoptimized(function->shared()->code());
if (Compiler::GetOptimizedCode(function, unoptimized, mode).ToHandle(&code)) {
// Optimization succeeded, return optimized code.
function->ReplaceCode(*code);