Displaying 2 results from an estimated 2 matches for "compileast".
Did you mean:
compile_et
2011 Mar 22
2
[LLVMdev] LLVM optimization passes crash when running on second thread
...true, true, false );
}
passManager->run( *module );
- If I *don't* comment out the optimization passes (inside the if statement above) LLVM crashes with what appears to be a stack overflow; I've attached the stack trace below.
- The code above is in the Fabric::DG::Code::compileAST() function shown in the stack trace below; its child in the stack is the passManager->run() call.
- I have added a global mutex lock around all my accesses to LLVM, just to try to debug the problem, and it doesn't make any difference.
- Both compilations are using the same LLVMContext. It i...
2011 Mar 22
0
[LLVMdev] LLVM optimization passes crash when running on second thread
...);
> }
> passManager->run( *module );
> - If I *don't* comment out the optimization passes (inside the if statement above) LLVM crashes with what appears to be a stack overflow; I've attached the stack trace below.
> - The code above is in the Fabric::DG::Code::compileAST() function shown in the stack trace below; its child in the stack is the passManager->run() call.
> - I have added a global mutex lock around all my accesses to LLVM, just to try to debug the problem, and it doesn't make any difference.
> - Both compilations are using the same LLVMCont...