search for: 5c061b96

Displaying 2 results from an estimated 2 matches for "5c061b96".

2016 Mar 28
0
Existing studies on the benefits of pointer analysis
...t want to use those API's. As that changes, i expect the AA API will be redesigned and reworked to accomodate the needs of those things. - Jia > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160328/5c061b96/attachment.html>
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(); //