Lines Matching refs:DeadOff

272                                           int64_t KillingOff, int64_t DeadOff,  in isPartialOverwrite()  argument
283 KillingOff < int64_t(DeadOff + DeadSize) && in isPartialOverwrite()
284 int64_t(KillingOff + KillingSize) >= DeadOff) { in isPartialOverwrite()
288 LLVM_DEBUG(dbgs() << "DSE: Partial overwrite: DeadLoc [" << DeadOff << ", " in isPartialOverwrite()
289 << int64_t(DeadOff + DeadSize) << ") KillingLoc [" in isPartialOverwrite()
327 if (ILI->second <= DeadOff && ILI->first >= int64_t(DeadOff + DeadSize)) { in isPartialOverwrite()
329 << DeadOff << ", " << int64_t(DeadOff + DeadSize) in isPartialOverwrite()
339 if (EnablePartialStoreMerging && KillingOff >= DeadOff && in isPartialOverwrite()
340 int64_t(DeadOff + DeadSize) > KillingOff && in isPartialOverwrite()
341 uint64_t(KillingOff - DeadOff) + KillingSize <= DeadSize) { in isPartialOverwrite()
342 LLVM_DEBUG(dbgs() << "DSE: Partial overwrite a dead load [" << DeadOff in isPartialOverwrite()
343 << ", " << int64_t(DeadOff + DeadSize) in isPartialOverwrite()
360 (KillingOff > DeadOff && KillingOff < int64_t(DeadOff + DeadSize) && in isPartialOverwrite()
361 int64_t(KillingOff + KillingSize) >= int64_t(DeadOff + DeadSize))) in isPartialOverwrite()
374 (KillingOff <= DeadOff && int64_t(KillingOff + KillingSize) > DeadOff)) { in isPartialOverwrite()
375 assert(int64_t(KillingOff + KillingSize) < int64_t(DeadOff + DeadSize) && in isPartialOverwrite()
838 int64_t &KillingOff, int64_t &DeadOff) { in isOverwrite()
915 DeadOff = 0; in isOverwrite()
918 GetPointerBaseWithConstantOffset(DeadPtr, DeadOff, DL); in isOverwrite()
942 if (DeadOff >= KillingOff) { in isOverwrite()
945 if (uint64_t(DeadOff - KillingOff) + DeadSize <= KillingSize) in isOverwrite()
949 else if ((uint64_t)(DeadOff - KillingOff) < KillingSize) in isOverwrite()
954 else if ((uint64_t)(KillingOff - DeadOff) < DeadSize) { in isOverwrite()