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 146 unsigned RotAmt = TZ & ~1;
149 if ((rotr32(Imm, RotAmt) & ~255U) == 0)
150 return (32-RotAmt)&31; // HW rotates right, not left.
164 return (32-RotAmt)&31; // HW rotates right, not left.
175 unsigned RotAmt = getSOImmValRotate(Arg);
178 if (rotr32(~255U, RotAmt) & Arg)
182 return rotl32(Arg, RotAmt) | ((RotAmt>>1) << 8);
298 unsigned RotAmt = CountLeadingZeros_32(V);
299 if (RotAmt >= 24
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb2InstrInfo.cpp 250 unsigned RotAmt = CountLeadingZeros_32(ThisVal);
251 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
267 unsigned RotAmt = CountLeadingZeros_32(ThisVal);
268 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
449 unsigned RotAmt = CountLeadingZeros_32(Offset);
450 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xff000000U, RotAmt);
ARMBaseInstrInfo.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 166 milliseconds