Searched refs:selectBinaryOp (Results 1 – 5 of 5) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
H A D | FastISel.cpp | 452 bool FastISel::selectBinaryOp(const User *I, unsigned ISDOpcode) { in selectBinaryOp() function in FastISel 1684 return selectBinaryOp(I, ISD::ADD); in selectOperator() 1686 return selectBinaryOp(I, ISD::FADD); in selectOperator() 1688 return selectBinaryOp(I, ISD::SUB); in selectOperator() 1690 return selectBinaryOp(I, ISD::FSUB); in selectOperator() 1692 return selectBinaryOp(I, ISD::MUL); in selectOperator() 1694 return selectBinaryOp(I, ISD::FMUL); in selectOperator() 1696 return selectBinaryOp(I, ISD::SDIV); in selectOperator() 1698 return selectBinaryOp(I, ISD::UDIV); in selectOperator() 1700 return selectBinaryOp(I, ISD::FDIV); in selectOperator() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
H A D | FastISel.h | 501 bool selectBinaryOp(const User *I, unsigned ISDOpcode);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
H A D | MipsFastISel.cpp | 2043 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()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
H A D | AArch64FastISel.cpp | 4566 return selectBinaryOp(I, ISD::MUL); in selectMul() 4800 return selectBinaryOp(I, ISD::SDIV); in selectSDiv() 4805 return selectBinaryOp(I, ISD::SDIV); in selectSDiv() 5029 if (!selectBinaryOp(I, ISD::SREM)) in fastSelectInstruction() 5033 if (!selectBinaryOp(I, ISD::UREM)) in fastSelectInstruction()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/ |
H A D | AArch64InstructionSelector.cpp | 664 static unsigned selectBinaryOp(unsigned GenericOpc, unsigned RegBankID, in selectBinaryOp() function 2759 const unsigned NewOpc = selectBinaryOp(I.getOpcode(), RB.getID(), OpSize); in select()
|