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

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

Issue 2769403002: MIPS64: Fix code generator and simulator for DEXTM. (Closed)
Patch Set: Created 3 years, 9 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/compiler/mips64/code-generator-mips64.cc ('k') | src/mips64/simulator-mips64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mips64/disasm-mips64.cc
diff --git a/src/mips64/disasm-mips64.cc b/src/mips64/disasm-mips64.cc
index d73f22ac07a3f1d8bc80f577dbfafe538752d252..dccce92e5406ed684da5e7408406680ffa481149 100644
--- a/src/mips64/disasm-mips64.cc
+++ b/src/mips64/disasm-mips64.cc
@@ -1473,6 +1473,14 @@ void Decoder::DecodeTypeRegisterSPECIAL3(Instruction* instr) {
Format(instr, "dext 'rt, 'rs, 'sa, 'ss1");
break;
}
+ case DEXTM: {
+ Format(instr, "dextm 'rt, 'rs, 'sa, 'ss1");
+ break;
+ }
+ case DEXTU: {
+ Format(instr, "dextu 'rt, 'rs, 'sa, 'ss1");
+ break;
+ }
case BSHFL: {
int sa = instr->SaFieldRaw() >> kSaShift;
switch (sa) {
« no previous file with comments | « src/compiler/mips64/code-generator-mips64.cc ('k') | src/mips64/simulator-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698