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

References

lib/Analysis/InstructionSimplify.cpp
  348     TV = SimplifyBinOp(Opcode, SI->getTrueValue(), RHS, Q, MaxRecurse);
  351     TV = SimplifyBinOp(Opcode, LHS, SI->getTrueValue(), Q, MaxRecurse);
  357   if (TV == FV)
  358     return TV;
  361   if (TV && isa<UndefValue>(TV))
  361   if (TV && isa<UndefValue>(TV))
  364     return TV;
  368   if (TV == SI->getTrueValue() && FV == SI->getFalseValue())
  374   if ((FV && !TV) || (TV && !FV)) {
  374   if ((FV && !TV) || (TV && !FV)) {
  377     Instruction *Simplified = dyn_cast<Instruction>(FV ? FV : TV);