Index: runtime/vm/il_printer.cc |
=================================================================== |
--- runtime/vm/il_printer.cc (revision 10265) |
+++ runtime/vm/il_printer.cc (working copy) |
@@ -130,7 +130,7 @@ |
void Computation::PrintTo(BufferFormatter* f) const { |
- f->Print("%s:%d(", DebugName(), cid()); |
+ f->Print("%s:%d(", DebugName(), deopt_id()); |
PrintOperandsTo(f); |
f->Print(")"); |
if (HasICData()) { |
@@ -477,18 +477,18 @@ |
void ReturnInstr::PrintTo(BufferFormatter* f) const { |
- f->Print(" %s:%d ", DebugName(), cid()); |
+ f->Print(" %s:%d ", DebugName(), deopt_id()); |
value()->PrintTo(f); |
} |
void ThrowInstr::PrintTo(BufferFormatter* f) const { |
- f->Print(" %s:%d ", DebugName(), cid()); |
+ f->Print(" %s:%d ", DebugName(), deopt_id()); |
} |
void ReThrowInstr::PrintTo(BufferFormatter* f) const { |
- f->Print(" %s:%d ", DebugName(), cid()); |
+ f->Print(" %s:%d ", DebugName(), deopt_id()); |
} |
@@ -503,7 +503,7 @@ |
void BranchInstr::PrintTo(BufferFormatter* f) const { |
- f->Print(" %s:%d ", DebugName(), cid()); |
+ f->Print(" %s:%d ", DebugName(), deopt_id()); |
f->Print("if "); |
left()->PrintTo(f); |
f-> Print(" %s ", Token::Str(kind())); |
@@ -742,18 +742,18 @@ |
void ReturnInstr::PrintToVisualizer(BufferFormatter* f) const { |
- f->Print("_ %s:%d ", DebugName(), cid()); |
+ f->Print("_ %s:%d ", DebugName(), deopt_id()); |
value()->PrintTo(f); |
} |
void ThrowInstr::PrintToVisualizer(BufferFormatter* f) const { |
- f->Print("_ %s:%d ", DebugName(), cid()); |
+ f->Print("_ %s:%d ", DebugName(), deopt_id()); |
} |
void ReThrowInstr::PrintToVisualizer(BufferFormatter* f) const { |
- f->Print("_ %s:%d ", DebugName(), cid()); |
+ f->Print("_ %s:%d ", DebugName(), deopt_id()); |
} |