reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstructionCombining.cpp
  555   if (leftDistributesOverRight(InnerOpcode, TopLevelOpcode))
  563       V = SimplifyBinOp(TopLevelOpcode, B, D, SQ.getWithInstruction(&I));
  567         V = Builder.CreateBinOp(TopLevelOpcode, B, D, RHS->getName());
  574   if (!SimplifiedInst && rightDistributesOverLeft(TopLevelOpcode, InnerOpcode))
  582       V = SimplifyBinOp(TopLevelOpcode, A, C, SQ.getWithInstruction(&I));
  587         V = Builder.CreateBinOp(TopLevelOpcode, A, C, LHS->getName());
  617         if (TopLevelOpcode == Instruction::Add &&