reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
2205 if (Constant *C = foldOrCommuteConstant(Instruction::Xor, Op0, Op1, Q)) 2214 return Op0; 2217 if (Op0 == Op1) 2218 return Constant::getNullValue(Op0->getType()); 2221 if (match(Op0, m_Not(m_Specific(Op1))) || 2222 match(Op1, m_Not(m_Specific(Op0)))) 2223 return Constant::getAllOnesValue(Op0->getType()); 2226 if (Value *V = SimplifyAssociativeBinOp(Instruction::Xor, Op0, Op1, Q,