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

Unified Diff: runtime/vm/il_printer.cc

Issue 345563007: Add Uint32 representation (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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 181b01777cff84c71cd30d5e665e3880c6ca05d2..1e5df2c5a0d1275f51953592c4dd743d4801b4da 100644
--- a/runtime/vm/il_printer.cc
+++ b/runtime/vm/il_printer.cc
@@ -604,6 +604,37 @@ void BinarySmiOpInstr::PrintOperandsTo(BufferFormatter* f) const {
}
+void BinaryMintOpInstr::PrintTo(BufferFormatter* f) const {
+ Definition::PrintTo(f);
+ if (is_32_bit()) {
+ f->Print(" 32-BIT");
+ }
+}
+
+
+void UnaryMintOpInstr::PrintTo(BufferFormatter* f) const {
+ Definition::PrintTo(f);
+ if (is_32_bit()) {
+ f->Print(" 32-BIT");
+ }
+}
+
+
+void UnboxIntegerInstr::PrintTo(BufferFormatter* f) const {
+ Definition::PrintTo(f);
+ if (is_32_bit()) {
+ f->Print(" 32-BIT");
+ }
+}
+
+
+void ShiftMintOpInstr::PrintTo(BufferFormatter* f) const {
+ Definition::PrintTo(f);
+ if (is_32_bit()) {
+ f->Print(" 32-BIT");
+ }
+}
+
void BinaryDoubleOpInstr::PrintOperandsTo(BufferFormatter* f) const {
f->Print("%s, ", Token::Str(op_kind()));
left()->PrintTo(f);

Powered by Google App Engine
This is Rietveld 408576698