search for: pprabhu

Displaying 10 results from an estimated 10 matches for "pprabhu".

Did you mean: prabhu
2008 Apr 23
4
[LLVMdev] Error trying to build llvm-gcc
Hi, I was trying to build llvm-gcc by following the instructions as given in this webpage : http://llvm.org/docs/GCCFEBuildInstrs.html on Ubuntu 7.10. At step 5 (make ENABLE_OPTIMIZED=0), I am getting make errors: make[2]: Leaving directory `/home/pprabhu/llvm/llvm-objects/i686-pc-linux-gnu/libjava' /home/pprabhu/llvm/llvm-objects/gcc/gcj -B/home/pprabhu/llvm/llvm-objects/gcc/ -B/usr/local/i686-pc-linux-gnu/bin/ -B/usr/local/i686-pc-linux-gnu/lib/ -isystem /usr/local/i686-pc-linux-gnu/include -isystem /usr/local/i686-pc-linux-gnu/sys-include --e...
2008 Apr 23
0
[LLVMdev] Error trying to build llvm-gcc
...wrote: > Hi, > > I was trying to build llvm-gcc by following the instructions as given > in this webpage : http://llvm.org/docs/GCCFEBuildInstrs.html > on Ubuntu 7.10. At step 5 (make ENABLE_OPTIMIZED=0), I am getting make > errors: > > make[2]: Leaving directory > `/home/pprabhu/llvm/llvm-objects/i686-pc-linux-gnu/libjava' > /home/pprabhu/llvm/llvm-objects/gcc/gcj > -B/home/pprabhu/llvm/llvm-objects/gcc/ > -B/usr/local/i686-pc-linux-gnu/bin/ > -B/usr/local/i686-pc-linux-gnu/lib/ -isystem > /usr/local/i686-pc-linux-gnu/include -isystem > /usr/local/i68...
2008 Apr 23
1
[LLVMdev] Error trying to build llvm-gcc
...--enable-languages=java and it still fails with the same error: ../llvm-gcc/configure --enable-languages=java,c++,c --prefix=/usr/local make ENABLE_OPTIMIZED=0 Actually I found that when I manually add /usr/share/java/libgcj-4.2.jar to the classpath to the failed command, it seems to work: /home/pprabhu/llvm/llvm-objects/gcc/gcj -B/home/pprabhu/llvm/llvm-objects/gcc/ -B/usr/local/i686-pc-linux-gnu/bin/ -B/usr/local/i686-pc-linux-gnu/lib/ -isystem /usr/local/i686-pc-linux-gnu/include -isystem /usr/local/i686-pc-linux-gnu/sys-include --encoding=UTF-8 -Wno-deprecated -C -g *--classpath=/usr/share/jav...
2008 Jul 17
0
[LLVMdev] Pass Added as Required fails assert
...correctly as a function pass as well as on any program that has other functions prior to the main function. It only fails in this manner when main is the first (or only) function in the source file. Debugging information: Breakpoint 2, getAnalysisUsage (this=0x88072c8, AU=@0xbfa352f8) at /home/pprabhu/llvm/llvm/lib/Transforms/Instrumentation/LAMPProfiling.cpp:93 93 AU.addRequired<LdStCallCounter>(); (gdb) c Continuing. Breakpoint 2, getAnalysisUsage (this=0x88072c8, AU=@0xbfa350b4) at /home/pprabhu/llvm/llvm/lib/Transforms/Instrumentation/LAMPProfiling.cpp:93 93...
2008 Jul 17
2
[LLVMdev] Pass Added as Required fails assert
Hey all, We have been working on a pass that uses another pass to count loads and stores prior to performing its own instrumentation. The second pass adds the first as required via the usual getAnalysisUsage function. On one machine, it has been tested and proven to function correctly. On another machine, whenever the second pass is run, it consistently fails the assertion: opt:
2009 Jan 16
1
[LLVMdev] poolallocation error
Hi all, I too am getting this error for x86_64 when I am trying to use the Data Structure Analysis ...I svn upped both the llvm main branch and the poolalloc today in the morning and recompiled everything from scratch : $ opt -load /home/pprabhu/llvm/llvm-install-x86-64/lib/libpoolalloc.so -ds-aa < o.bc opt: /home/pprabhu/llvm/llvm/lib/VMCore/PassManager.cpp:1418: virtual void llvm::MPPassManager::addLowerLevelRequiredPass(llvm::Pass*, llvm::Pass*): Assertion `(P->getPotentialPassManagerType() < RequiredPass->getPotentialPassM...
2009 Jan 21
1
[LLVMdev] poolallocation error
...allocation error > > Hi all, > > I too am getting this error for x86_64 when I am trying to use the > Data Structure Analysis ...I svn upped both the llvm main branch and > the poolalloc today in the morning and recompiled everything from > scratch : > > $ opt -load /home/pprabhu/llvm/llvm-install-x86-64/lib/libpoolalloc.so > -ds-aa < o.bc > > opt: /home/pprabhu/llvm/llvm/lib/VMCore/PassManager.cpp:1418: virtual > void llvm::MPPassManager::addLowerLevelRequiredPass(llvm::Pass*, > llvm::Pass*): Assertion `(P->getPotentialPassManagerType() < > Requi...
2008 Nov 19
2
[LLVMdev] poolallocation error
Hi, I am trying to use the poolallocator. More specific, I am trying to play around with the pointer compression pass. Though, I get assertion failures for the pass dependencies. This is when it in PointerCompress::getAnalysisUsage tries to register the the BU pass as required. I.e. when AU.addRequired<CompleteBUDataStructures>(); is called. $ opt -f -load
2009 Jan 19
0
[LLVMdev] poolallocation error
...s Mailing List Subject: Re: [LLVMdev] poolallocation error Hi all, I too am getting this error for x86_64 when I am trying to use the Data Structure Analysis ...I svn upped both the llvm main branch and the poolalloc today in the morning and recompiled everything from scratch : $ opt -load /home/pprabhu/llvm/llvm-install-x86-64/lib/libpoolalloc.so -ds-aa < o.bc opt: /home/pprabhu/llvm/llvm/lib/VMCore/PassManager.cpp:1418: virtual void llvm::MPPassManager::addLowerLevelRequiredPass(llvm::Pass*, llvm::Pass*): Assertion `(P->getPotentialPassManagerType() < RequiredPass->getPotentialPassM...
2008 Oct 28
2
[LLVMdev] Debugging lli using bugpoint
...sing the linking with the libraries having dlsym/dlopen although I am passing it to lli : *$ bugpoint -run-jit $HOME/gap/gap4r4/bin/i686-pc-linux-gnu-llvm-gcc/gap.bc --tool-args -load=/usr/lib/libm.so -load=/usr/lib/libdl.so --args -l $HOME/gap/gap4r4/ -m 1024M* Read input file : '/home/pprabhu/gap/gap4r4/bin/i686-pc-linux-gnu-llvm-gcc/gap.bc' *** All input ok Initializing execution environment: Found lli: /home/pprabhu/llvm/llvm-install/bin/lli Running the code generator to test for a crash: Generating reference output from raw program: <cbe><gcc> Error running tool: /us...