Searched refs:selectBinaryOp (Results 1 – 5 of 5) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | FastISel.cpp | 1685 return selectBinaryOp(I, ISD::ADD); in selectOperator() 1687 return selectBinaryOp(I, ISD::FADD); in selectOperator() 1689 return selectBinaryOp(I, ISD::SUB); in selectOperator() 1691 return selectBinaryOp(I, ISD::FSUB); in selectOperator() 1693 return selectBinaryOp(I, ISD::MUL); in selectOperator() 1709 return selectBinaryOp(I, ISD::SHL); in selectOperator() 1711 return selectBinaryOp(I, ISD::SRL); in selectOperator() 1713 return selectBinaryOp(I, ISD::SRA); in selectOperator() 1715 return selectBinaryOp(I, ISD::AND); in selectOperator() 1717 return selectBinaryOp(I, ISD::OR); in selectOperator() [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | FastISel.h | 508 bool selectBinaryOp(const User *I, unsigned ISDOpcode);
|
| /llvm-project-15.0.7/llvm/lib/Target/Mips/ |
| H A D | MipsFastISel.cpp | 2037 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()
|
| /llvm-project-15.0.7/llvm/lib/Target/AArch64/ |
| H A D | AArch64FastISel.cpp | 4578 return selectBinaryOp(I, ISD::MUL); in selectMul() 4812 return selectBinaryOp(I, ISD::SDIV); in selectSDiv() 4817 return selectBinaryOp(I, ISD::SDIV); in selectSDiv() 5041 if (!selectBinaryOp(I, ISD::SREM)) in fastSelectInstruction() 5045 if (!selectBinaryOp(I, ISD::UREM)) in fastSelectInstruction()
|
| /llvm-project-15.0.7/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64InstructionSelector.cpp | 750 static unsigned selectBinaryOp(unsigned GenericOpc, unsigned RegBankID, in selectBinaryOp() function 3011 const unsigned NewOpc = selectBinaryOp(I.getOpcode(), RB.getID(), OpSize); in select()
|