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
68
SDValue
lowerMulDiv
(SDValue Op, unsigned NewOpc, bool HasLo, bool HasHi,
MipsSEISelLowering.cpp
365
case ISD::SMUL_LOHI: return
lowerMulDiv
(Op, MipsISD::Mult, true, true, DAG);
366
case ISD::UMUL_LOHI: return
lowerMulDiv
(Op, MipsISD::Multu, true, true, DAG);
367
case ISD::MULHS: return
lowerMulDiv
(Op, MipsISD::Mult, false, true, DAG);
368
case ISD::MULHU: return
lowerMulDiv
(Op, MipsISD::Multu, false, true, DAG);
369
case ISD::MUL: return
lowerMulDiv
(Op, MipsISD::Mult, true, false, DAG);
370
case ISD::SDIVREM: return
lowerMulDiv
(Op, MipsISD::DivRem, true, true, DAG);
371
case ISD::UDIVREM: return
lowerMulDiv
(Op, MipsISD::DivRemU, true, true,
[
all
...]
Completed in 52 milliseconds