Displaying 2 results from an estimated 2 matches for "5efdfd37".
2013 Mar 04
0
[LLVMdev] Unexpected DSAnalysis behavior
...e call graph and
collect all the DSNodes within each one. You may also have to match up
the caller/callee DSNodes for each function call.
-- John T.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130304/5efdfd37/attachment.html>
2013 Mar 04
2
[LLVMdev] Unexpected DSAnalysis behavior
Hi,
during the hunt for a bug causing strange behavior of our automatic parallelization framework,
I found some, at least for me, unexpected behavior of the DataStructureAnalysis in Poolalloc.
Consider the following simplified program:
====================
int ARR[4] = {1, 2, 3, 4};
int a(int pos) {
return ARR[pos];
}
int sum(int op_a, int op_b) {
return a(op_a) + a(op_b);
}
int