OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SelectBinaryOp
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp
313
///
SelectBinaryOp
- Select and emit code for a binary operator instruction,
316
bool FastISel::
SelectBinaryOp
(const User *I, unsigned ISDOpcode) {
871
return
SelectBinaryOp
(I, ISD::ADD);
873
return
SelectBinaryOp
(I, ISD::FADD);
875
return
SelectBinaryOp
(I, ISD::SUB);
880
return
SelectBinaryOp
(I, ISD::FSUB);
882
return
SelectBinaryOp
(I, ISD::MUL);
884
return
SelectBinaryOp
(I, ISD::FMUL);
886
return
SelectBinaryOp
(I, ISD::SDIV);
888
return
SelectBinaryOp
(I, ISD::UDIV)
[
all
...]
/external/llvm/include/llvm/CodeGen/
FastISel.h
334
bool
SelectBinaryOp
(const User *I, unsigned ISDOpcode);
/external/llvm/lib/Target/ARM/
ARMFastISel.cpp
162
bool
SelectBinaryOp
(const Instruction *I, unsigned ISDOpcode);
[
all
...]
Completed in 445 milliseconds