Index: runtime/vm/il_printer.cc |
=================================================================== |
--- runtime/vm/il_printer.cc (revision 10302) |
+++ 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()) { |
@@ -468,18 +468,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()); |
} |
@@ -494,7 +494,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())); |
@@ -733,18 +733,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()); |
} |