[llvm-dev] Question about a May-alias case
JinGu via llvm-dev
llvm-dev at lists.llvm.org
Wed Jun 13 15:50:35 PDT 2018
Hi Eli,
Thanks for good comment! I missed to initalize the buf.
Let's slightly change the example as below.
char subbuf1[2];
char subbuf2[2];
char subbuf3[2];
char subbuf4[2];
char *buf[4] = {subbuf1, subbuf2, subbuf3, subbuf4};
char c;
void test(int idx) {
char *a = buf[3 - idx];
char *b = buf[idx];
*a = *b;
c++;
*a = *b;
}
I think we can say the 'buf' does not point 'c'.
the IR snippet with '-O3' is
@subbuf1 = common global [2 x i8] zeroinitializer, align 1
@subbuf2 = common global [2 x i8] zeroinitializer, align 1
@subbuf3 = common global [2 x i8] zeroinitializer, align 1
@subbuf4 = common global [2 x i8] zeroinitializer, align 1
@buf = local_unnamed_addr global [4 x i8*] [i8* getelementptr inbounds
([2 x i8], [2 x i8]* @subbuf1, i32 0, i32 0), i8* getelementptr inbounds
([2 x i8], [2 x i8]* @subbuf2, i32 0, i32 0), i8* getelementptr inbounds
([2 x i8], [2 x i8]* @subbuf3, i32 0, i32 0), i8* getelementptr inbounds
([2 x i8], [2 x i8]* @subbuf4, i32 0, i32 0)], align 16
@c = common local_unnamed_addr global i8 0, align 1
; Function Attrs: norecurse nounwind uwtable
define void @test(i32 %idx) local_unnamed_addr #0 {
entry:
%sub = sub nsw i32 3, %idx
%idxprom = sext i32 %sub to i64
%arrayidx = getelementptr inbounds [4 x i8*], [4 x i8*]* @buf, i64 0,
i64 %idxprom
%0 = load i8*, i8** %arrayidx, align 8, !tbaa !1
%idxprom1 = sext i32 %idx to i64
%arrayidx2 = getelementptr inbounds [4 x i8*], [4 x i8*]* @buf, i64
0, i64 %idxprom1
%1 = load i8*, i8** %arrayidx2, align 8, !tbaa !1
%2 = load i8, i8* %1, align 1, !tbaa !5
store i8 %2, i8* %0, align 1, !tbaa !5
%3 = load i8, i8* @c, align 1, !tbaa !5
%inc = add nsw i8 %3, 1
store i8 %inc, i8* @c, align 1, !tbaa !5
%4 = load i8, i8* %1, align 1, !tbaa !5
store i8 %4, i8* %0, align 1, !tbaa !5
ret void
}
The AliasSet is
Alias sets for function 'test':
Alias Set Tracker: 2 alias sets for 5 pointer values.
AliasSet[0x5c85330, 5] may alias, Mod/Ref Pointers: (i8**
%arrayidx, 8), (i8** %arrayidx2, 8), (i8* %1, 1), (i8* %0, 1), (i8* @c, 1)
AliasSet[0x5c84ab0, 1] must alias, Ref forwarding to 0x5c85330
How do you think about it? If I missed something, please let me know.
Thanks,
JinGu Kang
On 13/06/2018 19:59, Friedman, Eli wrote:
> On 6/13/2018 5:58 AM, jingu at codeplay.com wrote:
>> Hello All,
>>
>> I have a question about a May-alias case. Let's look at one simple C
>> example.
>>
>> char *buf[4];
>> char c;
>> void test(int idx) {
>> char *a = buf[3 - idx];
>> char *b = buf[idx];
>> *a = *b;
>> c++;
>> *a = *b;
>> }
>>
>> We can imagine the second "*a = *b" could be removed.
>
> In general, the second store can't be removed; one or more of the
> pointers in buf could point to c. Not sure what you're trying to show
> with this example.
>
> (On a mostly unrelated note, I think you can remove the first store to
> *a in your testcase, but that doesn't really have anything to do with
> alias analysis.)
>
> -Eli
>
More information about the llvm-dev
mailing list