-
Notifications
You must be signed in to change notification settings - Fork 14.4k
[Loads] Support dereferenceable assumption with variable size. #128436
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
afce735
fd0636c
bd2b555
14b9980
0352c91
9fbc139
6b0f5e7
aaa0de6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,40 @@ static bool isAligned(const Value *Base, Align Alignment, | |
return Base->getPointerAlignment(DL) >= Alignment; | ||
} | ||
|
||
static bool isDereferenceableAndAlignedPointerViaAssumption( | ||
const Value *Ptr, Align Alignment, | ||
function_ref<bool(const RetainedKnowledge &RK)> CheckSize, | ||
const DataLayout &DL, const Instruction *CtxI, AssumptionCache *AC, | ||
const DominatorTree *DT) { | ||
// Dereferenceable information from assumptions is only valid if the value | ||
// cannot be freed between the assumption and use. For now just use the | ||
// information for values that cannot be freed in the function. | ||
// TODO: More precisely check if the pointer can be freed between assumption | ||
// and use. | ||
if (!CtxI || Ptr->canBeFreed()) | ||
return false; | ||
/// Look through assumes to see if both dereferencability and alignment can | ||
/// be proven by an assume if needed. | ||
RetainedKnowledge AlignRK; | ||
RetainedKnowledge DerefRK; | ||
bool IsAligned = Ptr->getPointerAlignment(DL) >= Alignment; | ||
return getKnowledgeForValue( | ||
Ptr, {Attribute::Dereferenceable, Attribute::Alignment}, *AC, | ||
[&](RetainedKnowledge RK, Instruction *Assume, auto) { | ||
if (!isValidAssumeForContext(Assume, CtxI, DT)) | ||
return false; | ||
if (RK.AttrKind == Attribute::Alignment) | ||
AlignRK = std::max(AlignRK, RK); | ||
if (RK.AttrKind == Attribute::Dereferenceable) | ||
DerefRK = std::max(DerefRK, RK); | ||
IsAligned |= AlignRK && AlignRK.ArgValue >= Alignment.value(); | ||
if (IsAligned && DerefRK && CheckSize(DerefRK)) | ||
return true; // We have found what we needed so we stop looking | ||
return false; // Other assumes may have better information. so | ||
// keep looking | ||
}); | ||
} | ||
|
||
/// Test if V is always a pointer to allocated and suitably aligned memory for | ||
/// a simple load or store. | ||
static bool isDereferenceableAndAlignedPointer( | ||
|
@@ -169,38 +203,12 @@ static bool isDereferenceableAndAlignedPointer( | |
Size, DL, CtxI, AC, DT, TLI, | ||
Visited, MaxDepth); | ||
|
||
// Dereferenceable information from assumptions is only valid if the value | ||
// cannot be freed between the assumption and use. For now just use the | ||
// information for values that cannot be freed in the function. | ||
// TODO: More precisely check if the pointer can be freed between assumption | ||
// and use. | ||
if (CtxI && AC && !V->canBeFreed()) { | ||
/// Look through assumes to see if both dereferencability and alignment can | ||
/// be proven by an assume if needed. | ||
RetainedKnowledge AlignRK; | ||
RetainedKnowledge DerefRK; | ||
bool IsAligned = V->getPointerAlignment(DL) >= Alignment; | ||
if (getKnowledgeForValue( | ||
V, {Attribute::Dereferenceable, Attribute::Alignment}, *AC, | ||
[&](RetainedKnowledge RK, Instruction *Assume, auto) { | ||
if (!isValidAssumeForContext(Assume, CtxI, DT)) | ||
return false; | ||
if (RK.AttrKind == Attribute::Alignment) | ||
AlignRK = std::max(AlignRK, RK); | ||
if (RK.AttrKind == Attribute::Dereferenceable) | ||
DerefRK = std::max(DerefRK, RK); | ||
IsAligned |= AlignRK && AlignRK.ArgValue >= Alignment.value(); | ||
if (IsAligned && DerefRK && | ||
DerefRK.ArgValue >= Size.getZExtValue()) | ||
return true; // We have found what we needed so we stop looking | ||
return false; // Other assumes may have better information. so | ||
// keep looking | ||
})) | ||
return true; | ||
} | ||
|
||
// If we don't know, assume the worst. | ||
return false; | ||
return AC && isDereferenceableAndAlignedPointerViaAssumption( | ||
V, Alignment, | ||
[Size](const RetainedKnowledge &RK) { | ||
return RK.ArgValue >= Size.getZExtValue(); | ||
}, | ||
DL, CtxI, AC, DT); | ||
} | ||
|
||
bool llvm::isDereferenceableAndAlignedPointer( | ||
|
@@ -317,8 +325,8 @@ bool llvm::isDereferenceableAndAlignedInLoop( | |
return false; | ||
|
||
const SCEV *MaxBECount = | ||
Predicates ? SE.getPredicatedConstantMaxBackedgeTakenCount(L, *Predicates) | ||
: SE.getConstantMaxBackedgeTakenCount(L); | ||
Predicates ? SE.getPredicatedSymbolicMaxBackedgeTakenCount(L, *Predicates) | ||
: SE.getSymbolicMaxBackedgeTakenCount(L); | ||
const SCEV *BECount = Predicates | ||
? SE.getPredicatedBackedgeTakenCount(L, *Predicates) | ||
: SE.getBackedgeTakenCount(L); | ||
|
@@ -339,9 +347,11 @@ bool llvm::isDereferenceableAndAlignedInLoop( | |
|
||
Value *Base = nullptr; | ||
APInt AccessSize; | ||
const SCEV *AccessSizeSCEV = nullptr; | ||
dtcxzyw marked this conversation as resolved.
Show resolved
Hide resolved
|
||
if (const SCEVUnknown *NewBase = dyn_cast<SCEVUnknown>(AccessStart)) { | ||
Base = NewBase->getValue(); | ||
AccessSize = MaxPtrDiff; | ||
AccessSizeSCEV = PtrDiff; | ||
} else if (auto *MinAdd = dyn_cast<SCEVAddExpr>(AccessStart)) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OT - We may be able to strengthen this code using SCEV's getPointerBase and removePointerBase. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is a good point as a follow-up (I'll try it out). With a pre-loop before the vectorizable loop, I found it bailing out on the |
||
if (MinAdd->getNumOperands() != 2) | ||
return false; | ||
|
@@ -365,12 +375,20 @@ bool llvm::isDereferenceableAndAlignedInLoop( | |
return false; | ||
|
||
AccessSize = MaxPtrDiff + Offset->getAPInt(); | ||
AccessSizeSCEV = SE.getAddExpr(PtrDiff, Offset); | ||
Base = NewBase->getValue(); | ||
} else | ||
return false; | ||
|
||
Instruction *HeaderFirstNonPHI = &*L->getHeader()->getFirstNonPHIIt(); | ||
return isDereferenceableAndAlignedPointer(Base, Alignment, AccessSize, DL, | ||
return isDereferenceableAndAlignedPointerViaAssumption( | ||
Base, Alignment, | ||
[&SE, AccessSizeSCEV](const RetainedKnowledge &RK) { | ||
return SE.isKnownPredicate(CmpInst::ICMP_ULE, AccessSizeSCEV, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is a potential to use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yep, there's probably a number of improvements we can make as follow ups! |
||
SE.getSCEV(RK.IRArgValue)); | ||
}, | ||
DL, HeaderFirstNonPHI, AC, &DT) || | ||
isDereferenceableAndAlignedPointer(Base, Alignment, AccessSize, DL, | ||
HeaderFirstNonPHI, AC, &DT); | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: You can just do