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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp13222 // and fill in FromMask and ToMask with (consecutive) bits in "from" to be extracted and
13224 static SDValue ParseBFI(SDNode *N, APInt &ToMask, APInt &FromMask) { argument
13229 FromMask = APInt::getLowBitsSet(ToMask.getBitWidth(), ToMask.countPopulation());
13237 FromMask <<= Shift.getLimitedValue(31);
13256 APInt ToMask, FromMask; local
13257 SDValue From = ParseBFI(N, ToMask, FromMask);
13282 BitsProperlyConcatenate(FromMask, NewFromMask))
13285 BitsProperlyConcatenate(NewFromMask, FromMask))

Completed in 95 milliseconds