@@ -2318,13 +2318,15 @@ bool X86AsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
2318
2318
PatchedName != " setb" && PatchedName != " setnb" )
2319
2319
PatchedName = PatchedName.substr (0 , Name.size ()-1 );
2320
2320
2321
+ unsigned ComparisonCode = ~0U ;
2322
+
2321
2323
// FIXME: Hack to recognize cmp<comparison code>{ss,sd,ps,pd}.
2322
2324
if ((PatchedName.startswith (" cmp" ) || PatchedName.startswith (" vcmp" )) &&
2323
2325
(PatchedName.endswith (" ss" ) || PatchedName.endswith (" sd" ) ||
2324
2326
PatchedName.endswith (" ps" ) || PatchedName.endswith (" pd" ))) {
2325
2327
bool IsVCMP = PatchedName[0 ] == ' v' ;
2326
2328
unsigned CCIdx = IsVCMP ? 4 : 3 ;
2327
- unsigned ComparisonCode = StringSwitch<unsigned >(
2329
+ unsigned CC = StringSwitch<unsigned >(
2328
2330
PatchedName.slice (CCIdx, PatchedName.size () - 2 ))
2329
2331
.Case (" eq" , 0x00 )
2330
2332
.Case (" eq_oq" , 0x00 )
@@ -2374,21 +2376,22 @@ bool X86AsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
2374
2376
.Case (" gt_oq" , 0x1E )
2375
2377
.Case (" true_us" , 0x1F )
2376
2378
.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!" );
2385
2390
2386
- PatchedName = PatchedName. substr (PatchedName. size () - 2 ) ;
2391
+ ComparisonCode = CC ;
2387
2392
}
2388
2393
}
2389
2394
2390
- unsigned ComparisonCode = ~0U ;
2391
-
2392
2395
// FIXME: Hack to recognize vpcmp<comparison code>{ub,uw,ud,uq,b,w,d,q}.
2393
2396
if (PatchedName.startswith (" vpcmp" ) &&
2394
2397
(PatchedName.back () == ' b' || PatchedName.back () == ' w' ||
0 commit comments