Skip to content

Commit c2b35eb

Browse files
committedMar 18, 2019
[X86] Remove the _alt forms of (V)CMP instructions. Use a combination of custom printing and custom parsing to achieve the same result and more
Similar to previous change done for VPCOM and VPCMP Differential Revision: https://reviews.llvm.org/D59468 llvm-svn: 356384
1 parent 08b5e68 commit c2b35eb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+788
-652
lines changed
 

‎llvm/include/llvm/Support/X86DisassemblerDecoderCommon.h

-2
Original file line numberDiff line numberDiff line change
@@ -414,8 +414,6 @@ enum OperandEncoding {
414414
ENUM_ENTRY(TYPE_R32, "4-byte") \
415415
ENUM_ENTRY(TYPE_R64, "8-byte") \
416416
ENUM_ENTRY(TYPE_IMM, "immediate operand") \
417-
ENUM_ENTRY(TYPE_IMM3, "1-byte immediate operand between 0 and 7") \
418-
ENUM_ENTRY(TYPE_IMM5, "1-byte immediate operand between 0 and 31") \
419417
ENUM_ENTRY(TYPE_UIMM8, "1-byte unsigned immediate operand") \
420418
ENUM_ENTRY(TYPE_M, "Memory operand") \
421419
ENUM_ENTRY(TYPE_MVSIBX, "Memory operand using XMM index") \

‎llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp

+15-12
Original file line numberDiff line numberDiff line change
@@ -2318,13 +2318,15 @@ bool X86AsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
23182318
PatchedName != "setb" && PatchedName != "setnb")
23192319
PatchedName = PatchedName.substr(0, Name.size()-1);
23202320

2321+
unsigned ComparisonCode = ~0U;
2322+
23212323
// FIXME: Hack to recognize cmp<comparison code>{ss,sd,ps,pd}.
23222324
if ((PatchedName.startswith("cmp") || PatchedName.startswith("vcmp")) &&
23232325
(PatchedName.endswith("ss") || PatchedName.endswith("sd") ||
23242326
PatchedName.endswith("ps") || PatchedName.endswith("pd"))) {
23252327
bool IsVCMP = PatchedName[0] == 'v';
23262328
unsigned CCIdx = IsVCMP ? 4 : 3;
2327-
unsigned ComparisonCode = StringSwitch<unsigned>(
2329+
unsigned CC = StringSwitch<unsigned>(
23282330
PatchedName.slice(CCIdx, PatchedName.size() - 2))
23292331
.Case("eq", 0x00)
23302332
.Case("eq_oq", 0x00)
@@ -2374,21 +2376,22 @@ bool X86AsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
23742376
.Case("gt_oq", 0x1E)
23752377
.Case("true_us", 0x1F)
23762378
.Default(~0U);
2377-
if (ComparisonCode != ~0U && (IsVCMP || ComparisonCode < 8)) {
2378-
2379-
Operands.push_back(X86Operand::CreateToken(PatchedName.slice(0, CCIdx),
2380-
NameLoc));
2381-
2382-
const MCExpr *ImmOp = MCConstantExpr::create(ComparisonCode,
2383-
getParser().getContext());
2384-
Operands.push_back(X86Operand::CreateImm(ImmOp, NameLoc, NameLoc));
2379+
if (CC != ~0U && (IsVCMP || CC < 8)) {
2380+
if (PatchedName.endswith("ss"))
2381+
PatchedName = IsVCMP ? "vcmpss" : "cmpss";
2382+
else if (PatchedName.endswith("sd"))
2383+
PatchedName = IsVCMP ? "vcmpsd" : "cmpsd";
2384+
else if (PatchedName.endswith("ps"))
2385+
PatchedName = IsVCMP ? "vcmpps" : "cmpps";
2386+
else if (PatchedName.endswith("pd"))
2387+
PatchedName = IsVCMP ? "vcmppd" : "cmppd";
2388+
else
2389+
llvm_unreachable("Unexpecte suffix!");
23852390

2386-
PatchedName = PatchedName.substr(PatchedName.size() - 2);
2391+
ComparisonCode = CC;
23872392
}
23882393
}
23892394

2390-
unsigned ComparisonCode = ~0U;
2391-
23922395
// FIXME: Hack to recognize vpcmp<comparison code>{ub,uw,ud,uq,b,w,d,q}.
23932396
if (PatchedName.startswith("vpcmp") &&
23942397
(PatchedName.back() == 'b' || PatchedName.back() == 'w' ||

0 commit comments

Comments
 (0)
Please sign in to comment.