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

Unified Diff: lib/compiler/implementation/ssa/codegen.dart

Issue 10667013: Transitively mark inputs as live when they are generateAtUseSite. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
Index: lib/compiler/implementation/ssa/codegen.dart
diff --git a/lib/compiler/implementation/ssa/codegen.dart b/lib/compiler/implementation/ssa/codegen.dart
index c4e41ad8737e9a3bd53c236a92bdbae164f91aab..5bf71965cc4ef08ecb1e5e57e3ee20cef97a4dcd 100644
--- a/lib/compiler/implementation/ssa/codegen.dart
+++ b/lib/compiler/implementation/ssa/codegen.dart
@@ -256,7 +256,7 @@ class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
new SsaConditionMerger(generateAtUseSite,
controlFlowOperators).visitGraph(graph);
SsaLiveIntervalBuilder intervalBuilder =
- new SsaLiveIntervalBuilder(compiler);
+ new SsaLiveIntervalBuilder(compiler, generateAtUseSite);
intervalBuilder.visitGraph(graph);
SsaVariableAllocator allocator = new SsaVariableAllocator(
compiler,

Powered by Google App Engine
This is Rietveld 408576698