Searched defs:OpcodeToExtract (Results 1 - 1 of 1) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DInstructionSimplify.cpp162 Instruction::BinaryOps OpcodeToExtract = (Instruction::BinaryOps)OpcToExtract; local
170 if (!Op0 || Op0->getOpcode() != OpcodeToExtract ||
171 !Op1 || Op1->getOpcode() != OpcodeToExtract)
181 if (A == C || (Instruction::isCommutative(OpcodeToExtract) && A == D)) {
194 if (Value *W = SimplifyBinOp(OpcodeToExtract, A, V, TD, DT, MaxRecurse)) {
204 if (B == D || (Instruction::isCommutative(OpcodeToExtract) && B == C)) {
217 if (Value *W = SimplifyBinOp(OpcodeToExtract, V, B, TD, DT, MaxRecurse)) {

Completed in 103 milliseconds