OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lowerMulDiv
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Target/Mips/
MipsSEISelLowering.h
59
SDValue
lowerMulDiv
(SDValue Op, unsigned NewOpc, bool HasLo, bool HasHi,
MipsSEISelLowering.cpp
145
case ISD::SMUL_LOHI: return
lowerMulDiv
(Op, MipsISD::Mult, true, true, DAG);
146
case ISD::UMUL_LOHI: return
lowerMulDiv
(Op, MipsISD::Multu, true, true, DAG);
147
case ISD::MULHS: return
lowerMulDiv
(Op, MipsISD::Mult, false, true, DAG);
148
case ISD::MULHU: return
lowerMulDiv
(Op, MipsISD::Multu, false, true, DAG);
149
case ISD::MUL: return
lowerMulDiv
(Op, MipsISD::Mult, true, false, DAG);
150
case ISD::SDIVREM: return
lowerMulDiv
(Op, MipsISD::DivRem, true, true, DAG);
151
case ISD::UDIVREM: return
lowerMulDiv
(Op, MipsISD::DivRemU, true, true,
567
SDValue MipsSETargetLowering::
lowerMulDiv
(SDValue Op, unsigned NewOpc,
Completed in 32 milliseconds