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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp337 /// SelectBinaryOp - Select and emit code for a binary operator instruction,
340 bool FastISel::SelectBinaryOp(const User *I, unsigned ISDOpcode) { function in class:FastISel
943 return SelectBinaryOp(I, ISD::ADD);
945 return SelectBinaryOp(I, ISD::FADD);
947 return SelectBinaryOp(I, ISD::SUB);
952 return SelectBinaryOp(I, ISD::FSUB);
954 return SelectBinaryOp(I, ISD::MUL);
956 return SelectBinaryOp(I, ISD::FMUL);
958 return SelectBinaryOp(I, ISD::SDIV);
960 return SelectBinaryOp(
[all...]

Completed in 246 milliseconds