search for: currentf

Displaying 3 results from an estimated 3 matches for "currentf".

Did you mean: current
2012 Feb 20
1
[LLVMdev] ARM opcode format
...liminate Common SubExpressions. OurFPM.add(createGVNPass()); // Simplify the control flow graph (deleting unreachable blocks, etc). OurFPM.add(createCFGSimplificationPass()); // we run optimizations and return the pointer to the function OurFPM.doInitialization(); Function* currentF = mod.getFunction("execute"); OurFPM.run(*currentF); TheExecutionEngine->getPointerToFunction(currentF); return 0; } Thanks again for your help, On Mon, Feb 20, 2012 at 11:06 PM, Anton Korobeynikov < anton at korobeynikov.info> wrote: > Guillermo, > > >...
2012 Feb 20
0
[LLVMdev] ARM opcode format
Guillermo, > I'm sorry I forgot to mention I am compiling the bitcode using the JIT. The > actual error, I get when I'm trying to get the function to the pointer. I'm > using a custom front end that translates Android's Dalvik bytecode into LLVM > bitcode based on Android ICS's modified LLVM version. ARM JIT is broken in many ways. So, what you're seeing is
2012 Feb 20
3
[LLVMdev] ARM opcode format
Hi, I'm sorry I forgot to mention I am compiling the bitcode using the JIT. The actual error, I get when I'm trying to get the function to the pointer. I'm using a custom front end that translates Android's Dalvik bytecode into LLVM bitcode based on Android ICS's modified LLVM version. Thanks, On Mon, Feb 20, 2012 at 7:55 PM, James Molloy <James.Molloy at arm.com>