Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp381 bool FastISel::selectBinaryOp(const User *I, unsigned ISDOpcode) { in selectBinaryOp() function in FastISel
1474 return selectBinaryOp(I, ISD::ADD); in selectOperator()
1476 return selectBinaryOp(I, ISD::FADD); in selectOperator()
1478 return selectBinaryOp(I, ISD::SUB); in selectOperator()
1483 return selectBinaryOp(I, ISD::FSUB); in selectOperator()
1485 return selectBinaryOp(I, ISD::MUL); in selectOperator()
1487 return selectBinaryOp(I, ISD::FMUL); in selectOperator()
1489 return selectBinaryOp(I, ISD::SDIV); in selectOperator()
1491 return selectBinaryOp(I, ISD::UDIV); in selectOperator()
1493 return selectBinaryOp(I, ISD::FDIV); in selectOperator()
[all …]
/external/llvm/include/llvm/CodeGen/
DFastISel.h526 bool selectBinaryOp(const User *I, unsigned ISDOpcode);
/external/llvm/lib/Target/AArch64/
DAArch64FastISel.cpp4493 return selectBinaryOp(I, ISD::MUL); in selectMul()
4733 return selectBinaryOp(I, ISD::SDIV); in selectSDiv()
4738 return selectBinaryOp(I, ISD::SDIV); in selectSDiv()
4902 if (!selectBinaryOp(I, ISD::SREM)) in fastSelectInstruction()
4906 if (!selectBinaryOp(I, ISD::UREM)) in fastSelectInstruction()