Chris Jake
2014-Jan-22 17:16 UTC
[LLVMdev] source-to-source transformations using LLVM/ Clang
Hello, I need some help in understanding few things related to llvm/clang. What I want to do is to take a C source code and then get some information from source code like the number of branches, load/store count etc. and then instrument the source code with this obtained information. At the moment, I can think of 2 approaches: (1) Clang: Generate AST from the source code, obtain these counts (if it is possible) from AST traversal and do then do transformations on AST to generate instrumented source code so that I can use gcc later. (2) LLVM: Emit bitcode file from clang. Write an analysis pass to count these values and then using Transformation pass, add these values to thr IR and then, if possible, generate instrumented source code. Can someone kindly suggest which option is better as both of these approaches deal at different levels. Any pointers to some sample codes would be really helpful to me. Thanks, Kris -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140122/50fffd1d/attachment.html>
Reid Kleckner
2014-Jan-22 17:42 UTC
[LLVMdev] [cfe-dev] source-to-source transformations using LLVM/ Clang
Do you need to output instrumented C source code? Do you want to run before or after optimizations? Do you want to see register spills or not? If you want to instrument control flow and loads and stores, then you probably want to instrument LLVM IR. There are examples of this kind of thing in llvm/lib/Transforms/Instrumentation, like the sanitizers. However, LLVM no longer has a C backend, so you won't be able to get C source code back out without some effort. On Wed, Jan 22, 2014 at 9:16 AM, Chris Jake <kris.mani.123 at gmail.com> wrote:> Hello, > > I need some help in understanding few things related to llvm/clang. > > What I want to do is to take a C source code and then get some information > from source code like the number of branches, load/store count etc. and > then instrument the source code with this obtained information. At the > moment, I can think of 2 approaches: > > (1) Clang: Generate AST from the source code, obtain these counts (if it > is possible) from AST traversal and do then do transformations on AST to > generate instrumented source code so that I can use gcc later. > > (2) LLVM: Emit bitcode file from clang. Write an analysis pass to count > these values and then using Transformation pass, add these values to thr IR > and then, if possible, generate instrumented source code. > > Can someone kindly suggest which option is better as both of these > approaches deal at different levels. Any pointers to some sample codes > would be really helpful to me. > > Thanks, > Kris > > _______________________________________________ > cfe-dev mailing list > cfe-dev at cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev > >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140122/86bc8488/attachment.html>
Chris Jake
2014-Jan-22 18:07 UTC
[LLVMdev] [cfe-dev] source-to-source transformations using LLVM/ Clang
Thanks for the reply Reid. I would like to generate an instrumented C source code so that I can execute using other compilers like gcc or any proprietary compilers later and want to run the optimizations later. I'm not sure on register spills though. So do you suggest to go with Clang? Is there a way to count loads, stores from clang AST. I was going through different node types of AST class but was not able to find such info. For counting branches, I can rely on checking a stmt (if etc.,) Thanks, Kris On 22 January 2014 17:42, Reid Kleckner <rnk at google.com> wrote:> Do you need to output instrumented C source code? Do you want to run > before or after optimizations? Do you want to see register spills or not? > > If you want to instrument control flow and loads and stores, then you > probably want to instrument LLVM IR. There are examples of this kind of > thing in llvm/lib/Transforms/Instrumentation, like the sanitizers. > However, LLVM no longer has a C backend, so you won't be able to get C > source code back out without some effort. > > > On Wed, Jan 22, 2014 at 9:16 AM, Chris Jake <kris.mani.123 at gmail.com>wrote: > >> Hello, >> >> I need some help in understanding few things related to llvm/clang. >> >> What I want to do is to take a C source code and then get some >> information from source code like the number of branches, load/store count >> etc. and then instrument the source code with this obtained information. At >> the moment, I can think of 2 approaches: >> >> (1) Clang: Generate AST from the source code, obtain these counts (if it >> is possible) from AST traversal and do then do transformations on AST to >> generate instrumented source code so that I can use gcc later. >> >> (2) LLVM: Emit bitcode file from clang. Write an analysis pass to count >> these values and then using Transformation pass, add these values to thr IR >> and then, if possible, generate instrumented source code. >> >> Can someone kindly suggest which option is better as both of these >> approaches deal at different levels. Any pointers to some sample codes >> would be really helpful to me. >> >> Thanks, >> Kris >> >> _______________________________________________ >> cfe-dev mailing list >> cfe-dev at cs.uiuc.edu >> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev >> >> >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140122/19934a55/attachment.html>
Apparently Analagous Threads
- [LLVMdev] RFC: Binary format for instrumentation based profiling data
- 6.1 responsiveness under heavy (cpu?) load + thread monitoring
- [LLVMdev] whether these transformations are doable and how?
- [LLVMdev] buildbot failure in LLVM on sanitizer-x86_64-linux (-Wframe-larger-than)
- [LLVMdev] Re moving the instrumented instructions at runtime