search for: f5ca41f7

Displaying 3 results from an estimated 3 matches for "f5ca41f7".

2010 Apr 13
0
[LLVMdev] whether these transformations are doable and how?
> 3.  can I modify a function to take extra formal parameters? can I update > all calls of the original function to take extra actual paramters?  The > function might be called across multiple modules.   It seems this has to be > done at both ModulePass and FunctionPass levels. > Check out DeadArgumentElimination pass. It does opposite of what you want, but you'll get an idea.
2010 Apr 15
3
[LLVMdev] whether these transformations are doable and how?
...; > > > Check out DeadArgumentElimination pass. It does opposite of what you > want, but you'll get an idea. > > - > Devang > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100414/f5ca41f7/attachment.html>
2010 Apr 09
7
[LLVMdev] whether these transformations are doable and how?
Hi folk, I'm a newbie to llvm, please first forgive my naive questions. I want to instrument llvm code to do some run-time monitoring work. After reading some of the llvm documentation, it begins clear to me that I can do the instrumentation in a transformation pass. There are several things I want to do in the transformation pass, but I'm not sure whether they are doable and how to do