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

Unified Diff: src/compiler.cc

Issue 1925123002: [interpreter] Be explicit when to test BytecodeGraphBuilder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Blacklist tests. Created 4 years, 8 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 | « no previous file | src/flag-definitions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler.cc
diff --git a/src/compiler.cc b/src/compiler.cc
index eeb8d068a06031e41c0b194499ec12d26a5e473f..22e8b487eecbbae2cde9ae23277d6103835b64b4 100644
--- a/src/compiler.cc
+++ b/src/compiler.cc
@@ -839,7 +839,8 @@ MaybeHandle<Code> GetOptimizedCode(Handle<JSFunction> function,
: new HCompilationJob(info.get()));
// TruboFan can optimize directly from existing bytecode.
- if (use_turbofan && info->shared_info()->HasBytecodeArray()) {
+ if (FLAG_turbo_from_bytecode && use_turbofan &&
+ info->shared_info()->HasBytecodeArray()) {
info->MarkAsOptimizeFromBytecode();
}
« no previous file with comments | « no previous file | src/flag-definitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698