Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp444 bool FastISel::selectBinaryOp(const User *I, unsigned ISDOpcode) { in selectBinaryOp() function in FastISel
1686 return selectBinaryOp(I, ISD::ADD); in selectOperator()
1688 return selectBinaryOp(I, ISD::FADD); in selectOperator()
1690 return selectBinaryOp(I, ISD::SUB); in selectOperator()
1692 return selectBinaryOp(I, ISD::FSUB); in selectOperator()
1694 return selectBinaryOp(I, ISD::MUL); in selectOperator()
1696 return selectBinaryOp(I, ISD::FMUL); in selectOperator()
1698 return selectBinaryOp(I, ISD::SDIV); in selectOperator()
1700 return selectBinaryOp(I, ISD::UDIV); in selectOperator()
1702 return selectBinaryOp(I, ISD::FDIV); in selectOperator()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DFastISel.h502 bool selectBinaryOp(const User *I, unsigned ISDOpcode);
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp4610 return selectBinaryOp(I, ISD::MUL); in selectMul()
4844 return selectBinaryOp(I, ISD::SDIV); in selectSDiv()
4849 return selectBinaryOp(I, ISD::SDIV); in selectSDiv()
5075 if (!selectBinaryOp(I, ISD::SREM)) in fastSelectInstruction()
5079 if (!selectBinaryOp(I, ISD::UREM)) in fastSelectInstruction()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp750 static unsigned selectBinaryOp(unsigned GenericOpc, unsigned RegBankID, in selectBinaryOp() function
3059 const unsigned NewOpc = selectBinaryOp(I.getOpcode(), RB.getID(), OpSize); in select()