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

/freebsd-10.2-release/contrib/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.h70 SDValue lowerMulDiv(SDValue Op, unsigned NewOpc, bool HasLo, bool HasHi,
H A DMipsSEISelLowering.cpp266 case ISD::SMUL_LOHI: return lowerMulDiv(Op, MipsISD::Mult, true, true, DAG);
267 case ISD::UMUL_LOHI: return lowerMulDiv(Op, MipsISD::Multu, true, true, DAG);
268 case ISD::MULHS: return lowerMulDiv(Op, MipsISD::Mult, false, true, DAG);
269 case ISD::MULHU: return lowerMulDiv(Op, MipsISD::Multu, false, true, DAG);
270 case ISD::MUL: return lowerMulDiv(Op, MipsISD::Mult, true, false, DAG);
271 case ISD::SDIVREM: return lowerMulDiv(Op, MipsISD::DivRem, true, true, DAG);
272 case ISD::UDIVREM: return lowerMulDiv(Op, MipsISD::DivRemU, true, true,
1154 SDValue MipsSETargetLowering::lowerMulDiv(SDValue Op, unsigned NewOpc, function in class:MipsSETargetLowering

Completed in 48 milliseconds