Searched refs:OpcodeToExpand (Results 1 – 2 of 2) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | InstructionSimplify.cpp | 99 Instruction::BinaryOps OpcodeToExpand = (Instruction::BinaryOps)OpcToExpand; in ExpandBinOp() local 106 if (Op0->getOpcode() == OpcodeToExpand) { in ExpandBinOp() 114 if ((L == A && R == B) || (Instruction::isCommutative(OpcodeToExpand) in ExpandBinOp() 120 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, TD, DT, in ExpandBinOp() 130 if (Op1->getOpcode() == OpcodeToExpand) { in ExpandBinOp() 138 if ((L == B && R == C) || (Instruction::isCommutative(OpcodeToExpand) in ExpandBinOp() 144 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, TD, DT, in ExpandBinOp()
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 143 Instruction::BinaryOps OpcodeToExpand = (Instruction::BinaryOps)OpcToExpand; in ExpandBinOp() local 150 if (Op0->getOpcode() == OpcodeToExpand) { in ExpandBinOp() 158 if ((L == A && R == B) || (Instruction::isCommutative(OpcodeToExpand) in ExpandBinOp() 164 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) { in ExpandBinOp() 173 if (Op1->getOpcode() == OpcodeToExpand) { in ExpandBinOp() 181 if ((L == B && R == C) || (Instruction::isCommutative(OpcodeToExpand) in ExpandBinOp() 187 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) { in ExpandBinOp()
|