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

Unified Diff: runtime/vm/disassembler_mips.cc

Issue 17131002: Enables language tests for SIMMIPS. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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
« no previous file with comments | « runtime/vm/debugger_mips.cc ('k') | runtime/vm/flow_graph_compiler_mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/disassembler_mips.cc
===================================================================
--- runtime/vm/disassembler_mips.cc (revision 24063)
+++ runtime/vm/disassembler_mips.cc (working copy)
@@ -329,6 +329,14 @@
Format(instr, "mflo 'rd");
break;
}
+ case MOVCI: {
+ if (instr->Bit(16)) {
+ Format(instr, "movt 'rd, 'rs");
+ } else {
+ Format(instr, "movf 'rd, 'rs");
+ }
+ break;
+ }
case MOVN: {
Format(instr, "movn 'rd, 'rs, 'rt");
break;
@@ -523,35 +531,35 @@
break;
}
case COP1_C_F: {
- Format(instr, "c.f.'fmt 'fd, 'fs");
+ Format(instr, "c.f.'fmt 'fs, 'ft");
break;
}
case COP1_C_UN: {
- Format(instr, "c.un.'fmt 'fd, 'fs");
+ Format(instr, "c.un.'fmt 'fs, 'ft");
break;
}
case COP1_C_EQ: {
- Format(instr, "c.eq.'fmt 'fd, 'fs");
+ Format(instr, "c.eq.'fmt 'fs, 'ft");
break;
}
case COP1_C_UEQ: {
- Format(instr, "c.ueq.'fmt 'fd, 'fs");
+ Format(instr, "c.ueq.'fmt 'fs, 'ft");
break;
}
case COP1_C_OLT: {
- Format(instr, "c.olt.'fmt 'fd, 'fs");
+ Format(instr, "c.olt.'fmt 'fs, 'ft");
break;
}
case COP1_C_ULT: {
- Format(instr, "c.ult.'fmt 'fd, 'fs");
+ Format(instr, "c.ult.'fmt 'fs, 'ft");
break;
}
case COP1_C_OLE: {
- Format(instr, "c.ole.'fmt 'fd, 'fs");
+ Format(instr, "c.ole.'fmt 'fs, 'ft");
break;
}
case COP1_C_ULE: {
- Format(instr, "c.ule.'fmt 'fd, 'fs");
+ Format(instr, "c.ule.'fmt 'fs, 'ft");
break;
}
case COP1_CVT_D: {
« no previous file with comments | « runtime/vm/debugger_mips.cc ('k') | runtime/vm/flow_graph_compiler_mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698