[PATCH] D60239: [Lint] Permit aliasing noalias readonly arguments
Josh Stone via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 23 16:42:01 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL359047: [Lint] Permit aliasing noalias readonly arguments (authored by cuviper, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D60239?vs=193625&id=196352#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D60239/new/
https://reviews.llvm.org/D60239
Files:
llvm/trunk/lib/Analysis/Lint.cpp
llvm/trunk/test/Analysis/Lint/noalias-readonly.ll
Index: llvm/trunk/lib/Analysis/Lint.cpp
===================================================================
--- llvm/trunk/lib/Analysis/Lint.cpp
+++ llvm/trunk/lib/Analysis/Lint.cpp
@@ -267,10 +267,14 @@
if (Formal->hasNoAliasAttr() && Actual->getType()->isPointerTy()) {
AttributeList PAL = CS.getAttributes();
unsigned ArgNo = 0;
- for (CallSite::arg_iterator BI = CS.arg_begin(); BI != AE; ++BI) {
+ for (CallSite::arg_iterator BI = CS.arg_begin(); BI != AE;
+ ++BI, ++ArgNo) {
// Skip ByVal arguments since they will be memcpy'd to the callee's
// stack so we're not really passing the pointer anyway.
- if (PAL.hasParamAttribute(ArgNo++, Attribute::ByVal))
+ if (PAL.hasParamAttribute(ArgNo, Attribute::ByVal))
+ continue;
+ // If both arguments are readonly, they have no dependence.
+ if (Formal->onlyReadsMemory() && CS.onlyReadsMemory(ArgNo))
continue;
if (AI != BI && (*BI)->getType()->isPointerTy()) {
AliasResult Result = AA->alias(*AI, *BI);
Index: llvm/trunk/test/Analysis/Lint/noalias-readonly.ll
===================================================================
--- llvm/trunk/test/Analysis/Lint/noalias-readonly.ll
+++ llvm/trunk/test/Analysis/Lint/noalias-readonly.ll
@@ -0,0 +1,40 @@
+; RUN: opt < %s -lint -disable-output 2>&1 | FileCheck %s
+
+declare void @f1(i8* noalias readonly, i8*)
+
+define void @f2(i8* %a) {
+entry:
+ call void @f1(i8* %a, i8* %a)
+ ret void
+}
+
+; Lint should complain about us passing %a to both arguments, since the noalias
+; argument may depend on writes to the other.
+; CHECK: Unusual: noalias argument aliases another argument
+; CHECK-NEXT: call void @f1(i8* %a, i8* %a)
+
+declare void @f3(i8* noalias, i8* readonly)
+
+define void @f4(i8* %a) {
+entry:
+ call void @f3(i8* %a, i8* %a)
+ ret void
+}
+
+; Lint should complain about us passing %a to both arguments, since writes to
+; the noalias argument may cause a dependency for the other.
+; CHECK: Unusual: noalias argument aliases another argument
+; CHECK-NEXT: call void @f3(i8* %a, i8* %a)
+
+declare void @f5(i8* noalias readonly, i8* readonly)
+
+define void @f6(i8* %a) {
+entry:
+ call void @f5(i8* %a, i8* %a)
+ ret void
+}
+
+; Lint should not complain about passing %a to both arguments even if one is
+; noalias, since they are both readonly and thus have no dependence.
+; CHECK-NOT: Unusual: noalias argument aliases another argument
+; CHECK-NOT: call void @f5(i8* %a, i8* %a)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D60239.196352.patch
Type: text/x-patch
Size: 2602 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190423/19bc450c/attachment.bin>
More information about the llvm-commits
mailing list