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

/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp9149 // and fill in FromMask and ToMask with (consecutive) bits in "from" to be extracted and
9151 static SDValue ParseBFI(SDNode *N, APInt &ToMask, APInt &FromMask) { argument
9155 ToMask = ~cast<ConstantSDNode>(N->getOperand(2))->getAPIntValue();
9156 FromMask = APInt::getLowBitsSet(ToMask.getBitWidth(), ToMask.countPopulation());
9183 APInt ToMask, FromMask; local
9184 SDValue From = ParseBFI(N, ToMask, FromMask);
9191 APInt CombinedToMask = ToMask;
9208 if (BitsProperlyConcatenate(ToMask, NewToMask) &&
9211 if (BitsProperlyConcatenate(NewToMask, ToMask)
[all...]

Completed in 119 milliseconds