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

  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiISelLowering.cpp 892 int64_t MulAmt = C->getSExtValue();
906 int64_t E = std::abs(MulAmt);
907 int S = (MulAmt < 0 ? -1 : 1);
930 if (std::abs(MulAmt) % 2 == 1)
941 // positive value (i.e., largest i such that zi == 1 and MulAmt has V<<i as a
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelLowering.cpp 13198 int64_t MulAmt = C->getSExtValue();
13199 unsigned ShiftAmt = countTrailingZeros<uint64_t>(MulAmt);
13206 MulAmt >>= ShiftAmt;
13208 if (MulAmt >= 0) {
13209 if (isPowerOf2_32(MulAmt - 1)) {
13215 DAG.getConstant(Log2_32(MulAmt - 1), DL,
13217 } else if (isPowerOf2_32(MulAmt + 1)) {
13222 DAG.getConstant(Log2_32(MulAmt + 1), DL,
13228 uint64_t MulAmtAbs = -MulAmt;
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 16770 const APInt &MulAmt = ConstOpOrElement->getAPIntValue();
16771 bool IsNeg = MulAmt.isNegative();
16772 APInt MulAmtAbs = MulAmt.abs();
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 63 milliseconds