search for: optimizt

Displaying 4 results from an estimated 4 matches for "optimizt".

Did you mean: optimize
2004 May 14
2
[LLVMdev] Can I disable the optimizaiton for llvmgcc?
...ot use the code as example to see how some of code optimization methods work. However, after compiling file using llvm test.c -o test, bytecode file test.bc is optimized ( llvm-dis< test.bc). Does it mean there is default optimaztion option when running llvmgcc and can I disable the option for optimiztion? By the way, I can get the almost exactly matched assemble code by using original gcc -c test.c. Thanks, Qiuyu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20040514/a585cbd7/attachment.html>
2008 Sep 16
3
[LLVMdev] Specifying Additional Compilation Passes to lli
...d you correctly, the design you have in mind is > > to: create a PassManager, pass it to the JIT on construction, and > > modify runJITOnFunction to run the second PassManager on the > > Function being jit'd before running the codegen PassManager. > Thanks. > > Optimiztions should be done before JIT, right? Why not run the > optimizations (using the second PM) on the function that's scheduled > > for JIT before? Perhaps I am not understanding what you are trying to > > do. > > Evan Evan, My goal is to support dynamic optimizati...
2008 Sep 16
1
[LLVMdev] Specifying Additional Compilation Passes to lli
Evan, So, if I understand you correctly, the design you have in mind is to: create a PassManager, pass it to the JIT on construction, and modify runJITOnFunction to run the second PassManager on the Function being jit'd before running the codegen PassManager. Thanks. Tom ----- Original Message ----- From: "Evan Cheng" <evan.cheng at apple.com> To: "LLVM Developers Mailing
2008 Sep 17
0
[LLVMdev] Specifying Additional Compilation Passes to lli
...y, the design you have in mind is >>> to: create a PassManager, pass it to the JIT on construction, and >>> modify runJITOnFunction to run the second PassManager on the >>> Function being jit'd before running the codegen PassManager. >> Thanks. >> >> Optimiztions should be done before JIT, right? Why not run the >> optimizations (using the second PM) on the function that's scheduled >> >> for JIT before? Perhaps I am not understanding what you are trying to >> >> do. >> >> Evan > > Evan, > My goa...