blob: 2e3d2b6665a516e82bcac37492fbceec2539f320 [file] [log] [blame]
Andrew Kaylorced4e8f2013-04-25 21:02:36 +00001//===- MCJITObjectCacheTest.cpp - Unit tests for MCJIT object caching -----===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000010#include "MCJITTestBase.h"
Andrew Kaylorced4e8f2013-04-25 21:02:36 +000011#include "llvm/ADT/SmallVector.h"
12#include "llvm/ADT/StringMap.h"
13#include "llvm/ADT/StringSet.h"
Andrew Kaylorced4e8f2013-04-25 21:02:36 +000014#include "llvm/ExecutionEngine/MCJIT.h"
15#include "llvm/ExecutionEngine/ObjectCache.h"
16#include "llvm/ExecutionEngine/SectionMemoryManager.h"
Andrew Kaylorced4e8f2013-04-25 21:02:36 +000017#include "gtest/gtest.h"
18
19using namespace llvm;
20
21namespace {
22
23class TestObjectCache : public ObjectCache {
24public:
25 TestObjectCache() : DuplicateInserted(false) { }
26
Rafael Espindola48af1c22014-08-19 18:44:46 +000027 void notifyObjectCompiled(const Module *M, MemoryBufferRef Obj) override {
Andrew Kaylorced4e8f2013-04-25 21:02:36 +000028 // If we've seen this module before, note that.
29 const std::string ModuleID = M->getModuleIdentifier();
30 if (ObjMap.find(ModuleID) != ObjMap.end())
31 DuplicateInserted = true;
32 // Store a copy of the buffer in our map.
33 ObjMap[ModuleID] = copyBuffer(Obj);
34 }
35
Alexander Kornienkof817c1c2015-04-11 02:11:45 +000036 std::unique_ptr<MemoryBuffer> getObject(const Module *M) override {
Andrew Kaylorb595f532013-06-28 21:40:16 +000037 const MemoryBuffer* BufferFound = getObjectInternal(M);
38 ModulesLookedUp.insert(M->getModuleIdentifier());
39 if (!BufferFound)
Craig Topper66f09ad2014-06-08 22:29:17 +000040 return nullptr;
Andrew Kaylorb595f532013-06-28 21:40:16 +000041 // Our test cache wants to maintain ownership of its object buffers
42 // so we make a copy here for the execution engine.
Rafael Espindola3560ff22014-08-27 20:03:13 +000043 return MemoryBuffer::getMemBufferCopy(BufferFound->getBuffer());
Andrew Kaylorb595f532013-06-28 21:40:16 +000044 }
45
Andrew Kaylorced4e8f2013-04-25 21:02:36 +000046 // Test-harness-specific functions
47 bool wereDuplicatesInserted() { return DuplicateInserted; }
48
49 bool wasModuleLookedUp(const Module *M) {
50 return ModulesLookedUp.find(M->getModuleIdentifier())
51 != ModulesLookedUp.end();
52 }
53
54 const MemoryBuffer* getObjectInternal(const Module* M) {
55 // Look for the module in our map.
56 const std::string ModuleID = M->getModuleIdentifier();
57 StringMap<const MemoryBuffer *>::iterator it = ObjMap.find(ModuleID);
58 if (it == ObjMap.end())
Craig Topper66f09ad2014-06-08 22:29:17 +000059 return nullptr;
Andrew Kaylorced4e8f2013-04-25 21:02:36 +000060 return it->second;
61 }
62
Andrew Kaylorced4e8f2013-04-25 21:02:36 +000063private:
Rafael Espindola48af1c22014-08-19 18:44:46 +000064 MemoryBuffer *copyBuffer(MemoryBufferRef Buf) {
Andrew Kaylorced4e8f2013-04-25 21:02:36 +000065 // Create a local copy of the buffer.
Rafael Espindola3560ff22014-08-27 20:03:13 +000066 std::unique_ptr<MemoryBuffer> NewBuffer =
67 MemoryBuffer::getMemBufferCopy(Buf.getBuffer());
Rafael Espindolabb415ea2014-08-13 18:59:01 +000068 MemoryBuffer *Ret = NewBuffer.get();
69 AllocatedBuffers.push_back(std::move(NewBuffer));
70 return Ret;
Andrew Kaylorced4e8f2013-04-25 21:02:36 +000071 }
72
73 StringMap<const MemoryBuffer *> ObjMap;
74 StringSet<> ModulesLookedUp;
Rafael Espindolabb415ea2014-08-13 18:59:01 +000075 SmallVector<std::unique_ptr<MemoryBuffer>, 2> AllocatedBuffers;
Andrew Kaylorced4e8f2013-04-25 21:02:36 +000076 bool DuplicateInserted;
77};
78
79class MCJITObjectCacheTest : public testing::Test, public MCJITTestBase {
80protected:
Andrew Kaylorced4e8f2013-04-25 21:02:36 +000081 enum {
82 OriginalRC = 6,
83 ReplacementRC = 7
84 };
85
Alexander Kornienkof817c1c2015-04-11 02:11:45 +000086 void SetUp() override {
Andrew Kaylorced4e8f2013-04-25 21:02:36 +000087 M.reset(createEmptyModule("<main>"));
88 Main = insertMainFunction(M.get(), OriginalRC);
89 }
90
91 void compileAndRun(int ExpectedRC = OriginalRC) {
92 // This function shouldn't be called until after SetUp.
Ahmed Charles56440fd2014-03-06 05:51:42 +000093 ASSERT_TRUE(bool(TheJIT));
Craig Topper66f09ad2014-06-08 22:29:17 +000094 ASSERT_TRUE(nullptr != Main);
Andrew Kaylorced4e8f2013-04-25 21:02:36 +000095
David Tweed2e7efed2013-05-17 10:01:46 +000096 // We may be using a null cache, so ensure compilation is valid.
Andrew Kaylorced4e8f2013-04-25 21:02:36 +000097 TheJIT->finalizeObject();
98 void *vPtr = TheJIT->getPointerToFunction(Main);
99
Craig Topper66f09ad2014-06-08 22:29:17 +0000100 EXPECT_TRUE(nullptr != vPtr)
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000101 << "Unable to get pointer to main() from JIT";
102
Eugene Zelenkoffec81c2015-11-04 22:32:32 +0000103 int (*FuncPtr)() = (int(*)())(intptr_t)vPtr;
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000104 int returnCode = FuncPtr();
105 EXPECT_EQ(returnCode, ExpectedRC);
106 }
107
108 Function *Main;
109};
110
111TEST_F(MCJITObjectCacheTest, SetNullObjectCache) {
112 SKIP_UNSUPPORTED_PLATFORM;
113
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000114 createJIT(std::move(M));
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000115
Craig Topper66f09ad2014-06-08 22:29:17 +0000116 TheJIT->setObjectCache(nullptr);
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000117
118 compileAndRun();
119}
120
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000121TEST_F(MCJITObjectCacheTest, VerifyBasicObjectCaching) {
122 SKIP_UNSUPPORTED_PLATFORM;
123
Ahmed Charles56440fd2014-03-06 05:51:42 +0000124 std::unique_ptr<TestObjectCache> Cache(new TestObjectCache);
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000125
126 // Save a copy of the module pointer before handing it off to MCJIT.
127 const Module * SavedModulePointer = M.get();
128
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000129 createJIT(std::move(M));
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000130
131 TheJIT->setObjectCache(Cache.get());
132
133 // Verify that our object cache does not contain the module yet.
134 const MemoryBuffer *ObjBuffer = Cache->getObjectInternal(SavedModulePointer);
Craig Topper66f09ad2014-06-08 22:29:17 +0000135 EXPECT_EQ(nullptr, ObjBuffer);
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000136
137 compileAndRun();
138
139 // Verify that MCJIT tried to look-up this module in the cache.
140 EXPECT_TRUE(Cache->wasModuleLookedUp(SavedModulePointer));
141
142 // Verify that our object cache now contains the module.
143 ObjBuffer = Cache->getObjectInternal(SavedModulePointer);
Craig Topper66f09ad2014-06-08 22:29:17 +0000144 EXPECT_TRUE(nullptr != ObjBuffer);
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000145
146 // Verify that the cache was only notified once.
147 EXPECT_FALSE(Cache->wereDuplicatesInserted());
148}
149
150TEST_F(MCJITObjectCacheTest, VerifyLoadFromCache) {
151 SKIP_UNSUPPORTED_PLATFORM;
152
Ahmed Charles56440fd2014-03-06 05:51:42 +0000153 std::unique_ptr<TestObjectCache> Cache(new TestObjectCache);
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000154
155 // Compile this module with an MCJIT engine
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000156 createJIT(std::move(M));
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000157 TheJIT->setObjectCache(Cache.get());
158 TheJIT->finalizeObject();
159
160 // Destroy the MCJIT engine we just used
161 TheJIT.reset();
162
163 // Create a new memory manager.
Lang Hames4a5697e2014-12-03 00:51:19 +0000164 MM.reset(new SectionMemoryManager());
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000165
166 // Create a new module and save it. Use a different return code so we can
167 // tell if MCJIT compiled this module or used the cache.
168 M.reset(createEmptyModule("<main>"));
169 Main = insertMainFunction(M.get(), ReplacementRC);
170 const Module * SecondModulePointer = M.get();
171
172 // Create a new MCJIT instance to load this module then execute it.
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000173 createJIT(std::move(M));
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000174 TheJIT->setObjectCache(Cache.get());
175 compileAndRun();
176
177 // Verify that MCJIT tried to look-up this module in the cache.
178 EXPECT_TRUE(Cache->wasModuleLookedUp(SecondModulePointer));
179
180 // Verify that MCJIT didn't try to cache this again.
181 EXPECT_FALSE(Cache->wereDuplicatesInserted());
182}
183
184TEST_F(MCJITObjectCacheTest, VerifyNonLoadFromCache) {
185 SKIP_UNSUPPORTED_PLATFORM;
186
Ahmed Charles56440fd2014-03-06 05:51:42 +0000187 std::unique_ptr<TestObjectCache> Cache(new TestObjectCache);
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000188
189 // Compile this module with an MCJIT engine
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000190 createJIT(std::move(M));
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000191 TheJIT->setObjectCache(Cache.get());
192 TheJIT->finalizeObject();
193
194 // Destroy the MCJIT engine we just used
195 TheJIT.reset();
196
197 // Create a new memory manager.
Lang Hames4a5697e2014-12-03 00:51:19 +0000198 MM.reset(new SectionMemoryManager());
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000199
200 // Create a new module and save it. Use a different return code so we can
201 // tell if MCJIT compiled this module or used the cache. Note that we use
202 // a new module name here so the module shouldn't be found in the cache.
203 M.reset(createEmptyModule("<not-main>"));
204 Main = insertMainFunction(M.get(), ReplacementRC);
205 const Module * SecondModulePointer = M.get();
206
207 // Create a new MCJIT instance to load this module then execute it.
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000208 createJIT(std::move(M));
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000209 TheJIT->setObjectCache(Cache.get());
210
211 // Verify that our object cache does not contain the module yet.
212 const MemoryBuffer *ObjBuffer = Cache->getObjectInternal(SecondModulePointer);
Craig Topper66f09ad2014-06-08 22:29:17 +0000213 EXPECT_EQ(nullptr, ObjBuffer);
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000214
215 // Run the function and look for the replacement return code.
216 compileAndRun(ReplacementRC);
217
218 // Verify that MCJIT tried to look-up this module in the cache.
219 EXPECT_TRUE(Cache->wasModuleLookedUp(SecondModulePointer));
220
221 // Verify that our object cache now contains the module.
222 ObjBuffer = Cache->getObjectInternal(SecondModulePointer);
Craig Topper66f09ad2014-06-08 22:29:17 +0000223 EXPECT_TRUE(nullptr != ObjBuffer);
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000224
225 // Verify that MCJIT didn't try to cache this again.
226 EXPECT_FALSE(Cache->wereDuplicatesInserted());
227}
228
Eugene Zelenkoffec81c2015-11-04 22:32:32 +0000229} // end anonymous namespace