Lines Matching refs:Partition
275 mergeAdjacentPartitionsIf([&](const InstPartition *Partition) { in mergeNonIfConvertible() argument
276 if (Partition->hasDepCycle()) in mergeNonIfConvertible()
282 for (auto *Inst : *Partition) in mergeNonIfConvertible()
371 for (const auto &Partition : PartitionContainer) { in setupPartitionIdOnInstructions() local
372 for (Instruction *Inst : Partition) { in setupPartitionIdOnInstructions()
441 for (auto &Partition : PartitionContainer) in removeUnusedInsts() local
442 Partition.removeUnusedInsts(); in removeUnusedInsts()
462 int &Partition = PtrToPartitions[I]; in computePartitionSetForPointers() local
464 Partition = -2; in computePartitionSetForPointers()
469 if (Partition == -2) in computePartitionSetForPointers()
470 Partition = ThisPartition; in computePartitionSetForPointers()
472 else if (Partition == -1) in computePartitionSetForPointers()
474 else if (Partition != (int)ThisPartition) in computePartitionSetForPointers()
475 Partition = -1; in computePartitionSetForPointers()
477 assert(Partition != -2 && "Pointer not belonging to any partition"); in computePartitionSetForPointers()