Home
last modified time | relevance | path

Searched refs:OppShift (Results 1 – 1 of 1) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp8060 static SDValue extractShiftForRotate(SelectionDAG &DAG, SDValue OppShift, in extractShiftForRotate() argument
8063 assert(OppShift && ExtractFrom && "Empty SDValue"); in extractShiftForRotate()
8064 if (OppShift.getOpcode() != ISD::SHL && OppShift.getOpcode() != ISD::SRL) in extractShiftForRotate()
8070 SDValue OppShiftLHS = OppShift.getOperand(0); in extractShiftForRotate()
8074 ConstantSDNode *OppShiftCst = isConstOrConstSplat(OppShift.getOperand(1)); in extractShiftForRotate()
8078 if (OppShift.getOpcode() == ISD::SRL && OppShiftCst && in extractShiftForRotate()
8103 if ((OppShift.getOpcode() != ISD::SRL || !SelectOpcode(ISD::SHL, ISD::MUL)) && in extractShiftForRotate()
8104 (OppShift.getOpcode() != ISD::SHL || !SelectOpcode(ISD::SRL, ISD::UDIV))) in extractShiftForRotate()
8160 EVT ShiftVT = OppShift.getOperand(1).getValueType(); in extractShiftForRotate()