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(V);
300 if (RotAmt >= 24
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb2InstrInfo.cpp 288 unsigned RotAmt = countLeadingZeros(ThisVal);
289 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
305 unsigned RotAmt = countLeadingZeros(ThisVal);
306 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
487 unsigned RotAmt = countLeadingZeros<unsigned>(Offset);
488 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xff000000U, RotAmt);
ARMBaseInstrInfo.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 110 milliseconds