Displaying 3 results from an estimated 3 matches for "5fcadd58".
2016 Mar 28
1
Existing studies on the benefits of pointer analysis
...remembered correctly this isn't even the case before the AAResult class
came into existence), but not for aliases.
--
Best Regards,
--
Jia Chen
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160328/5fcadd58/attachment.html>
2016 Mar 28
0
Existing studies on the benefits of pointer analysis
----- Original Message -----
> From: "Jia Chen via llvm-dev" <llvm-dev at lists.llvm.org>
> To: "Chris Lattner" <clattner at apple.com>
> Cc: "llvm-dev" <llvm-dev at lists.llvm.org>
> Sent: Monday, March 28, 2016 10:10:12 AM
> Subject: Re: [llvm-dev] Existing studies on the benefits of pointer
> analysis
> On 03/28/2016 12:37
2016 Mar 28
4
Existing studies on the benefits of pointer analysis
On 03/28/2016 12:37 AM, Chris Lattner wrote:
> It changes all the time. Here’s a trivial example, assume no inlining
> and no AA other than the one in question:
>
> std::vector<int> V1 = { 1, 2, 3 };
> std::vector<int> V2 = { 4, 5, 6 };
>
> V1.pop_back(); // Mutates *this
>
> auto length = V1.size();
>
> V2.pop_back(); //