Home
last modified time | relevance | path

Searched refs:InvMask (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Target/Mips/
DMipsSEISelLowering.cpp686 APInt Mask, InvMask; in performORCombine() local
696 if (isVSplat(Op1Op0, InvMask, IsLittleEndian) && in performORCombine()
697 Mask.getBitWidth() == InvMask.getBitWidth() && Mask == ~InvMask) in performORCombine()
699 else if (isVSplat(Op1Op1, InvMask, IsLittleEndian) && in performORCombine()
700 Mask.getBitWidth() == InvMask.getBitWidth() && Mask == ~InvMask) in performORCombine()
713 if (isVSplat(Op1Op0, InvMask, IsLittleEndian) && in performORCombine()
714 Mask.getBitWidth() == InvMask.getBitWidth() && Mask == ~InvMask) in performORCombine()
716 else if (isVSplat(Op1Op1, InvMask, IsLittleEndian) && in performORCombine()
717 Mask.getBitWidth() == InvMask.getBitWidth() && Mask == ~InvMask) in performORCombine()
/external/llvm/lib/Target/ARM/
DARMISelLowering.cpp8449 unsigned InvMask = cast<ConstantSDNode>(N->getOperand(2))->getZExtValue(); in PerformBFICombine() local
8450 unsigned LSB = countTrailingZeros(~InvMask); in PerformBFICombine()
8451 unsigned Width = (32 - countLeadingZeros(~InvMask)) - LSB; in PerformBFICombine()