Hi , I'm using llvm for a project im currently working on. I got a couple of questions . Is Dependence Analysis supported and/or implemented within llvm?. Does llvm perform peephole optimizations before genrating the bytecode . Thanks, Rohith. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100301/b1bc93fb/attachment.html>
On Mar 1, 2010, at 3:53 PM, Rohith Goparaju wrote:> Hi , > > I'm using llvm for a project im currently working on. I got a couple of questions . Is Dependence Analysis supported and/or implemented within llvm?.No, it's not implemented.> Does llvm perform peephole optimizations before genrating the bytecode .The core LLVM libraries work on the bitcode itself, so I'm assuming you mean something like llvm-gcc or clang? If so, then no. -bw