search for: ponnala

Displaying 17 results from an estimated 17 matches for "ponnala".

2010 Apr 18
3
[LLVMdev] .so file creation for new passes
...08). I cant use cmake here as this hello pass has links to the llvm's solution file, I mean It uses some of the header files from llvm's solution file. Do I need to modify the program or the CMakeLists.txt file.? And where can I find this loadable Hello.so file ? Thanks a lot. -- Kalyan Ponnala phone: 8163772059 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100418/9403ce04/attachment.html>
2010 Apr 18
0
[LLVMdev] .so file creation for new passes
...Hello world pass sources are in llvm/lib/Transform/Hello/* If you compile llvm, the Hello library will be compiled too. It's not installed but it's in build_directory/Debug/lib/LLVMHello.so (or in build_directory/Release/lib/LLVMHello.so) Olivier. On Sun, Apr 18, 2010 at 7:35 AM, kalyan ponnala <ponnala.kalyan at gmail.com>wrote: > Hello, > > I was going through the LLVM docs "writing an LLVM Pass". Can someone tell > me how to create the Hello.so file as it is said in the document. It talks > about compiling the Hello pass using gmake. I am a Windows user...
2010 Mar 16
1
[LLVMdev] Help with understanding LLVM
...r the front end is done with the code. Could you tell me how does llvm comes into picture as soon as clang part of the interface deals with the source code. Thanks. On Tue, Mar 16, 2010 at 12:55 AM, Bill Wendling <wendling at apple.com> wrote: > > On Mar 15, 2010, at 8:15 PM, kalyan ponnala wrote: > > > Hi, > > > > I am trying to understand LLVM. Can an expert tell me how to compare the > kaleidoscope implementation with the LLVM's compiler implementation. I mean > can anyone tell me about the lexer, parser, codegen related .cpp and .h > files inside...
2010 Mar 29
1
[LLVMdev] llvm2cpp executable
...2cpp program along with the llvm IR of the C code. I could not find any executable in the /bin directory for llvm2cpp. I was wondering if there is either source or executable of the llvm2cpp program that is used by llvm demo available for either llvm-2.7 Pre-release or llvm-2.6 Thanks. -- Kalyan Ponnala phone: 8163772059 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100329/72245c7d/attachment.html>
2010 Mar 16
2
[LLVMdev] Help with understanding LLVM
...the LLVM's compiler implementation. I mean can anyone tell me about the lexer, parser, codegen related .cpp and .h files inside the LLVM solution project. I would like to understand the LLVM's compiler in the same way that the kaleidoscope compiler is explained. Thanks a lot. -- Kalyan Ponnala phone: 8163772059 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100315/a1d0737e/attachment.html>
2010 Apr 17
0
[LLVMdev] understanding the opt tool
...uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > -- Kalyan Ponnala phone: 8163772059 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100417/b0bc8284/attachment.html>
2010 Apr 18
0
[LLVMdev] .so file creation for new passes
...llo.so) > Loadable passes are not supported on windows due to lack of OS dynamic > linking support (and I doubt they will be supported ever). > > -- > With best regards, Anton Korobeynikov > Faculty of Mathematics and Mechanics, Saint Petersburg State University > -- Kalyan Ponnala phone: 8163772059 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100418/7689f8ec/attachment.html>
2010 Apr 17
3
[LLVMdev] understanding the opt tool
Hello Kalyan, There is one more thing you should know: Clang has maximum optimization turned on by default. You need to specify -O0 to turn it off if you want to see what opt does without clang running all of the optimizations first. --Sam ----- Original Message ---- > From: Duncan Sands <baldrick at free.fr> > To: llvmdev at cs.uiuc.edu > Sent: Sat, April 17, 2010 2:00:00 AM
2010 Apr 18
2
[LLVMdev] .so file creation for new passes
> If you compile llvm, the Hello library will be compiled too. It's not > installed but it's in build_directory/Debug/lib/LLVMHello.so (or in > build_directory/Release/lib/LLVMHello.so) Loadable passes are not supported on windows due to lack of OS dynamic linking support (and I doubt they will be supported ever). -- With best regards, Anton Korobeynikov Faculty of Mathematics
2010 Apr 24
2
[LLVMdev] Proposal for Adding MetaData to a BasicBlock
...of SetMetadata in the Instruction class, is this where Metadata is "attached" to an Instruction? Any detailed comments / suggestions as to which client LLVM IR classes I need to dig into as well as what all the changes I will have to make would be greatly appreciated. Thanks, -- Kalyan Ponnala phone: 8163772059 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100424/f0486816/attachment.html>
2010 Feb 14
2
[LLVMdev] -march=c option not working
.... I saw in the documentation that "llc -march=c hello.bc" would convert the bitcode and generate a c code file. but it says llc:error: invalid target "c" could you tell me why is it not working. and what is the way to convert the bitcode file into a c file.? Thanks -- Kalyan Ponnala phone: 8163772059 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100214/7c107abc/attachment.html>
2010 Feb 19
1
[LLVMdev] Cbackend is C99?
Hi, I would like to know if the command llc -march=c hello.bc generates a c99 file or not. Is the cbackend target meant to be c99 or normal C. -- Kalyan Ponnala phone: 8163772059 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100219/e67c7a73/attachment.html>
2010 Mar 16
0
[LLVMdev] Help with understanding LLVM
On Mar 15, 2010, at 8:15 PM, kalyan ponnala wrote: > Hi, > > I am trying to understand LLVM. Can an expert tell me how to compare the kaleidoscope implementation with the LLVM's compiler implementation. I mean can anyone tell me about the lexer, parser, codegen related .cpp and .h files inside the LLVM solution project. I woul...
2010 Mar 21
1
[LLVMdev] Help with Metadata
Hi, Could someone tell me how does a part of the source code get translated into metadata in the LLVM IR. and what kind of code gets parsed into metadata. Thanks -- Kalyan Ponnala phone: 8163772059 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100320/cd883472/attachment.html>
2010 Feb 15
0
[LLVMdev] -march=c option not working
On Sun, Feb 14, 2010 at 3:52 PM, kalyan ponnala <ponnala.kalyan at gmail.com>wrote: > I used cmake gui to build the clang/llvm solution file. > llc hello.bc -march=x86 -o hello.s > this above command works. But the c backend thing does not work in place of > x86. > The targets that the llc -version gave me are > x86 -32b...
2010 Mar 08
0
[LLVMdev] Experimental Support for Embedded metadata???
...the LLVM 2.6 Release Notes, it states: "LLVM now has experimental support for embedded metadata in LLVM IR, though the implementation is not guaranteed to be final and the .bc file format may change in future releases." Can someone please comment on it's status? Thanks, -- Kalyan Ponnala phone: 8163772059 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100308/60a89906/attachment.html>
2010 Apr 16
2
[LLVMdev] understanding the opt tool
...imizations on the source code. The commands are in this way: clang -c -emit-llvm filename.c -o filename.bc opt -strip-dead-prototypes -f <filename.bc> filename2.bc I am working on the visual studio solution file and on windows 7 (in case you want to know the platform) Thanks. -- Kalyan Ponnala phone: 8163772059 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100416/519a8b41/attachment.html>