Lines Matching full:incoming

142   for (auto Incoming : zip(PN.blocks(), PN.incoming_values())) {
143 BasicBlock *BB = std::get<0>(Incoming);
144 Value *Arg = std::get<1>(Incoming);
192 "Not enough available ptr typed incoming values");
253 for (auto Incoming : zip(PN.blocks(), AvailablePtrVals)) {
254 auto *IncomingBB = std::get<0>(Incoming);
255 auto *IncomingVal = std::get<1>(Incoming);
347 // incoming basic block.
352 for (auto Incoming : zip(PN.blocks(), PN.incoming_values()))
354 cast<InsertValueInst>(std::get<1>(Incoming))->getOperand(OpIdx),
355 std::get<0>(Incoming));
385 // in each incoming basic block.
390 for (auto Incoming : zip(PN.blocks(), PN.incoming_values()))
392 cast<ExtractValueInst>(std::get<1>(Incoming))->getAggregateOperand(),
393 std::get<0>(Incoming));
467 for (auto Incoming : drop_begin(zip(PN.blocks(), PN.incoming_values()))) {
468 BasicBlock *InBB = std::get<0>(Incoming);
469 Value *InVal = std::get<1>(Incoming);
595 for (auto Incoming : drop_begin(zip(PN.blocks(), PN.incoming_values()))) {
596 BasicBlock *InBB = std::get<0>(Incoming);
597 Value *InVal = std::get<1>(Incoming);
696 for (auto Incoming : drop_begin(zip(PN.blocks(), PN.incoming_values()))) {
697 BasicBlock *InBB = std::get<0>(Incoming);
698 Value *InVal = std::get<1>(Incoming);
755 for (auto Incoming : drop_begin(zip(PN.blocks(), PN.incoming_values()))) {
756 BasicBlock *BB = std::get<0>(Incoming);
757 Value *V = std::get<1>(Incoming);
848 // All incoming values are zexts or constants that are safe to truncate.
930 for (auto Incoming : drop_begin(zip(PN.blocks(), PN.incoming_values()))) {
931 BasicBlock *BB = std::get<0>(Incoming);
932 Value *V = std::get<1>(Incoming);
1120 for (auto Incoming : zip(PN->blocks(), PN->incoming_values())) {
1121 BasicBlock *BB = std::get<0>(Incoming);
1122 Value *V = std::get<1>(Incoming);
1135 // If the incoming value is a PHI node before a catchswitch, we cannot
1213 for (auto Incoming : zip(PN->blocks(), PN->incoming_values())) {
1214 BasicBlock *Pred = std::get<0>(Incoming);
1215 Value *InVal = std::get<1>(Incoming);
1232 // If the incoming value was a PHI, and if it was one of the PHIs we
1251 // If the incoming value was a PHI, and if it was one of the PHIs we are
1455 // If the incoming values are pointer casts of the same original value,
1504 // an incoming value proved as known nonzero with any non-zero constant.
1505 // For example, in the code below, the incoming value %v can be replaced