Searched refs:ToMask (Results 1 - 1 of 1) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp14835 // and fill in FromMask and ToMask with (consecutive) bits in "from" to be extracted and
14837 static SDValue ParseBFI(SDNode *N, APInt &ToMask, APInt &FromMask) { argument
14841 ToMask = ~N->getConstantOperandAPInt(2);
14842 FromMask = APInt::getLowBitsSet(ToMask.getBitWidth(), ToMask.popcount());
14868 APInt ToMask, FromMask; local
14869 SDValue From = ParseBFI(N, ToMask, FromMask);
14882 if ((NewToMask & ToMask).getBoolValue())
14887 if (BitsProperlyConcatenate(ToMask, NewToMask) &&
14890 if (BitsProperlyConcatenate(NewToMask, ToMask)
[all...]

Completed in 200 milliseconds