search for: shanmukha

Displaying 9 results from an estimated 9 matches for "shanmukha".

2012 Apr 27
2
[LLVMdev] Problem in accessing Loops in other Functions Problem in accessing Loops in other Functions problem in accessing the Loops in other functions
...) function ) In this function I want to access all the Loops in all the functions in the current Module the LoopInfo Pass only gives the Loops in the function where the current Loop resides :-( Is there any other Pass by which I can access the Loops in others functions as well ? ...... Regards, Shanmukha Rao -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120428/14b8700b/attachment.html>
2012 Mar 15
2
[LLVMdev] Problem with LoopDependenceAnalysis
...x[i+1] + i*2 ; but in llvm i couldn't able to find there is no dependency from s2 to s1. LoopDependenceAnalyis always gives there is a dependency from every load instructions to every store instructions. is there any other alternative to LoopDependencyAnalysis ? thank you ...... Regards, Shanmukha Rao Compilers lab, Indian Institute of Science, Bangalore. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120315/94716630/attachment.html>
2012 Apr 27
0
[LLVMdev] Problem in accessing Loops in other Functions Problem in accessing Loops in other Functions problem in accessing the Loops in other functions
...functions as well ? I assume you're using a FunctionPass to do your analysis or optimization. Try writing your pass as a ModulePass instead; a FunctionPass should only operate on code within the function that it is analyzing/modifying. -- John T. > > > ...... > Regards, > Shanmukha Rao > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev -------------- next part -------------- An HTML attachment was scrubbed... URL: &l...
2012 Mar 15
2
[LLVMdev] Problem with LoopDependenceAnalysis
Shanmukha Rao wrote: > I am using LLVM for implementing LoopFission pass. > I am using LoopPass. > I know that for checking circular dependency in loop I have to use LoopDependenceAnalysis > > This is what i want to do. >         for(int i = 0; i< n ; i++){ > s1 : a[i]...
2012 Mar 15
0
[LLVMdev] Problem with LoopDependenceAnalysis
On Thu, 15 Mar 2012 09:57:00 -0700 Preston Briggs <preston.briggs at gmail.com> wrote: > Shanmukha Rao wrote: > > I am using LLVM for implementing LoopFission pass. > > I am using LoopPass. > > I know that for checking circular dependency in loop I have to use > > LoopDependenceAnalysis > > > > This is what i want to do. > >         for(int i = 0; i<...
2012 Jun 12
0
[LLVMdev] Analysing annotations in llvm
.... now gcc will ignore it bt llvm should process it. is there any way to do it? or else wat user can do is to write this info in a separate file with line no of the loop and max size. and how the llvm pass can detect the line of an instruction and match it with source file line no ? -- Regards, Shanmukha Rao -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120612/050ba2b6/attachment.html>
2009 Sep 14
1
R: error while loading shared libraries: libRblas.so:
Hi,       I am trying to debug R on fedora9.0. When I use gdb to debug R-1.9.2, I am getting the error "R: error while loading shared libraries: libRblas.so: cannot open shared object file: No such file or directory" "Program exited with code 0177. Missing separate debuginfos, use: debuginfo-install glibc.i686" I have libRblas.so shared library in two paths, 1)
2009 Oct 09
1
Any reference to Tukeyline algorithm?
Hi, I am using "line" function to plot the line. And I would like to understand "Tukeyline" algorithm. Since, the line function is calling the Tukeyline algorithm(which is compiled code) using foreign function interface, I am not able to look into the source code of this algorithm. Can somebody help me out, so that I can refer the same. Thanks in advance!!! Thanks,
2012 Mar 20
1
[LLVMdev] Problem with LoopDependenceAnalysis
Shanmuhka wrote: > I looked at the sanjoys patch for SIV Test. And i figured out that this is exactly what i need. > as the comments said, check if subscript A can possibly have the same value as B in analyseSIV(A,B) > but i didn't get How to use this information ? > > lets just say in the above program > When i use depends function it shows the dependency from load of x to