Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1701 return selectBinaryOp(I, ISD::ADD); in selectOperator()
1703 return selectBinaryOp(I, ISD::FADD); in selectOperator()
1705 return selectBinaryOp(I, ISD::SUB); in selectOperator()
1707 return selectBinaryOp(I, ISD::FSUB); in selectOperator()
1709 return selectBinaryOp(I, ISD::MUL); in selectOperator()
1725 return selectBinaryOp(I, ISD::SHL); in selectOperator()
1727 return selectBinaryOp(I, ISD::SRL); in selectOperator()
1729 return selectBinaryOp(I, ISD::SRA); in selectOperator()
1731 return selectBinaryOp(I, ISD::AND); in selectOperator()
1733 return selectBinaryOp(I, ISD::OR); in selectOperator()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DFastISel.h501 bool selectBinaryOp(const User *I, unsigned ISDOpcode);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp2043 if (!selectBinaryOp(I, ISD::SDIV)) in fastSelectInstruction()
2047 if (!selectBinaryOp(I, ISD::UDIV)) in fastSelectInstruction()
2051 if (!selectBinaryOp(I, ISD::SREM)) in fastSelectInstruction()
2055 if (!selectBinaryOp(I, ISD::UREM)) in fastSelectInstruction()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp4571 return selectBinaryOp(I, ISD::MUL); in selectMul()
4805 return selectBinaryOp(I, ISD::SDIV); in selectSDiv()
4810 return selectBinaryOp(I, ISD::SDIV); in selectSDiv()
5034 if (!selectBinaryOp(I, ISD::SREM)) in fastSelectInstruction()
5038 if (!selectBinaryOp(I, ISD::UREM)) in fastSelectInstruction()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp716 static unsigned selectBinaryOp(unsigned GenericOpc, unsigned RegBankID, in selectBinaryOp() function
2878 const unsigned NewOpc = selectBinaryOp(I.getOpcode(), RB.getID(), OpSize); in select()