diff options
author | David Majnemer <david.majnemer@gmail.com> | 2013-10-13 10:34:21 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2013-10-13 10:34:21 +0000 |
commit | a5732844a643ac94bad0e2c08fe259018145a755 (patch) | |
tree | 261de9232663e90b7045677f2e9e7ae8ad25aa6e /llvm/lib/Support | |
parent | ae726a93e31e2c16ce78cba296469d0c288f21d5 (diff) | |
download | bcm5719-llvm-a5732844a643ac94bad0e2c08fe259018145a755.tar.gz bcm5719-llvm-a5732844a643ac94bad0e2c08fe259018145a755.zip |
Windows: Use GetModuleHandleEx instead of LoadLibrary
We were using an anti-pattern of:
- LoadLibrary
- GetProcAddress
- FreeLibrary
This is problematic because of several reasons:
- We are holding on to pointers into a library we just unloaded.
- Calling LoadLibrary results in an increase in the reference count of
the library in question and any libraries that it depends on and
so-on and so-forth. This is none too quick.
Instead, use GetModuleHandleEx with GET_MODULE_HANDLE_EX_FLAG_PIN. This
is done because because we didn't bring the reference for the library
into existence and therefor shouldn't count on it being around later.
llvm-svn: 192550
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/Windows/RWMutex.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/Windows/RWMutex.inc b/llvm/lib/Support/Windows/RWMutex.inc index e4c2308f349..7d158288672 100644 --- a/llvm/lib/Support/Windows/RWMutex.inc +++ b/llvm/lib/Support/Windows/RWMutex.inc @@ -48,7 +48,8 @@ static bool loadSRW() { if (!sChecked) { sChecked = true; - HMODULE hLib = ::LoadLibraryW(L"Kernel32.dll"); + HMODULE hLib; + ::GetModuleHandleExW(GET_MODULE_HANDLE_EX_FLAG_PIN, L"Kernel32.dll", &hLib); if (hLib) { fpInitializeSRWLock = (VOID (WINAPI *)(PSRWLOCK))::GetProcAddress(hLib, @@ -65,7 +66,6 @@ static bool loadSRW() { fpReleaseSRWLockShared = (VOID (WINAPI *)(PSRWLOCK))::GetProcAddress(hLib, "ReleaseSRWLockShared"); - ::FreeLibrary(hLib); if (fpInitializeSRWLock != NULL) { sHasSRW = true; |