Displaying 2 results from an estimated 2 matches for "a9092249".
2013 Jan 22
0
[LLVMdev] llvm alloca dependencies
...than LLVM's current
alias analysis algorithms. I would think that DSA can do a better job
for pointers stored into memory locations.
-- John T.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130122/a9092249/attachment.html>
2013 Jan 21
2
[LLVMdev] llvm alloca dependencies
Hello everyone !
I am trying to determine for certain Load instructions from my pass their
corresponding Alloca instructions (that can be in other previous blocks).
The chain can be something like : `TargetLoad(var) -> other stores/loads
that use var (or dependencies on var) -> alloca(var).` , linked on several
basic blocks. Do you know how can I do it?
I tried to use the methods from