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

Unified Diff: runtime/vm/il_printer.cc

Issue 10832150: Get rid of ast node ids. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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
« no previous file with comments | « runtime/vm/flow_graph_compiler_x64.cc ('k') | runtime/vm/intermediate_language.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
}
« no previous file with comments | « runtime/vm/flow_graph_compiler_x64.cc ('k') | runtime/vm/intermediate_language.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698