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

  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 3973 auto CanShrinkImmediate = [&](int64_t &ShiftedVal) {
3977 ShiftedVal = (uint64_t)Val >> ShAmt;
3978 if (NVT == MVT::i64 && !isUInt<32>(Val) && isUInt<32>(ShiftedVal))
3981 if (ShiftedVal == UINT8_MAX || ShiftedVal == UINT16_MAX)
3984 ShiftedVal = Val >> ShAmt;
3985 if ((!isInt<8>(Val) && isInt<8>(ShiftedVal)) ||
3986 (!isInt<32>(Val) && isInt<32>(ShiftedVal)))
3990 ShiftedVal = (uint64_t)Val >> ShAmt;
3991 if (NVT == MVT::i64 && !isUInt<32>(Val) && isUInt<32>(ShiftedVal))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 12290 SDValue ShiftedVal = DAG.getNode(ISD::SHL, DL, VT, N0,
12293 SDValue AddSubN0 = ShiftValUseIsN0 ? ShiftedVal : N0;
12294 SDValue AddSubN1 = ShiftValUseIsN0 ? N0 : ShiftedVal;

Completed in 67 milliseconds