search for: nadav256

Displaying 8 results from an estimated 8 matches for "nadav256".

2008 Mar 20
0
[LLVMdev] LLVM Python binding
...just take longer to get fully finished)? Also, have you looked at PyPy? It is no where near finished (or honestly, anywhere near usable on the front-end), but it has an LLVM back-end, might work well enough for now depending on what you are doing. On Wed, Mar 19, 2008 at 2:42 PM, Nadav Rotem <nadav256 at gmail.com> wrote: > Hello, > > > I am developing an application which is Python based and uses LLVM. I > use LLVM by generating textual bitcode files and feeding them to my > plug-in. I wish LLVM had Python binding. > > > I would love to see Python binding as one o...
2008 Mar 19
2
[LLVMdev] LLVM Python binding
Hello, I am developing an application which is Python based and uses LLVM. I use LLVM by generating textual bitcode files and feeding them to my plug-in. I wish LLVM had Python binding. I would love to see Python binding as one of the GSoC projects so someone from the community can pick it up. Cheers, Nadav
2008 Sep 30
1
[LLVMdev] LoopInfo getTripCount modification proposal
Hi, I am trying to modify a loop by reducing the loop trip count from N to N-1 where N may be constant. I looked into using getTripCount[1] but discovered that this method returns a Value* which is N itself. This prevents me from using this method for changing the loop. I suggest creating another method for returning the 'cmp' instruction. The new getTripCount implementation will use the
2008 Dec 13
0
[LLVMdev] C-to-verilog
Hello, I wanted to tell the LLVM developers list about http://www.c-to-verilog.com. I created this website to provide free on-line compilation of C into Verilog. I use LLVM as the C parser and optimizer. I have been working on this project for 2 years now. I would like to thank Chris, Vikram and the rest of the LLVM developers. I am very happy with the LLVM infrastructure, documentation, and
2008 Jan 14
0
[LLVMdev] Linking Transform/Utils
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body dir="ltr" bgcolor="#ffffff" text="#000000"> <p style="margin-bottom: 0cm; margin-top: 0pt;">Hello,</p> <p style="margin-bottom: 0cm; margin-top: 0pt;"><br> </p> <p
2008 Jun 17
0
[LLVMdev] llvm-py: Python bindings for LLVM: 0.2 released.
Hi Mahadevan, Thank you! I can't wait to test your new release of the Python LLVM bindings. This can save me so much time. The new website looks great and it seems like it has all of the information I need. Thank you, Nadav
2008 Jul 14
2
[LLVMdev] Data dependence analysis
Hi Chris, Wojciech, Data Dependence Analysis is great. I am sure it would help the loop optimizations effort that Dr. Adve mentioned last month. After we have DDA we can implement software pipelining* (modulo scheduler). Chris, would you accept a software pipelining transformation as a pass or would you want it as part of the different backends ? Nadav Rotem *
2008 Jun 18
1
[LLVMdev] Using asserts in LLVM
Hello, I am testing the new cool LLVM python bindings that Mahadevan wrote over the past few weeks. I came across a problem in the python binding which directed me to use of 'cassert'[1] in LLVM itself. When LLVM users make a mistake in using the library's constructs they usually hit an assertion. This form of defensive programming is great for detecting errors as soon as they