Searched refs:OpcodeToExpand (Results 1 – 1 of 1) sorted by relevance
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 79 Instruction::BinaryOps OpcodeToExpand = (Instruction::BinaryOps)OpcToExpand; in ExpandBinOp() local 86 if (Op0->getOpcode() == OpcodeToExpand) { in ExpandBinOp() 94 if ((L == A && R == B) || (Instruction::isCommutative(OpcodeToExpand) in ExpandBinOp() 100 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, TD, DT, in ExpandBinOp() 110 if (Op1->getOpcode() == OpcodeToExpand) { in ExpandBinOp() 118 if ((L == B && R == C) || (Instruction::isCommutative(OpcodeToExpand) in ExpandBinOp() 124 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, TD, DT, in ExpandBinOp()
|