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

Unified Diff: src/mips/disasm-mips.cc

Issue 1143473003: Revert of MIPS: Add float instructions and test coverage, part one (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 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 | « src/mips/constants-mips.h ('k') | src/mips/simulator-mips.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mips/disasm-mips.cc
diff --git a/src/mips/disasm-mips.cc b/src/mips/disasm-mips.cc
index 32dffff1d2945212a8d81997f997980ce3cc21ae..a6690883f0ad6b5e9288794105f8cb817ff02a95 100644
--- a/src/mips/disasm-mips.cc
+++ b/src/mips/disasm-mips.cc
@@ -511,19 +511,6 @@ bool Decoder::DecodeTypeRegisterRsType(Instruction* instr) {
case SELNEZ_C:
Format(instr, "selnez.'t 'fd, 'fs, 'ft");
break;
- case MOVZ_C:
- Format(instr, "movz.'t 'fd, 'fs, 'rt");
- break;
- case MOVN_C:
- Format(instr, "movn.'t 'fd, 'fs, 'rt");
- break;
- case MOVF:
- if (instr->Bit(16)) {
- Format(instr, "movt.'t 'fd, 'fs, 'Cc");
- } else {
- Format(instr, "movf.'t 'fd, 'fs, 'Cc");
- }
- break;
case ADD_D:
Format(instr, "add.'t 'fd, 'fs, 'ft");
break;
@@ -548,12 +535,6 @@ bool Decoder::DecodeTypeRegisterRsType(Instruction* instr) {
case SQRT_D:
Format(instr, "sqrt.'t 'fd, 'fs");
break;
- case RECIP_D:
- Format(instr, "recip.'t 'fd, 'fs");
- break;
- case RSQRT_D:
- Format(instr, "rsqrt.'t 'fd, 'fs");
- break;
case CVT_W_D:
Format(instr, "cvt.w.'t 'fd, 'fs");
break;
@@ -569,21 +550,12 @@ bool Decoder::DecodeTypeRegisterRsType(Instruction* instr) {
case ROUND_W_D:
Format(instr, "round.w.'t 'fd, 'fs");
break;
- case ROUND_L_D:
- Format(instr, "round.l.'t 'fd, 'fs");
- break;
case FLOOR_W_D:
Format(instr, "floor.w.'t 'fd, 'fs");
break;
- case FLOOR_L_D:
- Format(instr, "floor.l.'t 'fd, 'fs");
- break;
case CEIL_W_D:
Format(instr, "ceil.w.'t 'fd, 'fs");
break;
- case CEIL_L_D:
- Format(instr, "ceil.l.'t 'fd, 'fs");
- break;
case CVT_S_D:
Format(instr, "cvt.s.'t 'fd, 'fs");
break;
« no previous file with comments | « src/mips/constants-mips.h ('k') | src/mips/simulator-mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698