Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Incoming

510 /// it on the incoming phi values yields the same result for every value.  If so
532 // Evaluate the BinOp on the incoming phi values.
535 Value *Incoming = PI->getIncomingValue(i);
536 // If the incoming value is the phi node itself, it can safely be skipped.
537 if (Incoming == PI) continue;
539 SimplifyBinOp(Opcode, Incoming, RHS, Q, MaxRecurse) :
540 SimplifyBinOp(Opcode, LHS, Incoming, Q, MaxRecurse);
553 /// incoming phi values yields the same result every time. If so returns the
573 // Evaluate the BinOp on the incoming phi values.
576 Value *Incoming = PI->getIncomingValue(i);
577 // If the incoming value is the phi node itself, it can safely be skipped.
578 if (Incoming == PI) continue;
579 Value *V = SimplifyCmpInst(Pred, Incoming, RHS, Q, MaxRecurse);
1026 // operating on all incoming values of the phi always yields the same value.
1125 // operating on all incoming values of the phi always yields the same value.
1230 // operating on all incoming values of the phi always yields the same value.
1325 // operating on all incoming values of the phi always yields the same value.
1510 // operating on all incoming values of the phi always yields the same value.
1605 // operating on all incoming values of the phi always yields the same value.
1704 // addresses are not equal to incoming argument values. They don't *alias*,
2569 // doing the compare with each incoming phi value yields a common result.
2666 // doing the compare with each incoming phi value yields a common result.
2804 // If all of the PHI's incoming values are the same then replace the PHI node
2809 Value *Incoming = PN->getIncomingValue(i);
2810 // If the incoming value is the phi node itself, it can safely be skipped.
2811 if (Incoming == PN) continue;
2812 if (isa<UndefValue>(Incoming)) {
2817 if (CommonValue && Incoming != CommonValue)
2819 CommonValue = Incoming;
2822 // If CommonValue is null then all of the incoming values were either undef or
2907 // operating on all incoming values of the phi always yields the same value.