OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BinaryOp_match
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/IR/
PatternMatch.h
415
struct
BinaryOp_match
{
419
BinaryOp_match
(const LHS_t &LHS, const RHS_t &RHS) : L(LHS), R(RHS) {}
434
inline
BinaryOp_match
<LHS, RHS, Instruction::Add> m_Add(const LHS &L,
436
return
BinaryOp_match
<LHS, RHS, Instruction::Add>(L, R);
440
inline
BinaryOp_match
<LHS, RHS, Instruction::FAdd> m_FAdd(const LHS &L,
442
return
BinaryOp_match
<LHS, RHS, Instruction::FAdd>(L, R);
446
inline
BinaryOp_match
<LHS, RHS, Instruction::Sub> m_Sub(const LHS &L,
448
return
BinaryOp_match
<LHS, RHS, Instruction::Sub>(L, R);
452
inline
BinaryOp_match
<LHS, RHS, Instruction::FSub> m_FSub(const LHS &L,
454
return
BinaryOp_match
<LHS, RHS, Instruction::FSub>(L, R)
[
all
...]
/external/llvm/lib/Analysis/
ValueTracking.cpp
522
inline match_combine_or<
BinaryOp_match
<LHS, RHS, Instruction::And>,
523
BinaryOp_match
<RHS, LHS, Instruction::And>>
529
inline match_combine_or<
BinaryOp_match
<LHS, RHS, Instruction::Or>,
530
BinaryOp_match
<RHS, LHS, Instruction::Or>>
536
inline match_combine_or<
BinaryOp_match
<LHS, RHS, Instruction::Xor>,
537
BinaryOp_match
<RHS, LHS, Instruction::Xor>>
[
all
...]
Completed in 84 milliseconds