Chromium Code Reviews

Unified Diff: runtime/vm/il_printer.cc

Issue 395943003: Support allocation sinking for compound objects. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: runtime/vm/il_printer.cc
diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc
index 01f345c6229c31d1ea0e205002c12303a7c1e17b..b8664dcc0d10aa51b30c000e42e0b7b399884be2 100644
--- a/runtime/vm/il_printer.cc
+++ b/runtime/vm/il_printer.cc
@@ -507,6 +507,10 @@ void AllocateObjectInstr::PrintOperandsTo(BufferFormatter* f) const {
f->Print(", ");
PushArgumentAt(i)->value()->PrintTo(f);
}
+
+ if (Identity().IsNotAliased()) {
+ f->Print(" <not-aliased>");
+ }
}

Powered by Google App Engine