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

Unified Diff: runtime/vm/il_printer.cc

Issue 14740005: Initial support for polymorphic inlining. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
Index: runtime/vm/il_printer.cc
diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc
index bf5059678d78646c5ba6e7231494621b9172accc..408c26eadfd08895f7fdb11d50bf5361e4b6acbd 100644
--- a/runtime/vm/il_printer.cc
+++ b/runtime/vm/il_printer.cc
@@ -709,7 +709,7 @@ void InvokeMathCFunctionInstr::PrintOperandsTo(BufferFormatter* f) const {
void GraphEntryInstr::PrintTo(BufferFormatter* f) const {
const GrowableArray<Definition*>& defns = initial_definitions_;
- f->Print("B%"Pd"[graph]", block_id());
+ f->Print("B%"Pd"[graph]:%"Pd, block_id(), GetDeoptId());
if (defns.length() > 0) {
f->Print(" {");
for (intptr_t i = 0; i < defns.length(); ++i) {
@@ -723,7 +723,7 @@ void GraphEntryInstr::PrintTo(BufferFormatter* f) const {
void JoinEntryInstr::PrintTo(BufferFormatter* f) const {
- f->Print("B%"Pd"[join] pred(", block_id());
+ f->Print("B%"Pd"[join]:%"Pd" pred(", block_id(), GetDeoptId());
for (intptr_t i = 0; i < predecessors_.length(); ++i) {
if (i > 0) f->Print(", ");
f->Print("B%"Pd, predecessors_[i]->block_id());
@@ -774,7 +774,7 @@ void ParameterInstr::PrintOperandsTo(BufferFormatter* f) const {
void TargetEntryInstr::PrintTo(BufferFormatter* f) const {
- f->Print("B%"Pd"[target]", block_id());
+ f->Print("B%"Pd"[target]:%"Pd, block_id(), GetDeoptId());
if (HasParallelMove()) {
f->Print(" ");
parallel_move()->PrintTo(f);

Powered by Google App Engine
This is Rietveld 408576698