Displaying 5 results from an estimated 5 matches for "konchadi".
Did you mean:
konchady
2012 Mar 20
1
[LLVMdev] Array Dependence Analysis
Sir,
I was going through the following link about Array dependence analysis in
Old Nabble where they mentioned about some work going on array dependence
analysis. It was posted in 2008.
Array-Dependency-Analysis<http://old.nabble.com/Array-Dependence-Analysis-td16073995.html>
I need to know whether array dependence analysis has been implemented in
LLVM.
Regards,
Adarsh Konchady
2012 Feb 11
2
[LLVMdev] Remove an instruction through Dead Code Elimination pass of llvm
My pass in LLVM generates an IR like this
%5 = icmp eq i32 %4, 0
%7 = or i1 %5, %5
;. . .
Since the 'or' instruction is actually not needed(dead code), I replaced
all occurences of %7 with %5.
Now, the 'or' instruction should get deleted. How can I call Dead Code
Elimination pass of LLVM from my pass or is there any method to remove that
'or' instruction?
Thank you.
2011 Jul 22
1
[LLVMdev] LLVM IDE
Sir,
I am new to LLVM. Please suggest a good IDE for debugging LLVM.
Yours faithfully,
Adarsh Konchady
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110722/d954d107/attachment.html>
2011 Aug 12
1
[LLVMdev] link missing for type based alias analysis
Sir,
We are interested in implementing Type Based Alias Analysis(TBAA) in LLVM.
This is prescribed as one of the projects in the Open Projects list of the
LLVM website. One of the links in your page is not working. I am giving the
link below
http://www.ice.gelato.org/oct07/pres_pdf/gelato_ICE07oct_aliasing_isaev_intel.pdf
Kindly send me any additional resources and suggestions you have on this
2012 Feb 11
0
[LLVMdev] Remove an instruction through Dead Code Elimination pass of llvm
Hi Adarsh,
On 11/02/12 09:47, Adarsh Konchady wrote:
> My pass in LLVM generates an IR like this
> %5 = icmp eq i32 %4, 0
> %7 = or i1 %5, %5
> ;. . .
> Since the 'or' instruction is actually not needed(dead code), I replaced all
> occurences of %7 with %5.
> Now, the 'or' instruction should get deleted. How can I call Dead Code
> Elimination pass