Lines Matching refs:DeadOff

281                                           int64_t KillingOff, int64_t DeadOff,  in isPartialOverwrite()  argument
292 KillingOff < int64_t(DeadOff + DeadSize) && in isPartialOverwrite()
293 int64_t(KillingOff + KillingSize) >= DeadOff) { in isPartialOverwrite()
297 LLVM_DEBUG(dbgs() << "DSE: Partial overwrite: DeadLoc [" << DeadOff << ", " in isPartialOverwrite()
298 << int64_t(DeadOff + DeadSize) << ") KillingLoc [" in isPartialOverwrite()
336 if (ILI->second <= DeadOff && ILI->first >= int64_t(DeadOff + DeadSize)) { in isPartialOverwrite()
338 << DeadOff << ", " << int64_t(DeadOff + DeadSize) in isPartialOverwrite()
348 if (EnablePartialStoreMerging && KillingOff >= DeadOff && in isPartialOverwrite()
349 int64_t(DeadOff + DeadSize) > KillingOff && in isPartialOverwrite()
350 uint64_t(KillingOff - DeadOff) + KillingSize <= DeadSize) { in isPartialOverwrite()
351 LLVM_DEBUG(dbgs() << "DSE: Partial overwrite a dead load [" << DeadOff in isPartialOverwrite()
352 << ", " << int64_t(DeadOff + DeadSize) in isPartialOverwrite()
369 (KillingOff > DeadOff && KillingOff < int64_t(DeadOff + DeadSize) && in isPartialOverwrite()
370 int64_t(KillingOff + KillingSize) >= int64_t(DeadOff + DeadSize))) in isPartialOverwrite()
383 (KillingOff <= DeadOff && int64_t(KillingOff + KillingSize) > DeadOff)) { in isPartialOverwrite()
384 assert(int64_t(KillingOff + KillingSize) < int64_t(DeadOff + DeadSize) && in isPartialOverwrite()
936 int64_t &KillingOff, int64_t &DeadOff) { in isOverwrite()
1022 DeadOff = 0; in isOverwrite()
1025 GetPointerBaseWithConstantOffset(DeadPtr, DeadOff, DL); in isOverwrite()
1049 if (DeadOff >= KillingOff) { in isOverwrite()
1052 if (uint64_t(DeadOff - KillingOff) + DeadSize <= KillingSize) in isOverwrite()
1056 else if ((uint64_t)(DeadOff - KillingOff) < KillingSize) in isOverwrite()
1061 else if ((uint64_t)(KillingOff - DeadOff) < DeadSize) { in isOverwrite()