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

/external/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_32(V); local
300 if (RotAmt >
331 unsigned RotAmt = CountTrailingZeros_32(V); local
[all...]
/external/llvm/lib/Target/ARM/
H A DThumb2InstrInfo.cpp253 unsigned RotAmt = CountLeadingZeros_32(ThisVal);
254 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
270 unsigned RotAmt = CountLeadingZeros_32(ThisVal);
271 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
452 unsigned RotAmt = CountLeadingZeros_32(Offset);
453 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xff000000U, RotAmt);
H A DARMBaseInstrInfo.cpp1744 unsigned RotAmt = ARM_AM::getSOImmValRotate(NumBytes);
1745 unsigned ThisVal = NumBytes & ARM_AM::rotr32(0xFF, RotAmt);
1801 unsigned RotAmt = ARM_AM::getSOImmValRotate(Offset);
1802 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xFF, RotAmt);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2231 unsigned RotAmt = C->getZExtValue() & (VTBits-1); local
2235 RotAmt = (VTBits-RotAmt) & (VTBits-1);
2240 if (Tmp > RotAmt+1) return Tmp-RotAmt;

Completed in 666 milliseconds