Searched defs:SelectBinaryOp (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp336 /// SelectBinaryOp - Select and emit code for a binary operator instruction,
339 bool FastISel::SelectBinaryOp(const User *I, unsigned ISDOpcode) { function in class:FastISel
928 return SelectBinaryOp(I, ISD::ADD);
930 return SelectBinaryOp(I, ISD::FADD);
932 return SelectBinaryOp(I, ISD::SUB);
937 return SelectBinaryOp(I, ISD::FSUB);
939 return SelectBinaryOp(I, ISD::MUL);
941 return SelectBinaryOp(I, ISD::FMUL);
943 return SelectBinaryOp(I, ISD::SDIV);
945 return SelectBinaryOp(
[all...]

Completed in 82 milliseconds