Displaying 1 result from an estimated 1 matches for "comp_ctx".
2020 Jun 16
2
Need help on JIT compilation speed
...to compile
this single big IR Module with MCJIT in parallel? Is OrcV2 JIT faster than
MCJIT? Can the 'concurrent compilation' feature mentioned in Orcv2 webpage
help on this? Thanks in advance for any advice.
This is how I organized the optimization pass:
LLVMAddBasicAliasAnalysisPass(comp_ctx->pass_mgr);
LLVMAddPromoteMemoryToRegisterPass(comp_ctx->pass_mgr);
LLVMAddInstructionCombiningPass(comp_ctx->pass_mgr);
LLVMAddJumpThreadingPass(comp_ctx->pass_mgr);
LLVMAddConstantPropagationPass(comp_ctx->pass_mgr);
LLVMAddReassociatePass(comp_ctx->pass_mgr)...