Lines Matching refs:Partition
314 mergeAdjacentPartitionsIf([&](const InstPartition *Partition) { in mergeNonIfConvertible() argument
315 if (Partition->hasDepCycle()) in mergeNonIfConvertible()
321 for (auto *Inst : *Partition) in mergeNonIfConvertible()
412 for (const auto &Partition : PartitionContainer) { in setupPartitionIdOnInstructions() local
413 for (Instruction *Inst : Partition) { in setupPartitionIdOnInstructions()
487 for (auto &Partition : PartitionContainer) in removeUnusedInsts() local
488 Partition.removeUnusedInsts(); in removeUnusedInsts()
508 int &Partition = PtrToPartitions[I]; in computePartitionSetForPointers() local
510 Partition = -2; in computePartitionSetForPointers()
515 if (Partition == -2) in computePartitionSetForPointers()
516 Partition = ThisPartition; in computePartitionSetForPointers()
518 else if (Partition == -1) in computePartitionSetForPointers()
520 else if (Partition != (int)ThisPartition) in computePartitionSetForPointers()
521 Partition = -1; in computePartitionSetForPointers()
523 assert(Partition != -2 && "Pointer not belonging to any partition"); in computePartitionSetForPointers()