Lines Matching defs:DeadSize

290   const uint64_t DeadSize = DeadLoc.Size.getValue();
297 KillingOff < int64_t(DeadOff + DeadSize) &&
303 << int64_t(DeadOff + DeadSize) << ") KillingLoc ["
341 if (ILI->second <= DeadOff && ILI->first >= int64_t(DeadOff + DeadSize)) {
343 << DeadOff << ", " << int64_t(DeadOff + DeadSize)
354 int64_t(DeadOff + DeadSize) > KillingOff &&
355 uint64_t(KillingOff - DeadOff) + KillingSize <= DeadSize) {
357 << ", " << int64_t(DeadOff + DeadSize)
374 (KillingOff > DeadOff && KillingOff < int64_t(DeadOff + DeadSize) &&
375 int64_t(KillingOff + KillingSize) >= int64_t(DeadOff + DeadSize)))
389 assert(int64_t(KillingOff + KillingSize) < int64_t(DeadOff + DeadSize) &&
567 uint64_t &DeadSize, int64_t KillingStart,
596 if (DeadSize <= uint64_t(ToRemoveStart - DeadStart))
598 ToRemoveSize = DeadSize - uint64_t(ToRemoveStart - DeadStart);
617 assert(DeadSize > ToRemoveSize && "Can't remove more than original size");
619 uint64_t NewSize = DeadSize - ToRemoveSize;
650 shortenAssignment(DeadI, OrigDest, DeadStart * 8, DeadSize * 8, NewSize * 8,
656 DeadSize = NewSize;
662 int64_t &DeadStart, uint64_t &DeadSize) {
675 (uint64_t)(KillingStart - DeadStart) < DeadSize &&
676 // Note: "DeadSize - (uint64_t)(KillingStart - DeadStart)" is known to
678 KillingSize >= DeadSize - (uint64_t)(KillingStart - DeadStart)) {
679 if (tryToShorten(DeadI, DeadStart, DeadSize, KillingStart, KillingSize,
690 int64_t &DeadStart, uint64_t &DeadSize) {
706 assert(KillingSize - (uint64_t)(DeadStart - KillingStart) < DeadSize &&
708 if (tryToShorten(DeadI, DeadStart, DeadSize, KillingStart, KillingSize,
1067 const TypeSize DeadSize = DeadLoc.Size.getValue();
1071 DeadSize.isScalable() || KillingLocSize.isScalable();
1081 // Make sure that the KillingSize size is >= the DeadSize size.
1082 if (KillingSize >= DeadSize)
1089 if (Off >= 0 && (uint64_t)Off + DeadSize <= KillingSize)
1139 if (uint64_t(DeadOff - KillingOff) + DeadSize <= KillingSize)
1148 else if ((uint64_t)(KillingOff - DeadOff) < DeadSize) {
2174 uint64_t DeadSize = Loc.Size.getValue();
2177 Changed |= tryToShortenEnd(DeadI, IntervalMap, DeadStart, DeadSize);
2180 Changed |= tryToShortenBegin(DeadI, IntervalMap, DeadStart, DeadSize);