Lines Matching refs:Partition
320 mergeAdjacentPartitionsIf([&](const InstPartition *Partition) { in mergeNonIfConvertible() argument
321 if (Partition->hasDepCycle()) in mergeNonIfConvertible()
327 for (auto *Inst : *Partition) in mergeNonIfConvertible()
418 for (const auto &Partition : PartitionContainer) { in setupPartitionIdOnInstructions() local
419 for (Instruction *Inst : Partition) { in setupPartitionIdOnInstructions()
495 for (auto &Partition : PartitionContainer) in removeUnusedInsts() local
496 Partition.removeUnusedInsts(); in removeUnusedInsts()
516 int &Partition = PtrToPartitions[I]; in computePartitionSetForPointers() local
518 Partition = -2; in computePartitionSetForPointers()
523 if (Partition == -2) in computePartitionSetForPointers()
524 Partition = ThisPartition; in computePartitionSetForPointers()
526 else if (Partition == -1) in computePartitionSetForPointers()
528 else if (Partition != (int)ThisPartition) in computePartitionSetForPointers()
529 Partition = -1; in computePartitionSetForPointers()
531 assert(Partition != -2 && "Pointer not belonging to any partition"); in computePartitionSetForPointers()