Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1764 return selectBinaryOp(I, ISD::ADD); in selectOperator()
1766 return selectBinaryOp(I, ISD::FADD); in selectOperator()
1768 return selectBinaryOp(I, ISD::SUB); in selectOperator()
1770 return selectBinaryOp(I, ISD::FSUB); in selectOperator()
1772 return selectBinaryOp(I, ISD::MUL); in selectOperator()
1788 return selectBinaryOp(I, ISD::SHL); in selectOperator()
1790 return selectBinaryOp(I, ISD::SRL); in selectOperator()
1792 return selectBinaryOp(I, ISD::SRA); in selectOperator()
1794 return selectBinaryOp(I, ISD::AND); in selectOperator()
1796 return selectBinaryOp(I, ISD::OR); in selectOperator()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DFastISel.h506 bool selectBinaryOp(const User *I, unsigned ISDOpcode);
/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp4646 return selectBinaryOp(I, ISD::MUL); in selectMul()
4880 return selectBinaryOp(I, ISD::SDIV); in selectSDiv()
4885 return selectBinaryOp(I, ISD::SDIV); in selectSDiv()
5109 if (!selectBinaryOp(I, ISD::SREM)) in fastSelectInstruction()
5113 if (!selectBinaryOp(I, ISD::UREM)) in fastSelectInstruction()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp798 static unsigned selectBinaryOp(unsigned GenericOpc, unsigned RegBankID, in selectBinaryOp() function
3128 const unsigned NewOpc = selectBinaryOp(I.getOpcode(), RB.getID(), OpSize); in select()