mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
lli/RemoteMemoryManager.cpp: Resurrect __main stuff removed in r192504 to unbreak mingw32.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193472 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0435c5dbec
commit
2d60c09451
@ -204,3 +204,19 @@ uint8_t *RemoteMemoryManager::allocateGlobal(uintptr_t Size, unsigned Alignment)
|
|||||||
void RemoteMemoryManager::deallocateFunctionBody(void *Body) {
|
void RemoteMemoryManager::deallocateFunctionBody(void *Body) {
|
||||||
llvm_unreachable("Unexpected!");
|
llvm_unreachable("Unexpected!");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int jit_noop() {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint64_t RemoteMemoryManager::getSymbolAddress(const std::string &Name) {
|
||||||
|
// We should not invoke parent's ctors/dtors from generated main()!
|
||||||
|
// On Mingw and Cygwin, the symbol __main is resolved to
|
||||||
|
// callee's(eg. tools/lli) one, to invoke wrong duplicated ctors
|
||||||
|
// (and register wrong callee's dtors with atexit(3)).
|
||||||
|
// We expect ExecutionEngine::runStaticConstructorsDestructors()
|
||||||
|
// is called before ExecutionEngine::runFunctionAsMain() is called.
|
||||||
|
if (Name == "__main") return (uintptr_t)&jit_noop;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
@ -78,7 +78,7 @@ public:
|
|||||||
// interface does support this, but clients must provide their own
|
// interface does support this, but clients must provide their own
|
||||||
// mechanism for finding remote symbol addresses. MCJIT will resolve
|
// mechanism for finding remote symbol addresses. MCJIT will resolve
|
||||||
// symbols from Modules it contains.
|
// symbols from Modules it contains.
|
||||||
uint64_t getSymbolAddress(const std::string &Name) { return 0; }
|
uint64_t getSymbolAddress(const std::string &Name);
|
||||||
|
|
||||||
void notifyObjectLoaded(ExecutionEngine *EE, const ObjectImage *Obj);
|
void notifyObjectLoaded(ExecutionEngine *EE, const ObjectImage *Obj);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user