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

Unified Diff: runtime/vm/il_printer.cc

Issue 215363004: Support for multiple register values (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 db7cee14e92d73eeba92341b62d096b273f8b890..9c3c713235ce99761aaa92e89058e97f74bf45c2 100644
--- a/runtime/vm/il_printer.cc
+++ b/runtime/vm/il_printer.cc
@@ -573,6 +573,18 @@ void MergedMathInstr::PrintOperandsTo(BufferFormatter* f) const {
}
+void ExtractNthOutputInstr::PrintOperandsTo(BufferFormatter* f) const {
+ f->Print("Extract %" Pd " from ", index());
+ Definition::PrintOperandsTo(f);
+}
+
+
+void MergedMath2Instr::PrintOperandsTo(BufferFormatter* f) const {
+ f->Print("'%s', ", MergedMath2Instr::KindToCString(kind()));
+ Definition::PrintOperandsTo(f);
+}
+
+
void BinarySmiOpInstr::PrintTo(BufferFormatter* f) const {
Definition::PrintTo(f);
f->Print(" %co", overflow_ ? '+' : '-');

Powered by Google App Engine
This is Rietveld 408576698