Searched refs:RHSShiftAmt (Results 1 - 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp2928 SDValue RHSShiftAmt = RHSShift.getOperand(1); local
2933 RHSShiftAmt.getOpcode() == ISD::Constant) {
2935 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
2943 Rot = DAG.getNode(ISD::ROTR, DL, VT, LHSShiftArg, RHSShiftAmt);
2971 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
2972 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
2974 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
2981 LHSShiftArg, RHSShiftAmt).getNode();
2989 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
2995 LHSShiftArg, RHSShiftAmt)
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp4057 SDValue RHSShiftAmt = RHSShift.getOperand(1); local
4061 if (isConstOrConstSplat(LHSShiftAmt) && isConstOrConstSplat(RHSShiftAmt)) {
4063 uint64_t RShVal = isConstOrConstSplat(RHSShiftAmt)->getZExtValue();
4068 LHSShiftArg, HasROTL ? LHSShiftAmt : RHSShiftAmt);
4101 SDValue RExtOp0 = RHSShiftAmt;
4106 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
4107 RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
4108 RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
4109 RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
4111 RExtOp0 = RHSShiftAmt
[all...]

Completed in 860 milliseconds