similar to: [LLVMdev] Finding Merge nodes in CFG (ambika@cse.iitb.ac.in)

Displaying 20 results from an estimated 4000 matches similar to: "[LLVMdev] Finding Merge nodes in CFG (ambika@cse.iitb.ac.in)"

2010 Apr 12
1
[LLVMdev] [Fwd: Can someone help me with error while i make my own pass]
Tried that but still no success Chris Lattner wrote: > Try doing a clean build, then doing 'make ENABLE_PIC=1' > > -Chris > > On Apr 11, 2010, at 9:13 AM, ambika wrote: > >> >> >> *From: *ambika <ambika at cse.iitb.ac.in <mailto:ambika at cse.iitb.ac.in>> >> *Date: *April 8, 2010 9:10:25 AM PDT >> *To: *llvmdev at cs.uiuc.edu
2010 Feb 23
1
[LLVMdev] Regarding a pass in LLVM
I have done that. I have defined createMyAnaPass() in Passes.h and it is defined in MyAna.cpp and used in LinkAllPasses.h But still the error : /home/ambika/llvm/llvm-obj/tools/opt/Release/opt.o: In function `global constructors keyed to opt.cpp': opt.cpp:(.text+0x1e89): undefined reference to `llvm::createMyAnaPass()' I dont understand whats the problem. Jianzhou Zhao wrote: >
2010 Feb 23
0
[LLVMdev] Regarding a pass in LLVM
On Tue, Feb 23, 2010 at 7:17 AM, ambika <ambika at cse.iitb.ac.in> wrote: > Thanks that helped me out. > But now I am facing one more problem. It says : > > ‘llvm::ModulePass* llvm::createMyAnaPass()’ should have been declared > inside ‘llvm’ > > but I can find no place to declare it. > Where should I do it. We can do what scalar optimizations do. All scalar passes
2010 May 31
1
[LLVMdev] Error with instruction selection
Hello, I'm seeing a miscompilation from the following code: declare <4 x float>* @getPtr() define <4 x float> @func() { %rv1 = call <4 x float>* @getPtr() %rv2 = call <4 x float>* @getPtr() %rv3 = load <4 x float>* %rv1 ret <4 x float> %rv3 } The load ends up loading from the pointer returned by the 2nd function call. I traced down the problem to
2010 May 31
0
[LLVMdev] libllvm on windows
On 05/31/2010 10:02 AM, John Lask wrote: > I am looking to use llvm on windows. I know there is a pre-compiled llvm > windows distribution, but this does not seem to provide libllvm. The > software that I am looking to use makes use of libllvm (it is unix > based, but I would like to port it to windows). I really did not wish to > spend my time compiling llvm (i.e. installing
2010 Apr 11
0
[LLVMdev] [Fwd: Can someone help me with error while i make my own pass]
Try doing a clean build, then doing 'make ENABLE_PIC=1' -Chris On Apr 11, 2010, at 9:13 AM, ambika wrote: > > > From: ambika <ambika at cse.iitb.ac.in> > Date: April 8, 2010 9:10:25 AM PDT > To: llvmdev at cs.uiuc.edu > Subject: [LLVMdev] Can someone help me with error while i make my own pass > > > Hi, > > I have added LoaderInterface pass in
2010 Jun 01
0
[LLVMdev] Finding Merge nodes in CFG
ambika at cse.iitb.ac.in wrote: > Actually I have collected some pointer information in the form [ p -> a,c > ]. Now suppose at some node I have information as [p->a,c]. Now i want to > find a merge node above this node where this information is actually > geting merged. > So if I get a merge node above this, I can check in its predecessors if > their out has only [p->a]
2010 Jun 02
1
[LLVMdev] Finding Merge nodes in CFG
Actually I am interested only if the information merges at join node, otherwise not... So just getting a node with more than one predecessor might help. But can I figure out if there is a function call in between, in any of these nodes? Thanks a lot for helping out... John Criswell wrote: > ambika at cse.iitb.ac.in wrote: >> Actually I have collected some pointer information in the
2010 Apr 11
2
[LLVMdev] [Fwd: Can someone help me with error while i make my own pass]
-------------- next part -------------- An embedded message was scrubbed... From: ambika <ambika at cse.iitb.ac.in> Subject: [LLVMdev] Can someone help me with error while i make my own pass Date: Thu, 08 Apr 2010 21:40:25 +0530 Size: 4901 URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100411/33876147/attachment.eml>
2010 Jun 22
0
[LLVMdev] Why -jit-emit-debug doesn't work with gdb-7.1 ?
On Mon, Jun 21, 2010 at 5:14 PM, Yuri <yuri at rawbw.com> wrote: > I am on FreeBSD and gdb-7.1 seems to be broken. It fails to set breakpoints > in shared libs. using symbol-file causes this message: > > (gdb) symbol-file /usr/local/llvm/svn-r105825.dbg/lib/libLLVM-2.8svn.so > Load new symbol table from > "/usr/local/llvm/svn-r105825.dbg/lib/libLLVM-2.8svn.so"? (y
2010 Feb 10
0
[LLVMdev] Help regarding Flow of function calls in llvm
llvm itself is a plain C++ program, so you can use gdb on it. gdb doesn't know how to step through compiled IR, yet. On Tue, Feb 9, 2010 at 12:13 PM, ambika <ambika at cse.iitb.ac.in> wrote: > No, this is not what I am looking for. I am looking for something like > may be a debugger so that I can trace the function calls in source of llvm. > llvm-db dosent work it says
2010 Feb 23
2
[LLVMdev] Regarding a pass in LLVM
Thanks that helped me out. But now I am facing one more problem. It says : ‘llvm::ModulePass* llvm::createMyAnaPass()’ should have been declared inside ‘llvm’ but I can find no place to declare it. Where should I do it. John Criswell wrote: > ambika at cse.iitb.ac.in wrote: >> Hi, >> >> I am trying to add a pass inn LLVM, and I actually want to add it in >> source
2010 Feb 22
0
[LLVMdev] Regarding a pass in LLVM
ambika at cse.iitb.ac.in wrote: > Hi, > > I am trying to add a pass inn LLVM, and I actually want to add it in > source code, not just directly into object code. > > For that I included the lines in my file MyAna.cpp > (llvm-2.6/lib/ana/MyAna.cpp) > > > char MyAna::ID = 0; > static RegisterPass<MyAna> X("my-aa","My Analysis"); > static
2012 Feb 26
1
[LLVMdev] libllvm on windows
Török Edwin wrote: > On 05/31/2010 10:02 AM, John Lask wrote: > > I am looking to use llvm on windows. I know there is a pre-compiled > > llvm windows distribution, but this does not seem to provide libllvm. > > The software that I am looking to use makes use of libllvm (it is unix > > based, but I would like to port it to windows). I really did not wish > > to
2010 Jun 02
0
[LLVMdev] Duplicating a Basic Block
On Wed, Jun 2, 2010 at 12:24 PM, ambika <ambika at cse.iitb.ac.in> wrote: > Hi, > > I want to duplicate a set of basic blocks and finally modify the > structure of CFG. > But if I just duplicate a block then name of all the  temporaries will > be same as in original block. > > So is there a way to rename all the temporaries in a basic block or I > will have to do
2011 Aug 17
0
[LLVMdev] --enable-shared doesn't build shared library any more
Yuri, on which host? 2011/8/17 Yuri <yuri at rawbw.com>: > In r134967 it still worked, and in r137742 it now doesn't. > I used such flags: --enable-assertions --enable-shared --enable-libffi > --enable-debug-runtime --enable-debug-symbols --disable-optimized > > Before build would create directory tools/llvm-shlib under the build > tree. Now it is missing. In my
2010 Jan 03
0
[LLVMdev] [Fwd: Help Required for LLVM]
-------------- next part -------------- An embedded message was scrubbed... From: ambika <ambika at cse.iitb.ac.in> Subject: Help Required for LLVM Date: Mon, 04 Jan 2010 00:08:36 +0530 Size: 984 URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100104/50013902/attachment.eml>
2010 May 08
0
[LLVMdev] [Fwd: Error while running my pass with opt]
-------------- next part -------------- An embedded message was scrubbed... From: ambika <ambika at cse.iitb.ac.in> Subject: [LLVMdev] Error while running my pass with opt Date: Sat, 08 May 2010 00:34:28 +0530 Size: 4743 URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100508/3f516ab1/attachment.eml>
2010 May 31
2
[LLVMdev] Finding Merge nodes in CFG
Actually I have collected some pointer information in the form [ p -> a,c ]. Now suppose at some node I have information as [p->a,c]. Now i want to find a merge node above this node where this information is actually geting merged. So if I get a merge node above this, I can check in its predecessors if their out has only [p->a] or [p->c] and if not so then I will look for the next
2010 May 31
2
[LLVMdev] libllvm on windows
I am looking to use llvm on windows. I know there is a pre-compiled llvm windows distribution, but this does not seem to provide libllvm. The software that I am looking to use makes use of libllvm (it is unix based, but I would like to port it to windows). I really did not wish to spend my time compiling llvm (i.e. installing it's dependencies) from scratch. What options do I have ?