search for: premkumar

Displaying 13 results from an estimated 13 matches for "premkumar".

2014 Aug 01
2
[LLVMdev] LLVM Basic Program Compilation
...command : llvm-g++ try.cpp -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS `llvm-config --cxxflags --ldflags --libs` -S -emit-llvm leaves me with several warnings and when i execute the resultant .s file with lli , I get the same error as before. Thanks a lot for your help Thank you, Prakash Premkumar -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140801/ec92d076/attachment.html>
2005 Oct 26
0
[fdo] LDTP 0.2.1 released
...ng high quality test automation framework. It uses the "Accessibility" libraries to poke through the application's user interface. Thanks to Sun and Accessibility team. Whats new in this release: * Testing Applications in localized languages using LDTP ('Nagappan' & 'Premkumar') The wait is over! Languages are no barriers for testing applications any more! We are proud to announce the localization support available with this release of LDTP which no other F/OSS test automation tool has ever provided till date. This version of LDTP lets you test applications in loca...
2014 Aug 01
3
[LLVMdev] LLVM Basic Program Compilation
...command : llvm-g++ try.cpp -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS `llvm-config --cxxflags --ldflags --libs` -S -emit-llvm leaves me with several warnings and when i execute the resultant .s file with lli , I get the same error as before. Thanks a lot for your help Thank you, Prakash Premkumar -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140801/bf434f6d/attachment.html>
2014 Sep 10
2
[LLVMdev] Machine Code for different architectures
...can to provide them upon request. > > /Patrik Hägglund > > -----Original Message----- > From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Matthew Gardiner > Sent: den 9 september 2014 14:20 > To: Johnny Val > Cc: Bruce Hoult; Prakash Premkumar; llvmdev > Subject: Re: [LLVMdev] Machine Code for different architectures > > Hi Johnny, > > Thanks for this - particularly the tip about cfe-dev. I'm currently > trying to coerce lldb to debug these type of architectures (our > current toolchain already outputs good dwa...
2014 Sep 09
3
[LLVMdev] Machine Code for different architectures
...> Matthew Gardiner > > > > > > On Tue, 9 Sep 2014 18:21:01 +1200 > > Bruce Hoult <bruce at hoult.org> wrote: > > > > > http://llvm.org/docs/WritingAnLLVMBackend.html > > > > > > > > > On Tue, Sep 9, 2014 at 6:09 PM, Prakash Premkumar > > > <prakash.prax at gmail.com> wrote: > > > > > > > How does LLVM generate machine code for different architectures? > > > > For example, the machine code for x86 and amd will vary. > > > > > > > > How does LLVM convert its...
2014 Sep 09
2
[LLVMdev] Machine Code for different architectures
How does LLVM generate machine code for different architectures? For example, the machine code for x86 and amd will vary. How does LLVM convert its IR to machine code for different architectures.Can you please explain the approach? Is it just write two different programs for two different architectures and pass a flag to the compiler based on which machine code you want to generate? Thanks a lot
2014 Sep 09
2
[LLVMdev] Machine Code for different architectures
...sizeof_byte==8 bits baked into to llvm? Does anyone have any views on the above? thanks Matthew Gardiner On Tue, 9 Sep 2014 18:21:01 +1200 Bruce Hoult <bruce at hoult.org> wrote: > http://llvm.org/docs/WritingAnLLVMBackend.html > > > On Tue, Sep 9, 2014 at 6:09 PM, Prakash Premkumar > <prakash.prax at gmail.com> wrote: > > > How does LLVM generate machine code for different architectures? > > For example, the machine code for x86 and amd will vary. > > > > How does LLVM convert its IR to machine code for different > > architectures.Ca...
2014 Aug 04
3
[LLVMdev] LLVM AllocaInst and StoreInst
Hi, I am trying to write a simple interpreter. I am trying to generate LLVM IR for assignment operation. The code for the generation part looks like this llvm::Value* codeGenSymTab(llvm::LLVMContext& context) { > printf("\n CodeGen SymTab \n"); > Value *num = ConstantInt::get(Type::getInt64Ty(context), aTable.value, > true); > Value *alloc = new
2014 Aug 02
2
[LLVMdev] LLVM Basic Program Compilation
...ris Cadwallader <ccadwallader at arxan.com> wrote: > What version of LLVM are you using? llvm-gcc was deprecated a long time > ago, and while it doesn’t directly address your question, I suggest trying > with clang(++). > > - Chris > > On Aug 1, 2014, at 8:32 AM, Prakash Premkumar <prakash.prax at gmail.com> > wrote: > > I am just getting started with llvm. > > Here's code I am trying to compile: > > #include <stdio.h>#include "llvm/IR/LLVMContext.h"#include "llvm/IR/Module.h"#include "llvm/IR/IRBuilder.h" &g...
2003 Feb 11
1
Unable to see linux files on windows using Samba
Hi, I installed Samba on the only linux server that we have on our network. On the Linux server, I was able to mount various shared directories from various windows machines ( we use windows 2000 ) So, seeing windows files on linux is not a problem. We also wanted to go the other way( seeing linux files on windows ) I searched on google but to no avail. I set the lmhosts file and still nothing
2014 Aug 07
2
[LLVMdev] Advantages of LLVM Optimization
Hi, I am planning to use LLVM in my compiler dev project. I would like to know what power LLVM code optimization phase provides to my code ? I had a look at http://llvm.org/docs/Passes.html which describes the optimization passes. >From a newbie standpoint can you please explain the power of LLVM optimization? Thank you, Prakash -------------- next part -------------- An HTML attachment was
2014 Sep 03
2
[LLVMdev] Convert C code with external library access to llvm
Hi, I have written a c program which accesses sqlite database. Normally I compile the program as $ clang insertselect.c -l sqlite3 To emit-llvm I use: > $ clang insertselect.c -S -emit-llvm How do I link the sqlite3 library so that llvm can generate IR with the IR being linked to the external library? Thanks for your help? Thanks Prakash -------------- next part -------------- An
2014 Aug 04
2
[LLVMdev] LLVM Basic Program Compilation
Hi Waxiado, Chris and Tim, when i compiled with : > $ clang++ -g try.cpp `llvm-config --cppflags --ldflags --libs core jit > native`-o3 -S -emit-llvm I get the following warnings > clang: warning: -lz: 'linker' input unused > clang: warning: -lpthread: 'linker' input unused > clang: warning: -lcurses: 'linker' input unused > clang: warning: -lm: