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

References

lib/Analysis/InstructionSimplify.cpp
 1197   if (Constant *C = foldOrCommuteConstant(Opcode, Op0, Op1, Q))
 1201   if (match(Op0, m_Zero()))
 1202     return Constant::getNullValue(Op0->getType());
 1210     return Op0;
 1214     return UndefValue::get(Op0->getType());
 1218   if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
 1219     if (Value *V = ThreadBinOpOverSelect(Opcode, Op0, Op1, Q, MaxRecurse))
 1224   if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
 1225     if (Value *V = ThreadBinOpOverPHI(Opcode, Op0, Op1, Q, MaxRecurse))
 1232     return UndefValue::get(Op0->getType());
 1238     return Op0;