HomeSort by relevance Sort by last modified time
    Searched refs:RotAmt (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 147 unsigned RotAmt = TZ & ~1;
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);
179 if (rotr32(~255U, RotAmt) & Arg)
183 return rotl32(Arg, RotAmt) | ((RotAmt>>1) << 8);
299 unsigned RotAmt = CountLeadingZeros_32(V);
300 if (RotAmt >= 24
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb2InstrInfo.cpp 253 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);
ARMBaseInstrInfo.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 169 milliseconds