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

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

Issue 1835973003: S390: Impl Left/Right Logical/Arith Shift Pair (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Update srda and srdl disasm format Created 4 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/s390/assembler-s390.cc ('k') | src/s390/macro-assembler-s390.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/s390/disasm-s390.cc
diff --git a/src/s390/disasm-s390.cc b/src/s390/disasm-s390.cc
index 7850150e0ec872aadf481b43109a98258106e5c7..07df61a6bf96d00df5344ff3c1ccf768455286f9 100644
--- a/src/s390/disasm-s390.cc
+++ b/src/s390/disasm-s390.cc
@@ -643,6 +643,9 @@ bool Decoder::DecodeFourByte(Instruction* instr) {
case SRA:
Format(instr, "sra\t'r1,'d1('r3)");
break;
+ case SLDL:
+ Format(instr, "sldl\t'r1,'d1('r3)");
+ break;
case AGR:
Format(instr, "agr\t'r5,'r6");
break;
@@ -968,10 +971,10 @@ bool Decoder::DecodeFourByte(Instruction* instr) {
Format(instr, "sth\t'r1,'d1('r2d,'r3)");
break;
case SRDA:
- Format(instr, "srda\t'r1,'d1");
+ Format(instr, "srda\t'r1,'d1('r3)");
break;
case SRDL:
- Format(instr, "srdl\t'r1,'d1");
+ Format(instr, "srdl\t'r1,'d1('r3)");
break;
case MADBR:
Format(instr, "madbr\t'f3,'f5,'f6");
« no previous file with comments | « src/s390/assembler-s390.cc ('k') | src/s390/macro-assembler-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698