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

Unified Diff: dart/runtime/vm/il_printer.cc

Issue 59073003: Version 0.8.10.4 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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 | « dart/runtime/vm/freelist.h ('k') | dart/runtime/vm/intermediate_language.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/runtime/vm/il_printer.cc
===================================================================
--- dart/runtime/vm/il_printer.cc (revision 29808)
+++ dart/runtime/vm/il_printer.cc (working copy)
@@ -625,8 +625,8 @@
if (op_kind() == MethodRecognizer::kFloat32x4GetSignMask) {
f->Print("Float32x4.getSignMask ");
} else {
- ASSERT(op_kind() == MethodRecognizer::kUint32x4GetSignMask);
- f->Print("Uint32x4.getSignMask ");
+ ASSERT(op_kind() == MethodRecognizer::kInt32x4GetSignMask);
+ f->Print("Int32x4.getSignMask ");
}
value()->PrintTo(f);
}
@@ -707,8 +707,8 @@
}
-void Float32x4ToUint32x4Instr::PrintOperandsTo(BufferFormatter* f) const {
- f->Print("Float32x4.toUint32x4 ");
+void Float32x4ToInt32x4Instr::PrintOperandsTo(BufferFormatter* f) const {
+ f->Print("Float32x4.toInt32x4 ");
left()->PrintTo(f);
}
@@ -716,8 +716,8 @@
-void Uint32x4BoolConstructorInstr::PrintOperandsTo(BufferFormatter* f) const {
- f->Print("Uint32x4.bool(");
+void Int32x4BoolConstructorInstr::PrintOperandsTo(BufferFormatter* f) const {
+ f->Print("Int32x4.bool(");
value0()->PrintTo(f);
f->Print(", ");
value1()->PrintTo(f);
@@ -729,22 +729,22 @@
}
-void Uint32x4GetFlagInstr::PrintOperandsTo(BufferFormatter* f) const {
- f->Print("Uint32x4.%s ", MethodRecognizer::KindToCString(op_kind()));
+void Int32x4GetFlagInstr::PrintOperandsTo(BufferFormatter* f) const {
+ f->Print("Int32x4.%s ", MethodRecognizer::KindToCString(op_kind()));
value()->PrintTo(f);
}
-void Uint32x4SetFlagInstr::PrintOperandsTo(BufferFormatter* f) const {
- f->Print("Uint32x4.%s ", MethodRecognizer::KindToCString(op_kind()));
+void Int32x4SetFlagInstr::PrintOperandsTo(BufferFormatter* f) const {
+ f->Print("Int32x4.%s ", MethodRecognizer::KindToCString(op_kind()));
value()->PrintTo(f);
f->Print(", ");
flagValue()->PrintTo(f);
}
-void Uint32x4SelectInstr::PrintOperandsTo(BufferFormatter* f) const {
- f->Print("Uint32x4.select ");
+void Int32x4SelectInstr::PrintOperandsTo(BufferFormatter* f) const {
+ f->Print("Int32x4.select ");
mask()->PrintTo(f);
f->Print(", ");
trueValue()->PrintTo(f);
@@ -753,13 +753,13 @@
}
-void Uint32x4ToFloat32x4Instr::PrintOperandsTo(BufferFormatter* f) const {
- f->Print("Uint32x4.toFloat32x4 ");
+void Int32x4ToFloat32x4Instr::PrintOperandsTo(BufferFormatter* f) const {
+ f->Print("Int32x4.toFloat32x4 ");
left()->PrintTo(f);
}
-void BinaryUint32x4OpInstr::PrintOperandsTo(BufferFormatter* f) const {
+void BinaryInt32x4OpInstr::PrintOperandsTo(BufferFormatter* f) const {
f->Print("%s, ", Token::Str(op_kind()));
left()->PrintTo(f);
f->Print(", ");
« no previous file with comments | « dart/runtime/vm/freelist.h ('k') | dart/runtime/vm/intermediate_language.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698