mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
[X86] Add SimplifyDemandedBits support for PEXTRB/PEXTRW (PR39709)
Test case will be included in a followup - its being used but its tricky to show a case that isn't caught at a later stage anyway. llvm-svn: 360588
This commit is contained in:
parent
445f07eaf1
commit
6329a0871e
@ -35112,8 +35112,13 @@ static SDValue combineExtractVectorElt(SDNode *N, SelectionDAG &DAG,
|
||||
// X86ISD::PEXTRW/X86ISD::PEXTRB in:
|
||||
// XFormVExtractWithShuffleIntoLoad, combineHorizontalPredicateResult and
|
||||
// combineBasicSADPattern.
|
||||
if (IsPextr)
|
||||
if (IsPextr) {
|
||||
const TargetLowering &TLI = DAG.getTargetLoweringInfo();
|
||||
if (TLI.SimplifyDemandedBits(
|
||||
SDValue(N, 0), APInt::getAllOnesValue(VT.getSizeInBits()), DCI))
|
||||
return SDValue(N, 0);
|
||||
return SDValue();
|
||||
}
|
||||
|
||||
if (SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI))
|
||||
return NewOp;
|
||||
|
Loading…
Reference in New Issue
Block a user