From d12ccbd3434135bf4dce0d3bd9d0ac1943b20183 Mon Sep 17 00:00:00 2001 From: Juergen Ributzka Date: Tue, 19 Nov 2013 00:57:56 +0000 Subject: [weak vtables] Remove a bunch of weak vtables This patch removes most of the trivial cases of weak vtables by pinning them to a single object file. The memory leaks in this version have been fixed. Thanks Alexey for pointing them out. Differential Revision: http://llvm-reviews.chandlerc.com/D2068 Reviewed by Andy llvm-svn: 195064 --- .../unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp | 19 +++++++++++-------- .../ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp | 8 +++++++- llvm/unittests/ExecutionEngine/MCJIT/MCJITTest.cpp | 9 ++++++--- 3 files changed, 24 insertions(+), 12 deletions(-) (limited to 'llvm/unittests/ExecutionEngine') diff --git a/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp b/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp index e4197ddced6..15c58c480aa 100644 --- a/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp +++ b/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp @@ -83,14 +83,8 @@ protected: UnsupportedOSs.push_back(Triple::Cygwin); } - virtual void SetUp() { - didCallAllocateCodeSection = false; - Module = 0; - Function = 0; - Engine = 0; - Error = 0; - } - + virtual void SetUp(); + virtual void TearDown() { if (Engine) LLVMDisposeExecutionEngine(Engine); @@ -157,6 +151,15 @@ protected: char *Error; }; +// Provide out-of-line definition to prevent weak vtable. +void MCJITCAPITest::SetUp() { + didCallAllocateCodeSection = false; + Module = 0; + Function = 0; + Engine = 0; + Error = 0; +} + TEST_F(MCJITCAPITest, simple_function) { SKIP_UNSUPPORTED_PLATFORM; diff --git a/llvm/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp b/llvm/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp index 4d650e8dbaf..cea6274656b 100644 --- a/llvm/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp +++ b/llvm/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp @@ -18,7 +18,13 @@ using namespace llvm; -class MCJITMultipleModuleTest : public testing::Test, public MCJITTestBase {}; +class MCJITMultipleModuleTest : public testing::Test, public MCJITTestBase { +public: + virtual ~MCJITMultipleModuleTest(); +}; + +// Provide out-of-line definition to prevent weak vtable. +MCJITMultipleModuleTest::~MCJITMultipleModuleTest() {} namespace { diff --git a/llvm/unittests/ExecutionEngine/MCJIT/MCJITTest.cpp b/llvm/unittests/ExecutionEngine/MCJIT/MCJITTest.cpp index 7ccd2546c06..9786befd720 100644 --- a/llvm/unittests/ExecutionEngine/MCJIT/MCJITTest.cpp +++ b/llvm/unittests/ExecutionEngine/MCJIT/MCJITTest.cpp @@ -21,11 +21,14 @@ using namespace llvm; class MCJITTest : public testing::Test, public MCJITTestBase { protected: - virtual void SetUp() { - M.reset(createEmptyModule("
")); - } + virtual void SetUp(); }; +// Provide out-of-line definition to prevent weak vtable. +void MCJITTest::SetUp() { + M.reset(createEmptyModule("
")); +} + namespace { // FIXME: Ensure creating an execution engine does not crash when constructed -- cgit v1.2.3