Displaying 5 results from an estimated 5 matches for "konchady".
2012 Mar 20
1
[LLVMdev] Array Dependence Analysis
...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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120320/4872b467/attachment.html>
2012 Feb 11
2
[LLVMdev] Remove an instruction through Dead Code Elimination pass of llvm
...#39;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.
Adarsh Konchady
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120211/deeedb88/attachment.html>
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
...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
topic.
Thanking you,
Adarsh Konchady
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110812/d911cad3/attachment.html>
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 del...