Searched refs:selectBinaryOp (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp599 bool FastISel::selectBinaryOp(const User *I, unsigned ISDOpcode) { function in class:FastISel
1811 return selectBinaryOp(I, ISD::ADD);
1813 return selectBinaryOp(I, ISD::FADD);
1815 return selectBinaryOp(I, ISD::SUB);
1821 return selectBinaryOp(I, ISD::FSUB);
1824 return selectBinaryOp(I, ISD::MUL);
1826 return selectBinaryOp(I, ISD::FMUL);
1828 return selectBinaryOp(I, ISD::SDIV);
1830 return selectBinaryOp(I, ISD::UDIV);
1832 return selectBinaryOp(
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DFastISel.h529 bool selectBinaryOp(const User *I, unsigned ISDOpcode);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp2046 if (!selectBinaryOp(I, ISD::SDIV))
2050 if (!selectBinaryOp(I, ISD::UDIV))
2054 if (!selectBinaryOp(I, ISD::SREM))
2058 if (!selectBinaryOp(I, ISD::UREM))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp4691 return selectBinaryOp(I, ISD::MUL);
4932 return selectBinaryOp(I, ISD::SDIV);
4937 return selectBinaryOp(I, ISD::SDIV);
5171 if (!selectBinaryOp(I, ISD::SREM))
5175 if (!selectBinaryOp(I, ISD::UREM))
H A DAArch64InstructionSelector.cpp476 static unsigned selectBinaryOp(unsigned GenericOpc, unsigned RegBankID, function
1970 const unsigned NewOpc = selectBinaryOp(I.getOpcode(), RB.getID(), OpSize);

Completed in 98 milliseconds