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

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 462 unsigned InnerShAmt = InnerShiftConst->getZExtValue();
464 IsInnerShl ? TypeWidth - InnerShAmt : InnerShAmt - OuterShAmt;
541 unsigned InnerShAmt = C1->getZExtValue();
560 if (InnerShAmt + OuterShAmt >= TypeWidth)
563 return NewInnerShift(InnerShAmt + OuterShAmt);
569 if (InnerShAmt == OuterShAmt) {
582 assert(InnerShAmt > OuterShAmt &&
589 return NewInnerShift(InnerShAmt - OuterShAmt);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 1503 unsigned InnerShAmt = SA2->getZExtValue();
1504 if (InnerShAmt < ShAmt && InnerShAmt < InnerBits &&
1506 (InnerBits - InnerShAmt + ShAmt) &&
1509 TLO.DAG.getConstant(ShAmt - InnerShAmt, dl, ShiftVT);

Completed in 49 milliseconds