Displaying 2 results from an estimated 2 matches for "c6670c90".
2011 Jun 22
0
[LLVMdev] Memory dependence analysis
...___
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110622/c6670c90/attachment.html>
2011 Jun 22
2
[LLVMdev] Memory dependence analysis
Hello,
I'm looking for a way to identify dependencies of function-pairs (memory-dependency, control-dependency...) in order to parallelize them.
For aliasing problems I use the DataStructureAnalysis. To solve simple memory- and control-dependency problems I want to use
memdep. But unfortunately I even fail with following simple C++ example...
int a( int n) { return n; }
int b( int n) {