search for: darcsloc

Displaying 6 results from an estimated 6 matches for "darcsloc".

Did you mean: darcslocal
2005 Sep 17
0
[LLVMdev] Re: Problems Cross Compiling for x86 and ia64
...ven up on the filetype=obj argument, so now the problem is that llc is crashing when I use -march=ia64. I'd appreciate help tracking this down. I've included the backtrace here. Thanks, -mike (gdb) run -march=ia64 loopUnroll.bc -f Starting program: /Users/mike/Documents/hpcl/LLVM/obj-llvm-darcslocal/Debug/bin/llc -march=ia64 loopUnroll.bc -f Reading symbols for shared libraries . done Program received signal EXC_BAD_ACCESS, Could not access memory. Reason: KERN_PROTECTION_FAILURE at address: 0x00000018 0x00513d50 in llvm::MachineInstr::getParent (this=0x0) at /Users/mike/Documents/hpcl/LLVM...
2005 Sep 16
2
[LLVMdev] Problems Cross Compiling for x86 and ia64
Hi, I'm having some problems cross-compiling from ppc (OS X) to x86 object files and to ia64, at all. I'd appreciate some advice as to whether or not I'm actually supposed to be able to do this, and what's wrong if so. Here's how I configured it: ../llvm-darcslocal/llvm/configure --with-llvmgccdir=$LLVMGCCDIR --prefix=$HOME/Documents/hpcl/LLVM/install The results work fine when building for ppc. Here's what I tried: LLVM/cfe-src/install/bin/gcc -o loopUnroll loopUnroll.c LLVM/obj-llvm-darcslocal/Debug/bin/llvmc -O3 -o loopUnroll-llvm loopUnroll.bc l...
2005 Aug 24
3
[LLVMdev] Problems running dejagnu tests
I'm having troubles running the test suite on OS X 10.4. Inside my objdir, 'make check' gives this: % make check llvm[0]: Running test suite PATH="/Users/mike/Documents/hpcl/LLVM/obj-llvm-darcslocal/Debug/bin:/Users/mike/Documents/hpcl/LLVM/obj-llvm-darcslocal/../llvm-darcslocal/llvm/test/Scripts:/Users/mike/Documents/hpcl/LLVM/obj-llvm-darcslocal/Debug/bin:/Users/mike/bin:/usr/local/bin:/opt/local/bin:/usr/local/teTeX/bin/powerpc-apple-darwin-current:/sw/bin:/sw/sbin:/usr/bin:/bin:/usr/sbin...
2006 Mar 22
1
[LLVMdev] problem loading analysis results from Inliner pass
On Tue, 21 Mar 2006, Michael McCracken wrote: > opt: /home/mmccrack/lens/obj-llvm-darcslocal/../llvm-darcslocal/llvm/lib/VMCore/PassManagerT.h:426: > void llvm::PassManagerT<UnitType>::markPassUsed(const llvm::PassInfo*, > llvm::Pass*) [with UnitType = llvm::Module]: Assertion > `getAnalysisOrNullUp(P) && > dynamic_cast<ImmutablePass*>(getAnalysisOrNullUp(...
2006 Mar 21
0
[LLVMdev] problem loading analysis results from Inliner pass
...a more thorough test, that isn't quite the case - since the ImmutablePass is never 'run', my code needs modification to work. However, I thought that maybe I could just make them both ModulePasses instead, but that produces the following runtime error: opt: /home/mmccrack/lens/obj-llvm-darcslocal/../llvm-darcslocal/llvm/lib/VMCore/PassManagerT.h:426: void llvm::PassManagerT<UnitType>::markPassUsed(const llvm::PassInfo*, llvm::Pass*) [with UnitType = llvm::Module]: Assertion `getAnalysisOrNullUp(P) && dynamic_cast<ImmutablePass*>(getAnalysisOrNullUp(P)) && &quot...
2006 Mar 21
3
[LLVMdev] problem loading analysis results from Inliner pass
On 3/21/06, Chris Lattner <sabre at nondot.org> wrote: > On Mon, 20 Mar 2006, Michael McCracken wrote: > > > Hi, I'm trying to access an analysis pass from the Inliner pass, and > > I'm having a lot of trouble getting that to work - I can verify that > > my pass is loaded and run (it is a dynamically loaded pass that is > > part of an analysisgroup),