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

Unified Diff: src/compiler/pipeline.cc

Issue 1419373007: [Interpreter] Adds implementation of bytecode graph builder for LoadICSloppy/Strict (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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/compiler/pipeline.cc
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
index 86b5ae5fa5ddea2a7f581ee771d4c7da854b54f4..128193ea1a47ee03404ea50ce08cdc6f9c79be10 100644
--- a/src/compiler/pipeline.cc
+++ b/src/compiler/pipeline.cc
@@ -1061,7 +1061,8 @@ Handle<Code> Pipeline::GenerateCode() {
data.source_positions()->AddDecorator();
- if (FLAG_loop_assignment_analysis) {
+ if (FLAG_loop_assignment_analysis &&
+ !data.info()->shared_info()->HasBytecodeArray()) {
mythria 2015/11/04 12:19:14 If this phase is required, I think we have to add
rmcilroy 2015/11/04 14:27:37 Could you dig into this a bit more and figure out
Run<LoopAssignmentAnalysisPhase>();
}

Powered by Google App Engine
This is Rietveld 408576698