search for: work0

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

Did you mean: work
2008 Sep 22
2
[LLVMdev] Problems with written function pass
...tutorial. But this selfwritten pass (GA_VHDL_Pass) dependes on another function pass (GenomePass). GenomePass also dependes on two other function passes. The Pass GenomePass generates an object, which is used in my GA-VHDL_Pass. When I compile my Make file I always get this error message: /work0/llvm-2.2/Debug/bin/opt --load /work0/llvm-2.2/Debug/lib/ MParSchedule.so --load /work0/llvm-2.2/Debug/lib/LLVMblockNrs.so -- load /work0/llvm-2.2/Debug/lib/Genome.so --load /work0/llvm-2.2/Debug/ lib/GA_VHDL_Pass.so -GA_VHDL_Pass -mem2reg -verify -f -o opt.o a.out.bc opt: Pass.cpp:157: void&l...
2006 Jul 11
1
[LLVMdev] Enabling debug in LLVM-1.7 release
...de in llvm-1.7? I tried ./configure --enable-debug-runtime editing Makefile.config DEBUG_RUNTIME=1 editing Makefile.config.in DEBUG_RUNTIME=1 and ./configure --enable-debug-runtime Currently i managed to make a profile build but gdb just chokes like this when trying to debug: Starting program: /work0/tstone/llvm-1.7/Profile/bin/llc /work0/tstone/llvm/Profile/bin/llc [Thread debugging using libthread_db enabled] Error while reading shared library symbols: Cannot find new threads: generic error Thanks ST
2006 May 31
0
[LLVMdev] Adding an object to llc (analysis pass)
On Wed, 31 May 2006, Silken Tiger wrote: >> that requires a BasicBlockPass, it will fail the same was as when a >> ModulePass requires a FunctionPass. > void MParSchedule::getAnalysisUsage(AnalysisUsage &AU) const { > AU.setPreservesAll(); > } > > MParSchedule requires nothing and changes nothing. So hopefully the above code > represents this fact? Right
2006 Jun 01
2
[LLVMdev] Adding an object to llc (analysis pass)
...2)[0xb7da7fa2] /lib/tls/libc.so.6(__assert_fail+0x10f)[0xb7da02df] llc(llvm::PassManagerT<llvm::MTraits>::markPassUsed(llvm::PassInfo const*, llvm::Pass*)+0xf6)[0x8736c36] Aborted Poking around i tried to inherit the MParSchedule Pass from ImmutablePass then i get an different error: llc: /work0/tstone/llvm-1.7/include/llvm/Pass.h:185: AnalysisType& llvm::Pass::getAnalysisID(const llvm::PassInfo*) const [with AnalysisType = llvm::FindUsedTypes]: Assertion `i != AnalysisImpls.size() && "getAnalysis*() called on an analysis that was not " "'required' by...
2006 May 31
2
[LLVMdev] Adding an object to llc (analysis pass)
Hi Am Dienstag, 30. Mai 2006 19:21 schrieb Chris Lattner: > On Tue, 30 May 2006, Silken Tiger wrote: > > Everthing now compiles fine, but when running llc with invoking my own > > backend derived from the cbackend i get the following error: > > namespace llvm { > > class MParSchedule : public BasicBlockPass { > > public: > > > >