Searched refs:LHSShift (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 8429 SDValue LHSShift; // The shift. in MatchRotate() local 8431 matchRotateHalf(DAG, LHS, LHSShift, LHSMask); in MatchRotate() 8438 if (!LHSShift && !RHSShift) in MatchRotate() 8450 if (LHSShift) in MatchRotate() 8452 extractShiftForRotate(DAG, LHSShift, RHS, RHSMask, DL)) in MatchRotate() 8458 LHSShift = NewLHSShift; in MatchRotate() 8461 if (!RHSShift || !LHSShift) in MatchRotate() 8466 if (LHSShift.getOpcode() == RHSShift.getOpcode()) in MatchRotate() 8472 std::swap(LHSShift, RHSShift); in MatchRotate() 8477 if (LHSShift.getOpcode() != ISD::SHL || RHSShift.getOpcode() != ISD::SRL) in MatchRotate() [all …]
|
H A D | TargetLowering.cpp | 10818 unsigned LHSShift = std::min(LHSLead, Scale); in expandFixedPointDiv() local 10819 unsigned RHSShift = Scale - LHSShift; in expandFixedPointDiv() 10825 if (LHSShift) in expandFixedPointDiv() 10827 DAG.getShiftAmountConstant(LHSShift, VT, dl)); in expandFixedPointDiv()
|