Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp620 APInt Mask, InvMask; in performORCombine() local
630 if (isVSplat(Op1Op0, InvMask, IsLittleEndian) && in performORCombine()
631 Mask.getBitWidth() == InvMask.getBitWidth() && Mask == ~InvMask) in performORCombine()
633 else if (isVSplat(Op1Op1, InvMask, IsLittleEndian) && in performORCombine()
634 Mask.getBitWidth() == InvMask.getBitWidth() && Mask == ~InvMask) in performORCombine()
647 if (isVSplat(Op1Op0, InvMask, IsLittleEndian) && in performORCombine()
648 Mask.getBitWidth() == InvMask.getBitWidth() && Mask == ~InvMask) in performORCombine()
650 else if (isVSplat(Op1Op1, InvMask, IsLittleEndian) && in performORCombine()
651 Mask.getBitWidth() == InvMask.getBitWidth() && Mask == ~InvMask) in performORCombine()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp14201 unsigned InvMask = cast<ConstantSDNode>(N->getOperand(2))->getZExtValue(); in PerformBFICombine() local
14202 unsigned LSB = countTrailingZeros(~InvMask); in PerformBFICombine()
14203 unsigned Width = (32 - countLeadingZeros(~InvMask)) - LSB; in PerformBFICombine()