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

/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h147 unsigned RotAmt = TZ & ~1; local
150 if ((rotr32(Imm, RotAmt) & ~255U) == 0)
151 return (32-RotAmt)&31; // HW rotates right, not left.
165 return (32-RotAmt)&31; // HW rotates right, not left.
176 unsigned RotAmt = getSOImmValRotate(Arg); local
179 if (rotr32(~255U, RotAmt) & Arg)
183 return rotl32(Arg, RotAmt) | ((RotAmt>>1) << 8);
299 unsigned RotAmt = countLeadingZeros(V); local
300 if (RotAmt >
331 unsigned RotAmt = countTrailingZeros(V); local
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/
H A DThumb2InstrInfo.cpp304 unsigned RotAmt = countLeadingZeros(ThisVal);
305 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
321 unsigned RotAmt = countLeadingZeros(ThisVal);
322 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
510 unsigned RotAmt = countLeadingZeros<unsigned>(Offset);
511 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xff000000U, RotAmt);
H A DARMBaseInstrInfo.cpp2013 unsigned RotAmt = ARM_AM::getSOImmValRotate(NumBytes);
2014 unsigned ThisVal = NumBytes & ARM_AM::rotr32(0xFF, RotAmt);
2178 unsigned RotAmt = ARM_AM::getSOImmValRotate(Offset); local
2179 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xFF, RotAmt);
/freebsd-11.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp925 unsigned RotAmt = V.getConstantOperandVal(1); local
931 Bits[i] = LHSBits[i < RotAmt ? i + (Bits.size() - RotAmt) : i - RotAmt];
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2627 unsigned RotAmt = C->getZExtValue() & (VTBits-1); local
2631 RotAmt = (VTBits-RotAmt) & (VTBits-1);
2636 if (Tmp > RotAmt+1) return Tmp-RotAmt;

Completed in 203 milliseconds