search for: kulbhushan

Displaying 5 results from an estimated 5 matches for "kulbhushan".

2010 Oct 01
2
[LLVMdev] convert llvm ir to selection Dag
Hi, Can anyone please tell me how can I scalarize or de-vectorize the llvm vector ir. In this (http://old.nabble.com/Re%3A-Thoughts-about-the-llvm-architecture---p2961720 3.html) thread I found LegalizeTypes will do this while generating machine code from llvm ir.. How do I convert llvm ir to selection Dag. And scalarize the vector ir and again get back llvm ir. Thanks &
2010 Oct 04
0
[LLVMdev] convert llvm ir to selection Dag
...%in1, %in2 ret <4xfloat> %0 } Thanks & Regards, Pachauri ------- Original Message ------- Sender : Eli Friedman<eli.friedman at gmail.com> Date : Oct 02, 2010 00:51 (GMT+09:00) Title : Re: [LLVMdev] convert llvm ir to selection Dag On Thu, Sep 30, 2010 at 11:33 PM, Kulbhushan Pachauri <kb.pachauri at samsung.com> wrote: > Hi, > > > > Can anyone please tell me how can I scalarize or de-vectorize the llvm > vector ir. > > In this > (http://old.nabble.com/Re%3A-Thoughts-about-the-llvm-architecture---p29617203.html) > thread > > I...
2010 Oct 08
0
[LLVMdev] FW: How to debug jit code
...nabled you should just be able to run the task under > GDB and it "just work". In theory :) > > Cheers, > > James > > > -----Original Message----- > > From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev- > bounces at cs.uiuc.edu] > > On Behalf Of KULBHUSHAN PACHAURI > > Sent: 08 October 2010 08:45 > > To: llvmdev at cs.uiuc.edu > > Subject: [LLVMdev] How to debug jit code > > > > Hi, > > > > Can anyone tell me how can i debug jit code in this scenario.. > > > > Let say i have one file foo.c with tw...
2010 Oct 14
1
[LLVMdev] print machine code using llvm c++ api
Hi, I know using llc i can print machine code (-print-machineinstrs). How can i print machine code using llvm c++ api.. i looked into llc code but not able to find it.. Thanks & Regards, Pachauri
2010 Oct 08
0
[LLVMdev] How to debug jit code
Hi, Can anyone tell me how can i debug jit code in this scenario.. Let say i have one file foo.c with two function foo1 and foo2. file: foo.c int foo1(int in) { return in%64; } float foo2(float in) { return in/foo1((int)in); } i generate llvm bytecode (ir) using llvm-gcc --emit-llvm -c .. In test application: load this .bc and create module , and replace function argument with