1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-21 18:22:53 +01:00

MCJIT: don't finalize modules on symbol lookup (workaround)

This is extremely slow yet unnecessary with manual finalization.
In LLVM 6 this wasn't a problem.
This commit is contained in:
Nekotekina 2018-07-21 12:08:55 +03:00
parent d18817ded9
commit 6516f565ed

View File

@ -396,16 +396,12 @@ JITSymbol MCJIT::findSymbol(const std::string &Name,
uint64_t MCJIT::getGlobalValueAddress(const std::string &Name) {
std::lock_guard<sys::Mutex> locked(lock);
uint64_t Result = getSymbolAddress(Name, false);
if (Result != 0)
finalizeLoadedModules();
return Result;
}
uint64_t MCJIT::getFunctionAddress(const std::string &Name) {
std::lock_guard<sys::Mutex> locked(lock);
uint64_t Result = getSymbolAddress(Name, true);
if (Result != 0)
finalizeLoadedModules();
return Result;
}