Lines Matching refs:Partition
319 mergeAdjacentPartitionsIf([&](const InstPartition *Partition) { in mergeNonIfConvertible() argument
320 if (Partition->hasDepCycle()) in mergeNonIfConvertible()
326 for (auto *Inst : *Partition) in mergeNonIfConvertible()
417 for (const auto &Partition : PartitionContainer) { in setupPartitionIdOnInstructions() local
418 for (Instruction *Inst : Partition) { in setupPartitionIdOnInstructions()
494 for (auto &Partition : PartitionContainer) in removeUnusedInsts() local
495 Partition.removeUnusedInsts(); in removeUnusedInsts()
515 int &Partition = PtrToPartitions[I]; in computePartitionSetForPointers() local
517 Partition = -2; in computePartitionSetForPointers()
522 if (Partition == -2) in computePartitionSetForPointers()
523 Partition = ThisPartition; in computePartitionSetForPointers()
525 else if (Partition == -1) in computePartitionSetForPointers()
527 else if (Partition != (int)ThisPartition) in computePartitionSetForPointers()
528 Partition = -1; in computePartitionSetForPointers()
530 assert(Partition != -2 && "Pointer not belonging to any partition"); in computePartitionSetForPointers()