HomeSort by: relevance | last modified time | path
    Searched refs:RotAmt (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 139 unsigned RotAmt = TZ & ~1;
142 if ((rotr32(Imm, RotAmt) & ~255U) == 0)
143 return (32-RotAmt)&31; // HW rotates right, not left.
157 return (32-RotAmt)&31; // HW rotates right, not left.
168 unsigned RotAmt = getSOImmValRotate(Arg);
171 if (rotr32(~255U, RotAmt) & Arg)
175 return rotl32(Arg, RotAmt) | ((RotAmt>>1) << 8);
305 unsigned RotAmt = countLeadingZeros(V);
306 if (RotAmt >= 24
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
Thumb2InstrInfo.cpp 385 unsigned RotAmt = countLeadingZeros(ThisVal);
386 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
590 unsigned RotAmt = countLeadingZeros<unsigned>(Offset);
591 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xff000000U, RotAmt);
ARMBaseInstrInfo.cpp 2472 unsigned RotAmt = ARM_AM::getSOImmValRotate(NumBytes);
2473 unsigned ThisVal = NumBytes & ARM_AM::rotr32(0xFF, RotAmt);
2653 unsigned RotAmt = ARM_AM::getSOImmValRotate(Offset);
2654 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xFF, RotAmt);
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 1463 unsigned RotAmt = V.getConstantOperandVal(1);
1468 Bits[i] = LHSBits[i < RotAmt ? i + (NumBits - RotAmt) : i - RotAmt];
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 3931 unsigned RotAmt = C->getAPIntValue().urem(VTBits);
3935 RotAmt = (VTBits - RotAmt) % VTBits;
3939 if (Tmp > (RotAmt + 1)) return (Tmp - RotAmt);
DAGCombiner.cpp 7419 SDValue RotAmt = DAG.getConstant(WideNumBits / 2, DL, WideVT);
7420 SourceValue = DAG.getNode(ISD::ROTR, DL, WideVT, SourceValue, RotAmt);
8965 uint64_t RotAmt = Cst->getAPIntValue().urem(BitWidth);
8967 DAG.getConstant(RotAmt, SDLoc(N), ShAmtTy));
17562 SDValue RotAmt =
17565 StoreOp = DAG.getNode(ISD::ROTL, LoadDL, JointMemOpVT, NewLoad, RotAmt);
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVISelLowering.cpp 5257 uint64_t RotAmt = Reverse.getConstantOperandVal(1);
5258 if (RotAmt == (VT.getSizeInBits() / 2))
5260 DAG.getConstant(RotAmt, DL, VT));
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp 12366 auto RotateAndPermute = [&](SDValue Lo, SDValue Hi, int RotAmt, int Ofs) {
12371 DAG.getTargetConstant(Scale * RotAmt, DL, MVT::i8)));
12379 PermMask[Lane + Elt] = Lane + ((M + Ofs - RotAmt) % NumEltsPerLane);
12381 PermMask[Lane + Elt] = Lane + ((M - Ofs - RotAmt) % NumEltsPerLane);
    [all...]

Completed in 73 milliseconds