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

Unified Diff: src/deoptimizer.cc

Issue 1161393007: OLD type Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 5 years, 6 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
« no previous file with comments | « src/compiler.cc ('k') | src/factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/deoptimizer.cc
diff --git a/src/deoptimizer.cc b/src/deoptimizer.cc
index eaf33869ae872c0480d7d151b47d314cbb4e541b..fa8cef7ab52dbe2cfeeb12ada14829365321fa3b 100644
--- a/src/deoptimizer.cc
+++ b/src/deoptimizer.cc
@@ -324,6 +324,12 @@ void Deoptimizer::DeoptimizeMarkedCodeForContext(Context* context) {
PrintF(scope.file(),
" / %" V8PRIxPTR "]\n", reinterpret_cast<intptr_t>(function));
}
+ if (FLAG_asm && function->shared()->asm_mode() != ASM_NO) {
+ PrintF("asm: deoptimizing %s %s\n",
+ function->shared()->asm_mode() == ASM_MODULE
+ ? "module" : "function",
+ function->shared()->DebugName()->ToCString().get());
+ }
}
};
« no previous file with comments | « src/compiler.cc ('k') | src/factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698