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

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

Issue 2045943002: [compiler] [wasm] Introduce Word32/64ReverseBytes as TF Optional Opcode (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix according to titzer Created 4 years, 5 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/simulator-s390.h » ('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 c12ea6c4a11ffc2f9c590e262fb98e2d18c03502..c8d52f1b230442040f65b30b106093ab9c717bf3 100644
--- a/src/s390/disasm-s390.cc
+++ b/src/s390/disasm-s390.cc
@@ -736,6 +736,12 @@ bool Decoder::DecodeFourByte(Instruction* instr) {
case LTEBR:
Format(instr, "ltebr\t'f5,'f6");
break;
+ case LRVR:
+ Format(instr, "lrvr\t'r5,'r6");
+ break;
+ case LRVGR:
+ Format(instr, "lrvgr\t'r5,'r6");
+ break;
case LGR:
Format(instr, "lgr\t'r5,'r6");
break;
@@ -1196,6 +1202,15 @@ bool Decoder::DecodeSixByte(Instruction* instr) {
case LB:
Format(instr, "lb\t'r1,'d2('r2d,'r3)");
break;
+ case LRVH:
+ Format(instr, "lrvh\t'r1,'d2('r2d,'r3)");
+ break;
+ case LRV:
+ Format(instr, "lrv\t'r1,'d2('r2d,'r3)");
+ break;
+ case LRVG:
+ Format(instr, "lrvg\t'r1,'d2('r2d,'r3)");
+ break;
case LG:
Format(instr, "lg\t'r1,'d2('r2d,'r3)");
break;
@@ -1268,6 +1283,15 @@ bool Decoder::DecodeSixByte(Instruction* instr) {
case STY:
Format(instr, "sty\t'r1,'d2('r2d,'r3)");
break;
+ case STRVH:
+ Format(instr, "strvh\t'r1,'d2('r2d,'r3)");
+ break;
+ case STRV:
+ Format(instr, "strv\t'r1,'d2('r2d,'r3)");
+ break;
+ case STRVG:
+ Format(instr, "strvg\t'r1,'d2('r2d,'r3)");
+ break;
case STG:
Format(instr, "stg\t'r1,'d2('r2d,'r3)");
break;
« no previous file with comments | « src/s390/assembler-s390.cc ('k') | src/s390/simulator-s390.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698