Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp447 bool FastISel::selectBinaryOp(const User *I, unsigned ISDOpcode) { in selectBinaryOp() function in FastISel
1809 return selectBinaryOp(I, ISD::ADD); in selectOperator()
1811 return selectBinaryOp(I, ISD::FADD); in selectOperator()
1813 return selectBinaryOp(I, ISD::SUB); in selectOperator()
1815 return selectBinaryOp(I, ISD::FSUB); in selectOperator()
1817 return selectBinaryOp(I, ISD::MUL); in selectOperator()
1819 return selectBinaryOp(I, ISD::FMUL); in selectOperator()
1821 return selectBinaryOp(I, ISD::SDIV); in selectOperator()
1823 return selectBinaryOp(I, ISD::UDIV); in selectOperator()
1825 return selectBinaryOp(I, ISD::FDIV); in selectOperator()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DFastISel.h509 bool selectBinaryOp(const User *I, unsigned ISDOpcode);
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp2037 if (!selectBinaryOp(I, ISD::SDIV)) in fastSelectInstruction()
2041 if (!selectBinaryOp(I, ISD::UDIV)) in fastSelectInstruction()
2045 if (!selectBinaryOp(I, ISD::SREM)) in fastSelectInstruction()
2049 if (!selectBinaryOp(I, ISD::UREM)) in fastSelectInstruction()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp4660 return selectBinaryOp(I, ISD::MUL); in selectMul()
4894 return selectBinaryOp(I, ISD::SDIV); in selectSDiv()
4899 return selectBinaryOp(I, ISD::SDIV); in selectSDiv()
5123 if (!selectBinaryOp(I, ISD::SREM)) in fastSelectInstruction()
5127 if (!selectBinaryOp(I, ISD::UREM)) in fastSelectInstruction()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp813 static unsigned selectBinaryOp(unsigned GenericOpc, unsigned RegBankID, in selectBinaryOp() function
3101 const unsigned NewOpc = selectBinaryOp(I.getOpcode(), RB.getID(), OpSize); in select()