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

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

Issue 2649113007: s390: TF Codegen Optimization (Closed)
Patch Set: remove 2 unnecessary unreachables Created 3 years, 11 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.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 9ec7e403d91f84a400717790c62e173e89c79b65..c95cb41c5f9b4ebd744e745642dc39efd1d2609c 100644
--- a/src/s390/disasm-s390.cc
+++ b/src/s390/disasm-s390.cc
@@ -712,6 +712,9 @@ bool Decoder::DecodeFourByte(Instruction* instr) {
case XGRK:
Format(instr, "xgrk\t'r5,'r6,'r3");
break;
+ case CGFR:
+ Format(instr, "cgfr\t'r5,'r6");
+ break;
case CGR:
Format(instr, "cgr\t'r5,'r6");
break;
@@ -775,6 +778,12 @@ bool Decoder::DecodeFourByte(Instruction* instr) {
case DSGR:
Format(instr, "dsgr\t'r5,'r6");
break;
+ case DSGFR:
+ Format(instr, "dsgfr\t'r5,'r6");
+ break;
+ case MSGFR:
+ Format(instr, "msgfr\t'r5,'r6");
+ break;
case LZDR:
Format(instr, "lzdr\t'f5");
break;
@@ -1391,6 +1400,15 @@ bool Decoder::DecodeSixByte(Instruction* instr) {
case MSG:
Format(instr, "msg\t'r1,'d2('r2d,'r3)");
break;
+ case DSG:
+ Format(instr, "dsg\t'r1,'d2('r2d,'r3)");
+ break;
+ case DSGF:
+ Format(instr, "dsgf\t'r1,'d2('r2d,'r3)");
+ break;
+ case MSGF:
+ Format(instr, "msgf\t'r1,'d2('r2d,'r3)");
+ break;
case MSY:
Format(instr, "msy\t'r1,'d2('r2d,'r3)");
break;
« no previous file with comments | « src/s390/assembler-s390.cc ('k') | src/s390/macro-assembler-s390.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698