mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
016f651f8d
Fix for LLI failure on Windows\X86: http://llvm.org/PR5053 LLI.exe crashes on Windows\X86 when single precession floating point intrinsics like the following are used: acos, asin, atan, atan2, ceil, copysign, cos, cosh, exp, floor, fmin, fmax, fmod, log, pow, sin, sinh, sqrt, tan, tanh The above intrinsics are defined as inline-expansions in math.h, and are not exported by msvcr120.dll (Win32 API GetProcAddress returns null). For an FREM instruction, the JIT compiler generates a call to a stub for the fmodf() intrinsic, and adds a relocation to fixup at load time. The loader searches the libraries for the function, but fails because the symbol is not exported. So, the call target remains NULL and the execution crashes. Since the math functions are loaded at JIT/runtime, the JIT can patch CALL instruction directly instead of the searching the libraries' exported symbols. However, this fix caused build failures due to unresolved symbols like _fmodf at link time. Therefore, the current fix defines helper functions in the Runtime link/load library to perform the above operations. The address of these helper functions are used to patch up the CALL instruction at load time. Reviewers: lhames, rnk Reviewed By: rnk Differential Revision: http://reviews.llvm.org/D5387 Patch by Swaroop Sridhar! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221947 91177308-0d34-0410-b5e6-96231b3b80d8
173 lines
5.4 KiB
C++
173 lines
5.4 KiB
C++
//===- Win32/DynamicLibrary.cpp - Win32 DL Implementation -------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file provides the Win32 specific implementation of DynamicLibrary.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "WindowsSupport.h"
|
|
|
|
#ifdef __MINGW32__
|
|
#include <imagehlp.h>
|
|
#else
|
|
#include <dbghelp.h>
|
|
#endif
|
|
|
|
#ifdef _MSC_VER
|
|
#include <ntverp.h>
|
|
#endif
|
|
|
|
#ifdef __MINGW32__
|
|
#if (HAVE_LIBIMAGEHLP != 1)
|
|
#error "libimagehlp.a should be present"
|
|
#endif
|
|
#else
|
|
#pragma comment(lib, "dbghelp.lib")
|
|
#endif
|
|
|
|
namespace llvm {
|
|
using namespace sys;
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
//=== WARNING: Implementation here must contain only Win32 specific code
|
|
//=== and must not be UNIX code.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
static DenseSet<HMODULE> *OpenedHandles;
|
|
|
|
static BOOL CALLBACK
|
|
ELM_Callback(WIN32_ELMCB_PCSTR ModuleName, ULONG_PTR ModuleBase,
|
|
ULONG ModuleSize, PVOID UserContext) {
|
|
OpenedHandles->insert((HMODULE)ModuleBase);
|
|
return TRUE;
|
|
}
|
|
|
|
DynamicLibrary DynamicLibrary::getPermanentLibrary(const char *filename,
|
|
std::string *errMsg) {
|
|
SmartScopedLock<true> lock(*SymbolsMutex);
|
|
|
|
if (!filename) {
|
|
// When no file is specified, enumerate all DLLs and EXEs in the process.
|
|
if (OpenedHandles == 0)
|
|
OpenedHandles = new DenseSet<HMODULE>();
|
|
|
|
EnumerateLoadedModules(GetCurrentProcess(), ELM_Callback, 0);
|
|
// Dummy library that represents "search all handles".
|
|
// This is mostly to ensure that the return value still shows up as "valid".
|
|
return DynamicLibrary(&OpenedHandles);
|
|
}
|
|
|
|
SmallVector<wchar_t, MAX_PATH> filenameUnicode;
|
|
if (std::error_code ec = windows::UTF8ToUTF16(filename, filenameUnicode)) {
|
|
SetLastError(ec.value());
|
|
MakeErrMsg(errMsg, std::string(filename) + ": Can't convert to UTF-16: ");
|
|
return DynamicLibrary();
|
|
}
|
|
|
|
HMODULE a_handle = LoadLibraryW(filenameUnicode.data());
|
|
|
|
if (a_handle == 0) {
|
|
MakeErrMsg(errMsg, std::string(filename) + ": Can't open : ");
|
|
return DynamicLibrary();
|
|
}
|
|
|
|
if (OpenedHandles == 0)
|
|
OpenedHandles = new DenseSet<HMODULE>();
|
|
|
|
// If we've already loaded this library, FreeLibrary() the handle in order to
|
|
// keep the internal refcount at +1.
|
|
if (!OpenedHandles->insert(a_handle).second)
|
|
FreeLibrary(a_handle);
|
|
|
|
return DynamicLibrary(a_handle);
|
|
}
|
|
|
|
// Stack probing routines are in the support library (e.g. libgcc), but we don't
|
|
// have dynamic linking on windows. Provide a hook.
|
|
#define EXPLICIT_SYMBOL(SYM) \
|
|
extern "C" { extern void *SYM; }
|
|
#define EXPLICIT_SYMBOL2(SYMFROM, SYMTO) EXPLICIT_SYMBOL(SYMTO)
|
|
|
|
#ifdef _M_IX86
|
|
// Win32 on x86 implements certain single-precision math functions as macros.
|
|
// These functions are not exported by the DLL, but will still be needed
|
|
// for symbol-resolution by the JIT loader. Therefore, this Support libray
|
|
// provides helper functions with the same implementation.
|
|
|
|
#define INLINE_DEF_SYMBOL1(TYP, SYM) \
|
|
extern "C" TYP inline_##SYM(TYP _X) { return SYM(_X); }
|
|
#define INLINE_DEF_SYMBOL2(TYP, SYM) \
|
|
extern "C" TYP inline_##SYM(TYP _X, TYP _Y) { return SYM(_X, _Y); }
|
|
#endif
|
|
|
|
#include "explicit_symbols.inc"
|
|
|
|
#undef EXPLICIT_SYMBOL
|
|
#undef EXPLICIT_SYMBOL2
|
|
#undef INLINE_DEF_SYMBOL1
|
|
#undef INLINE_DEF_SYMBOL2
|
|
|
|
void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {
|
|
SmartScopedLock<true> Lock(*SymbolsMutex);
|
|
|
|
// First check symbols added via AddSymbol().
|
|
if (ExplicitSymbols.isConstructed()) {
|
|
StringMap<void *>::iterator i = ExplicitSymbols->find(symbolName);
|
|
|
|
if (i != ExplicitSymbols->end())
|
|
return i->second;
|
|
}
|
|
|
|
// Now search the libraries.
|
|
if (OpenedHandles) {
|
|
for (DenseSet<HMODULE>::iterator I = OpenedHandles->begin(),
|
|
E = OpenedHandles->end(); I != E; ++I) {
|
|
FARPROC ptr = GetProcAddress((HMODULE)*I, symbolName);
|
|
if (ptr) {
|
|
return (void *)(intptr_t)ptr;
|
|
}
|
|
}
|
|
}
|
|
|
|
#define EXPLICIT_SYMBOL(SYM) \
|
|
if (!strcmp(symbolName, #SYM)) \
|
|
return (void *)&SYM;
|
|
#define EXPLICIT_SYMBOL2(SYMFROM, SYMTO) \
|
|
if (!strcmp(symbolName, #SYMFROM)) \
|
|
return (void *)&SYMTO;
|
|
|
|
#ifdef _M_IX86
|
|
#define INLINE_DEF_SYMBOL1(TYP, SYM) \
|
|
if (!strcmp(symbolName, #SYM)) \
|
|
return (void *)&inline_##SYM;
|
|
#define INLINE_DEF_SYMBOL2(TYP, SYM) INLINE_DEF_SYMBOL1(TYP, SYM)
|
|
#endif
|
|
|
|
{
|
|
#include "explicit_symbols.inc"
|
|
}
|
|
|
|
#undef EXPLICIT_SYMBOL
|
|
#undef EXPLICIT_SYMBOL2
|
|
#undef INLINE_DEF_SYMBOL1
|
|
#undef INLINE_DEF_SYMBOL2
|
|
|
|
return 0;
|
|
}
|
|
|
|
void *DynamicLibrary::getAddressOfSymbol(const char *symbolName) {
|
|
if (!isValid())
|
|
return NULL;
|
|
if (Data == &OpenedHandles)
|
|
return SearchForAddressOfSymbol(symbolName);
|
|
return (void *)(intptr_t)GetProcAddress((HMODULE)Data, symbolName);
|
|
}
|
|
|
|
}
|