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

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 49 // (x shiftopcode Q) shiftopcode K
51 // x shiftopcode (Q+K) iff (Q+K) u< bitwidth(x) and
78 // Inner shift: (x shiftopcode ShAmt1)
97 Instruction::BinaryOps ShiftOpcode = Sh0->getOpcode();
143 BinaryOperator *NewShift = BinaryOperator::Create(ShiftOpcode, X, NewShAmt);
149 if (ShiftOpcode == Instruction::BinaryOps::Shl) {
341 Instruction::BinaryOps ShiftOpcode = I.getOpcode();
351 return match(V, m_BinOp(BO)) && BO->getOpcode() == ShiftOpcode &&
367 Value *NewShift1 = Builder.CreateBinOp(ShiftOpcode, X, ShiftSumC)
    [all...]
InstCombineCompares.cpp 1648 unsigned ShiftOpcode = Shift->getOpcode();
1649 bool IsShl = ShiftOpcode == Instruction::Shl;
1654 if (ShiftOpcode == Instruction::Shl) {
1665 } else if (ShiftOpcode == Instruction::LShr) {
1678 assert(ShiftOpcode == Instruction::AShr && "Unknown shift opcode");
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
CombinerHelper.cpp 1793 unsigned ShiftOpcode = MI.getOpcode();
1794 assert((ShiftOpcode == TargetOpcode::G_SHL ||
1795 ShiftOpcode == TargetOpcode::G_ASHR ||
1796 ShiftOpcode == TargetOpcode::G_LSHR ||
1797 ShiftOpcode == TargetOpcode::G_USHLSAT ||
1798 ShiftOpcode == TargetOpcode::G_SSHLSAT) &&
1822 if (MI->getOpcode() != ShiftOpcode ||
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyISelLowering.cpp 1984 unsigned ShiftOpcode = Op.getOpcode();
1994 if (ShiftOpcode == ISD::SRA)
1998 DAG.getNode(ShiftOpcode, DL, MVT::i32, ShiftedValue, MaskedShiftValue));
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 7954 unsigned ShiftOpcode = Shift->getOpcode();
7961 if (V.getOpcode() != ShiftOpcode || !V.hasOneUse())
7999 SDValue NewShift1 = DAG.getNode(ShiftOpcode, DL, VT, X, ShiftSumC);
8000 SDValue NewShift2 = DAG.getNode(ShiftOpcode, DL, VT, Y, C1);
10766 auto ShiftOpcode =
10768 return DAG.getNode(ShiftOpcode, DL, VT, NotX, ShiftAmount);

Completed in 99 milliseconds