search for: my_own_pass

Displaying 1 result from an estimated 1 matches for "my_own_pass".

2011 Feb 18
1
[LLVMdev] Enforcing execution order of passes
I'd like to run my own passes (implemented as .so) via the opt tool on a linked bitcode. >opt -load=my_own_pass.so -do_my_passes ... test.bc > test.output.bc However, my passes require other LLVM's passes before and after. For example, the ordering of passes that I want: (1) A couple of LLVM's passes ==> (2) my_loop_pass ==> (3) my_module_pass ==> (4) Other LLVM's standard O3 optim...