Searched refs:selectBinaryOp (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | FastISel.cpp | 444 bool FastISel::selectBinaryOp(const User *I, unsigned ISDOpcode) { in selectBinaryOp() function in FastISel 1751 return selectBinaryOp(I, ISD::ADD); in selectOperator() 1753 return selectBinaryOp(I, ISD::FADD); in selectOperator() 1755 return selectBinaryOp(I, ISD::SUB); in selectOperator() 1757 return selectBinaryOp(I, ISD::FSUB); in selectOperator() 1759 return selectBinaryOp(I, ISD::MUL); in selectOperator() 1761 return selectBinaryOp(I, ISD::FMUL); in selectOperator() 1763 return selectBinaryOp(I, ISD::SDIV); in selectOperator() 1765 return selectBinaryOp(I, ISD::UDIV); in selectOperator() 1767 return selectBinaryOp(I, ISD::FDIV); in selectOperator() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | FastISel.h | 510 bool selectBinaryOp(const User *I, unsigned ISDOpcode);
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsFastISel.cpp | 2052 if (!selectBinaryOp(I, ISD::SDIV)) in fastSelectInstruction() 2056 if (!selectBinaryOp(I, ISD::UDIV)) in fastSelectInstruction() 2060 if (!selectBinaryOp(I, ISD::SREM)) in fastSelectInstruction() 2064 if (!selectBinaryOp(I, ISD::UREM)) in fastSelectInstruction()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64FastISel.cpp | 4663 return selectBinaryOp(I, ISD::MUL); in selectMul() 4896 return selectBinaryOp(I, ISD::SDIV); in selectSDiv() 4901 return selectBinaryOp(I, ISD::SDIV); in selectSDiv() 5129 if (!selectBinaryOp(I, ISD::SREM)) in fastSelectInstruction() 5133 if (!selectBinaryOp(I, ISD::UREM)) in fastSelectInstruction()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64InstructionSelector.cpp | 820 static unsigned selectBinaryOp(unsigned GenericOpc, unsigned RegBankID, in selectBinaryOp() function 3236 const unsigned NewOpc = selectBinaryOp(I.getOpcode(), RB.getID(), OpSize); in select()
|