[llvm] [FunctionAttrs] Add `errno` inference logic (PR #129067)
Antonio Frighetto via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 20 10:59:27 PDT 2025
================
@@ -118,16 +118,31 @@ static void addLocAccess(MemoryEffects &ME, const MemoryLocation &Loc,
ModRefInfo MR, AAResults &AAR) {
// Ignore accesses to known-invariant or local memory.
MR &= AAR.getModRefInfoMask(Loc, /*IgnoreLocal=*/true);
- if (isNoModRef(MR))
+ if (isNoModRef(MR)) {
+ // Mask out errno, can never alias this known-invariant memory location.
+ ME -= ME.errnoMemOnly();
return;
+ }
const Value *UO = getUnderlyingObjectAggressive(Loc.Ptr);
- if (isa<AllocaInst>(UO))
+ if (isa<AllocaInst>(UO)) {
+ ME -= ME.errnoMemOnly();
----------------
antoniofrighetto wrote:
I feel like the original intent was to try to remove errno, if, say, an argument ptr is an alloca for that memory location; which is however not what is happening here. Looking at this better again, I think there's not much we can reliably infer here, and, once again, it should be up to getModRefInfo to determine whether the underlying ptr is alloca memory? Updated this, meanwhile.
https://github.com/llvm/llvm-project/pull/129067
More information about the llvm-commits
mailing list