summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2012-11-18 06:16:32 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2012-11-18 06:16:32 +0000
commit34280412bb761f2410ec8bd3a068b2b51f9ea6d2 (patch)
tree568521569c5b20b35810a5820132bea8cc778281
parentfb3690ea58abe4f52e71036cefe03b02704c873b (diff)
downloadbcm5719-llvm-34280412bb761f2410ec8bd3a068b2b51f9ea6d2.tar.gz
bcm5719-llvm-34280412bb761f2410ec8bd3a068b2b51f9ea6d2.zip
MCJIT: [cygming] Give noop to __main also in RecordingMemoryManger. It is emitted in @main().
XFAIL(s) can be removed. llvm-svn: 168282
-rw-r--r--llvm/test/ExecutionEngine/MCJIT/simpletest-remote.ll2
-rw-r--r--llvm/test/ExecutionEngine/MCJIT/stubs-remote.ll2
-rw-r--r--llvm/test/ExecutionEngine/MCJIT/test-common-symbols-remote.ll2
-rw-r--r--llvm/test/ExecutionEngine/MCJIT/test-data-align-remote.ll2
-rw-r--r--llvm/test/ExecutionEngine/MCJIT/test-fp-no-external-funcs-remote.ll2
-rw-r--r--llvm/test/ExecutionEngine/MCJIT/test-global-init-nonzero-remote.ll2
-rw-r--r--llvm/test/ExecutionEngine/MCJIT/test-ptr-reloc-remote.ll2
-rw-r--r--llvm/tools/lli/RecordingMemoryManager.cpp13
8 files changed, 20 insertions, 7 deletions
diff --git a/llvm/test/ExecutionEngine/MCJIT/simpletest-remote.ll b/llvm/test/ExecutionEngine/MCJIT/simpletest-remote.ll
index 1c0da9f1b5d..0d0459cd149 100644
--- a/llvm/test/ExecutionEngine/MCJIT/simpletest-remote.ll
+++ b/llvm/test/ExecutionEngine/MCJIT/simpletest-remote.ll
@@ -1,5 +1,5 @@
; RUN: %lli -mtriple=%mcjit_triple -use-mcjit -remote-mcjit %s > /dev/null
-; XFAIL: arm, mingw32
+; XFAIL: arm
define i32 @bar() {
ret i32 0
diff --git a/llvm/test/ExecutionEngine/MCJIT/stubs-remote.ll b/llvm/test/ExecutionEngine/MCJIT/stubs-remote.ll
index 141c5af8f02..dc4cda4a59f 100644
--- a/llvm/test/ExecutionEngine/MCJIT/stubs-remote.ll
+++ b/llvm/test/ExecutionEngine/MCJIT/stubs-remote.ll
@@ -1,5 +1,5 @@
; RUN: %lli -mtriple=%mcjit_triple -use-mcjit -remote-mcjit -disable-lazy-compilation=false %s
-; XFAIL: arm, mingw32
+; XFAIL: arm
define i32 @main() nounwind {
entry:
diff --git a/llvm/test/ExecutionEngine/MCJIT/test-common-symbols-remote.ll b/llvm/test/ExecutionEngine/MCJIT/test-common-symbols-remote.ll
index 220eb2d01b9..b269ba182e8 100644
--- a/llvm/test/ExecutionEngine/MCJIT/test-common-symbols-remote.ll
+++ b/llvm/test/ExecutionEngine/MCJIT/test-common-symbols-remote.ll
@@ -1,5 +1,5 @@
; RUN: %lli -mtriple=%mcjit_triple -use-mcjit -remote-mcjit -O0 -disable-lazy-compilation=false %s
-; XFAIL: arm, mingw32, cygwin
+; XFAIL: arm
; The intention of this test is to verify that symbols mapped to COMMON in ELF
; work as expected.
diff --git a/llvm/test/ExecutionEngine/MCJIT/test-data-align-remote.ll b/llvm/test/ExecutionEngine/MCJIT/test-data-align-remote.ll
index 7fcb18f0539..86e7fcdd2ec 100644
--- a/llvm/test/ExecutionEngine/MCJIT/test-data-align-remote.ll
+++ b/llvm/test/ExecutionEngine/MCJIT/test-data-align-remote.ll
@@ -1,5 +1,5 @@
; RUN: %lli -mtriple=%mcjit_triple -use-mcjit -remote-mcjit -O0 %s
-; XFAIL: arm, mingw32
+; XFAIL: arm
; Check that a variable is always aligned as specified.
diff --git a/llvm/test/ExecutionEngine/MCJIT/test-fp-no-external-funcs-remote.ll b/llvm/test/ExecutionEngine/MCJIT/test-fp-no-external-funcs-remote.ll
index eb1e3c5e0ad..ac1999d4c36 100644
--- a/llvm/test/ExecutionEngine/MCJIT/test-fp-no-external-funcs-remote.ll
+++ b/llvm/test/ExecutionEngine/MCJIT/test-fp-no-external-funcs-remote.ll
@@ -1,5 +1,5 @@
; RUN: %lli -mtriple=%mcjit_triple -use-mcjit -remote-mcjit %s > /dev/null
-; XFAIL: arm, mingw32
+; XFAIL: arm
define double @test(double* %DP, double %Arg) {
%D = load double* %DP ; <double> [#uses=1]
diff --git a/llvm/test/ExecutionEngine/MCJIT/test-global-init-nonzero-remote.ll b/llvm/test/ExecutionEngine/MCJIT/test-global-init-nonzero-remote.ll
index 4c69ff7a2c1..65f8af047a2 100644
--- a/llvm/test/ExecutionEngine/MCJIT/test-global-init-nonzero-remote.ll
+++ b/llvm/test/ExecutionEngine/MCJIT/test-global-init-nonzero-remote.ll
@@ -1,5 +1,5 @@
; RUN: %lli -mtriple=%mcjit_triple -use-mcjit -remote-mcjit %s > /dev/null
-; XFAIL: arm, mingw32, cygwin
+; XFAIL: arm
@count = global i32 1, align 4
diff --git a/llvm/test/ExecutionEngine/MCJIT/test-ptr-reloc-remote.ll b/llvm/test/ExecutionEngine/MCJIT/test-ptr-reloc-remote.ll
index 78a8df8f716..83a9b43e399 100644
--- a/llvm/test/ExecutionEngine/MCJIT/test-ptr-reloc-remote.ll
+++ b/llvm/test/ExecutionEngine/MCJIT/test-ptr-reloc-remote.ll
@@ -1,5 +1,5 @@
; RUN: %lli -mtriple=%mcjit_triple -use-mcjit -remote-mcjit -O0 %s
-; XFAIL: arm, mingw32
+; XFAIL: arm
@.str = private unnamed_addr constant [6 x i8] c"data1\00", align 1
@ptr = global i8* getelementptr inbounds ([6 x i8]* @.str, i32 0, i32 0), align 4
diff --git a/llvm/tools/lli/RecordingMemoryManager.cpp b/llvm/tools/lli/RecordingMemoryManager.cpp
index f54f17461e1..75cb9781306 100644
--- a/llvm/tools/lli/RecordingMemoryManager.cpp
+++ b/llvm/tools/lli/RecordingMemoryManager.cpp
@@ -82,7 +82,20 @@ void RecordingMemoryManager::endExceptionTable(const Function *F, uint8_t *Table
void RecordingMemoryManager::deallocateExceptionTable(void *ET) {
llvm_unreachable("Unexpected!");
}
+
+static int jit_noop() {
+ return 0;
+}
+
void *RecordingMemoryManager::getPointerToNamedFunction(const std::string &Name,
bool AbortOnFailure) {
+ // 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 (void*)(intptr_t)&jit_noop;
+
return NULL;
}
OpenPOWER on IntegriCloud