search for: 3301f7a9

Displaying 2 results from an estimated 2 matches for "3301f7a9".

2011 Jan 28
0
[LLVMdev] Post-inc combining
...is a predecessor of the STORE. If the result of the add is used for some other memory reference, then it would not be a predecessor and could be folded. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110128/3301f7a9/attachment.html>
2011 Jan 28
3
[LLVMdev] Post-inc combining
Hi, I would like to transform a LLVM function containing a load and an add of the base address inside a loop to a post-incremented load. In DAGCombiner.cpp::CombineToPostIndexedLoadStore(), it says it cannot fold the add for instance if it is a predecessor/successor of the load. I find this odd, as this is exactly what I would like to handle: a simple loop with an address that is inremented in