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

Unified Diff: src/compiler/s390/code-generator-s390.cc

Issue 2213783002: s390: Remove OrComplement and andComplement (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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 | « no previous file | src/compiler/s390/instruction-codes-s390.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/s390/code-generator-s390.cc
diff --git a/src/compiler/s390/code-generator-s390.cc b/src/compiler/s390/code-generator-s390.cc
index 5957e0219fa1991d6104feb0a7f5698fe7ae0ba0..25e314bc54b6b3bfa2518d5d32f9b3a16ddcfc30 100644
--- a/src/compiler/s390/code-generator-s390.cc
+++ b/src/compiler/s390/code-generator-s390.cc
@@ -989,17 +989,9 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction(
case kS390_And:
ASSEMBLE_BINOP(AndP, AndP);
break;
- case kS390_AndComplement:
- __ NotP(i.InputRegister(1));
- __ AndP(i.OutputRegister(), i.InputRegister(0), i.InputRegister(1));
- break;
case kS390_Or:
ASSEMBLE_BINOP(OrP, OrP);
break;
- case kS390_OrComplement:
- __ NotP(i.InputRegister(1));
- __ OrP(i.OutputRegister(), i.InputRegister(0), i.InputRegister(1));
- break;
case kS390_Xor:
ASSEMBLE_BINOP(XorP, XorP);
break;
« no previous file with comments | « no previous file | src/compiler/s390/instruction-codes-s390.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698