Lines Matching refs:Partition
315 mergeAdjacentPartitionsIf([&](const InstPartition *Partition) { in mergeNonIfConvertible() argument
316 if (Partition->hasDepCycle()) in mergeNonIfConvertible()
322 for (auto *Inst : *Partition) in mergeNonIfConvertible()
413 for (const auto &Partition : PartitionContainer) { in setupPartitionIdOnInstructions() local
414 for (Instruction *Inst : Partition) { in setupPartitionIdOnInstructions()
488 for (auto &Partition : PartitionContainer) in removeUnusedInsts() local
489 Partition.removeUnusedInsts(); in removeUnusedInsts()
509 int &Partition = PtrToPartitions[I]; in computePartitionSetForPointers() local
511 Partition = -2; in computePartitionSetForPointers()
516 if (Partition == -2) in computePartitionSetForPointers()
517 Partition = ThisPartition; in computePartitionSetForPointers()
519 else if (Partition == -1) in computePartitionSetForPointers()
521 else if (Partition != (int)ThisPartition) in computePartitionSetForPointers()
522 Partition = -1; in computePartitionSetForPointers()
524 assert(Partition != -2 && "Pointer not belonging to any partition"); in computePartitionSetForPointers()