Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Unified Diff: src/debug.cc

Issue 1153483002: [turbofan] Enable deoptimization for non-asm.js TurboFan code. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Don't use the HasDeoptimizationData() predicate, it's wrong. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/debug.cc
diff --git a/src/debug.cc b/src/debug.cc
index bcff35a7f4d60e1d6c17d7471303699ea2a56a27..e000229456029dfe67aef634d8831eff4446d6a1 100644
--- a/src/debug.cc
+++ b/src/debug.cc
@@ -1922,7 +1922,8 @@ void Debug::PrepareForBreakPoints() {
if (kind == Code::OPTIMIZED_FUNCTION) {
// Optimized code can only get here if DeoptimizeAll did not
// deoptimize turbo fan code.
- DCHECK(!FLAG_turbo_deoptimization);
+ DCHECK(!FLAG_turbo_asm_deoptimization);
+ DCHECK(function->shared()->asm_function());
DCHECK(function->code()->is_turbofanned());
function->ReplaceCode(fallback);
}
« src/compiler.cc ('K') | « src/compiler/js-inlining.cc ('k') | src/deoptimizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698