Displaying 2 results from an estimated 2 matches for "bitparam".
Did you mean:
bitparams
2012 Nov 09
3
[LLVMdev] inttoptr and basicaa
...am observing some incorrect behavior in basicaa, wherein two pointers that
basicaa should determine to be MustAlias are ending up NoAlias - the other
extreme :(
I am blaming this on basicaa not handling inttoptr. Here is the relevant IR
snippet.
--------------------
%sunkaddr36 = ptrtoint %struct.BitParams* %bs to i32
%sunkaddr37 = add i32 %sunkaddr36, 16
%sunkaddr38 = inttoptr i32 %sunkaddr37 to i32*
%sunkaddr39 = ptrtoint %struct.BitParams* %bs to i32
%sunkaddr40 = add i32 %sunkaddr39, 16
%sunkaddr41 = inttoptr i32 %sunkaddr40 to i64*
---------------------
A query to basicaa: alias(%s...
2012 Nov 09
0
[LLVMdev] inttoptr and basicaa
...havior in basicaa, wherein two pointers that
> basicaa should determine to be MustAlias are ending up NoAlias - the other
> extreme :(
> I am blaming this on basicaa not handling inttoptr. Here is the relevant IR
> snippet.
> --------------------
> %sunkaddr36 = ptrtoint %struct.BitParams* %bs to i32
> %sunkaddr37 = add i32 %sunkaddr36, 16
> %sunkaddr38 = inttoptr i32 %sunkaddr37 to i32*
>
>
>
> %sunkaddr39 = ptrtoint %struct.BitParams* %bs to i32
> %sunkaddr40 = add i32 %sunkaddr39, 16
> %sunkaddr41 = inttoptr i32 %sunkaddr40 to i64*
> ---------...