Hi all,<br>
Iīve been working on a LLVM transformation pass which performs the remotion of some Java redundant instructions.<br>So now itīs finished Iīd like to run the optimized programs generated by mypass.<br>But Iīve got some problems to do this, because I didnīt find a way to generate executable code from my output's pass.<br>

I'm using VMKit to compile java programs, and then I input the generated .bc code into my llvm pass.<br><br>Here are what I'm doing:<br>javac Example.java<br>vmjc Example<br>opt -load MyPass.so -myLLVMpass Example.bc -o output.bc<br>

<br>Please, does anybody know how to generate executable code from an .bc file? Can VMKit do it?<br><br>Thanks you all!<br>Best regards,<br>Alysson