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

Unified Diff: runtime/vm/il_printer.cc

Issue 56023004: Replace Uint32x4/Uint32x4List with Int32x4/Int32x4List (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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 | « runtime/vm/flow_graph_type_propagator.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
diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc
index 1c4588952623d1c5c00242b69892007bb67bdaed..ed4466a2d32b1c0ef20a1260ddff0e13852a0f58 100644
--- a/runtime/vm/il_printer.cc
+++ b/runtime/vm/il_printer.cc
@@ -622,8 +622,8 @@ void Simd32x4GetSignMaskInstr::PrintOperandsTo(BufferFormatter* f) const {
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);
}
@@ -704,8 +704,8 @@ void Float32x4WithInstr::PrintOperandsTo(BufferFormatter* f) const {
}
-void Float32x4ToUint32x4Instr::PrintOperandsTo(BufferFormatter* f) const {
- f->Print("Float32x4.toUint32x4 ");
+void Float32x4ToInt32x4Instr::PrintOperandsTo(BufferFormatter* f) const {
+ f->Print("Float32x4.toInt32x4 ");
left()->PrintTo(f);
}
@@ -713,8 +713,8 @@ void Float32x4ToUint32x4Instr::PrintOperandsTo(BufferFormatter* f) const {
-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);
@@ -726,22 +726,22 @@ void Uint32x4BoolConstructorInstr::PrintOperandsTo(BufferFormatter* f) const {
}
-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);
@@ -750,13 +750,13 @@ void Uint32x4SelectInstr::PrintOperandsTo(BufferFormatter* f) const {
}
-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 | « runtime/vm/flow_graph_type_propagator.cc ('k') | runtime/vm/intermediate_language.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698