Lines Matching defs:PosOpcode
655 unsigned PosOpcode, unsigned NegOpcode,
659 unsigned PosOpcode, unsigned NegOpcode,
8298 // to both (PosOpcode Shifted, Pos) and (NegOpcode Shifted, Neg), with the
8304 unsigned PosOpcode, unsigned NegOpcode,
8316 return DAG.getNode(HasPos ? PosOpcode : NegOpcode, DL, VT, Shifted,
8325 // to both (PosOpcode N0, N1, Pos) and (NegOpcode N0, N1, Neg), with the
8332 unsigned PosOpcode, unsigned NegOpcode,
8345 return DAG.getNode(HasPos ? PosOpcode : NegOpcode, DL, VT, N0, N1,
8350 // so for now just use the PosOpcode case if its legal.
8352 if (PosOpcode == ISD::FSHL && isPowerOf2_32(EltBits)) {