search for: my_bitcod

Displaying 2 results from an estimated 2 matches for "my_bitcod".

Did you mean: my_bitcode
2007 Oct 29
2
[LLVMdev] User-specified JIT passes
Greetings, I have a plan to use LLVM to undertake runtime optimisation of computational chemistry programs. As part of this, I'd like to be able to invoke lli and pass it a list of passes to run, in the manner of opt. For example: > lli -load=llvm/mem_trace_pass/bin/lib/hello.so -hello ./my_bitcode.bc The current implementation of lli (updated from SVN as of three nights ago) doesn't seem to support this. Too see if it would work, I transplanted the required functionality from the opt tool, so the above invocation now works - the pass 'hello' is run by the JIT. This has led to...
2007 Oct 29
0
[LLVMdev] User-specified JIT passes
...LLVM to undertake runtime optimisation of > computational chemistry programs. Ok. > As part of this, I'd like to be able > to invoke lli and pass it a list of passes to run, in the manner of > opt. For example: > >> lli -load=llvm/mem_trace_pass/bin/lib/hello.so -hello ./my_bitcode.bc > > The current implementation of lli (updated from SVN as of three nights > ago) doesn't seem to support this. Too see if it would work, I > transplanted the required functionality from the opt tool, so the > above > invocation now works - the pass 'hello' is r...