HomeSort by relevance Sort by last modified time
    Searched defs:ShiftAmount (Results 1 - 9 of 9) sorted by null

  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 403 SDValue ShiftAmount = DAG.getConstant(NumBits,
406 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
563 SDValue ShiftAmount = DAG.getConstant(NumBits,
565 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
    [all...]
LegalizeVectorOps.cpp 780 SDValue ShiftAmount = DAG.getConstant(EltWidth - SrcEltWidth, VT);
782 DAG.getNode(ISD::SHL, DL, VT, Op, ShiftAmount),
783 ShiftAmount);
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp 636 static bool Is_PostInc_S4_Offset(SDNode * S, int ShiftAmount) {
643 if (ShiftAmount > 0) {
644 m = v % ShiftAmount;
645 v = v >> ShiftAmount;
678 // ShiftAmount = number of left-shifted bits in the Hexagon instruction.
679 int ShiftAmount = VT.getSizeInBits() / 16;
680 if (isLegal && Is_PostInc_S4_Offset(Offset.getNode(), ShiftAmount)) {
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 760 uint64_t ShiftAmount = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
767 if (Opc == ISD::SRL && ShiftAmount) {
771 ShiftAmount -= 1;
774 while (ShiftAmount--)
    [all...]
  /external/llvm/lib/Target/R600/
R600ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 194 unsigned ShiftAmount;
333 return ShiftedImm.ShiftAmount;
662 unsigned Shift = ShiftedImm.ShiftAmount;
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 200 unsigned &ShiftAmount);
    [all...]

Completed in 582 milliseconds