Home
last modified time | relevance | path

Searched refs:OpcodeToExpand (Results 1 – 1 of 1) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DInstructionSimplify.cpp168 Instruction::BinaryOps OpcodeToExpand, in ExpandBinOp() argument
176 if (Op0->getOpcode() == OpcodeToExpand) { in ExpandBinOp()
184 if ((L == A && R == B) || (Instruction::isCommutative(OpcodeToExpand) in ExpandBinOp()
190 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) { in ExpandBinOp()
199 if (Op1->getOpcode() == OpcodeToExpand) { in ExpandBinOp()
207 if ((L == B && R == C) || (Instruction::isCommutative(OpcodeToExpand) in ExpandBinOp()
213 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) { in ExpandBinOp()