reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
529 bool selectBinaryOp(const User *I, unsigned ISDOpcode);
1794 return selectBinaryOp(I, ISD::ADD); 1796 return selectBinaryOp(I, ISD::FADD); 1798 return selectBinaryOp(I, ISD::SUB); 1804 return selectBinaryOp(I, ISD::FSUB); 1807 return selectBinaryOp(I, ISD::MUL); 1809 return selectBinaryOp(I, ISD::FMUL); 1811 return selectBinaryOp(I, ISD::SDIV); 1813 return selectBinaryOp(I, ISD::UDIV); 1815 return selectBinaryOp(I, ISD::FDIV); 1817 return selectBinaryOp(I, ISD::SREM); 1819 return selectBinaryOp(I, ISD::UREM); 1821 return selectBinaryOp(I, ISD::FREM); 1823 return selectBinaryOp(I, ISD::SHL); 1825 return selectBinaryOp(I, ISD::SRL); 1827 return selectBinaryOp(I, ISD::SRA); 1829 return selectBinaryOp(I, ISD::AND); 1831 return selectBinaryOp(I, ISD::OR); 1833 return selectBinaryOp(I, ISD::XOR);lib/Target/AArch64/AArch64FastISel.cpp
4684 return selectBinaryOp(I, ISD::MUL); 4925 return selectBinaryOp(I, ISD::SDIV); 4930 return selectBinaryOp(I, ISD::SDIV); 5161 if (!selectBinaryOp(I, ISD::SREM)) 5165 if (!selectBinaryOp(I, ISD::UREM))lib/Target/Mips/MipsFastISel.cpp
2046 if (!selectBinaryOp(I, ISD::SDIV)) 2050 if (!selectBinaryOp(I, ISD::UDIV)) 2054 if (!selectBinaryOp(I, ISD::SREM)) 2058 if (!selectBinaryOp(I, ISD::UREM))